tvtime-1.0.11/0000775000175000017500000000000013026503655010112 500000000000000tvtime-1.0.11/depcomp0000755000175000017500000005601613026503063011406 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2013-05-30.07; # UTC # Copyright (C) 1999-2014 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Avoid interferences from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The second -e expression handles DOS-style file names with drive # letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E \ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: tvtime-1.0.11/INSTALL0000664000175000017500000000513412354244126011064 00000000000000Copyright (C) 2003-2005 Billy Biggs. This file is free documentation; Billy Biggs gives unlimited permission to copy, distribute and modify it. Installing tvtime ================= This is the source code distribution of tvtime. tvtime has been packaged for many popular Linux distributions. Please check our download page on the tvtime website at http://tvtime.net/ to see if there is a pre-packaged version of tvtime that you can use. Our packaged versions have all been approved for quality by the tvtime authors. Compiling tvtime ================ tvtime includes a configure script to enable you to customize your installation. By default, running configure without options will have tvtime install itself and all required files under /usr/local. To instead use paths according to the Filesystem Hierarchy Standard, we recommend you run configure with these options: ~/tvtime-1.0$ ./configure --prefix=/usr --sysconfdir=/etc This will have tvtime use /usr/bin for its executables, /usr/share/tvtime for its data files, /etc/tvtime for its global configuration files, and /usr/share/... for icons and menu entries. Next, compile tvtime using make. ~/tvtime-1.0$ make And then, install it as root. ~/tvtime-1.0$ su /home/user/tvtime-1.0# make install Compiling with optimized CFLAGS =============================== tvtime includes many hand-optimized assembly functions for different CPU extensions, such as MMX and SSE. We have also written a timingtest application, and tested with different CPU flags. The CPU flags we use in tvtime have been tested to perform best in our timing tests using gcc3 and on the P3 and P4 chips, as well as some AMD chips. Because of this, we strongly discourage users from using their own "optimized" CFLAGS. Using -march=pentium4 and options for using SSE and MMX by the compiler has been shown to perform no faster and often slower with tvtime. If you feel that there are some compiler flags which could improve, we would rather you show a test and example and post to our bug tracker than silently use your own CFLAGS, so that we can test ourselves. Please comment further on this on this bug report: http://sourceforge.net/tracker/index.php?func=detail&aid=807035&group_id=64301&atid=506987 Packaging tvtime ================ We are always interested in hearing about new tvtime packages to put on our download page, and are more than willing to look over packagings to make sure that nothing is missing our possibly misconfigured. If you have made a package of tvtime, please contact me by sending an email to vektor@dumbterm.net to let me know. tvtime-1.0.11/plugins/0000775000175000017500000000000013026503655011573 500000000000000tvtime-1.0.11/plugins/dscalerapi.h0000664000175000017500000000637412354244126014003 00000000000000/////////////////////////////////////////////////////////////////////////////// // $Id$ /////////////////////////////////////////////////////////////////////////////// // Copyright (c) 2000 John Adcock. All rights reserved. ///////////////////////////////////////////////////////////////////////////// // This header file is free software; you can redistribute it and/or modify it // under the terms of the GNU Library General Public License as published by // the Free Software Foundation; either version 2 of the License, or (at your // option) any later version. // // This software is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Library General Public License for more details /////////////////////////////////////////////////////////////////////////////// /** * This file is an adaptation of the DS_ApiCommon.h file from DScaler. I have * removed many of the features which are not required by the tvtime port at * the current time, and just store here the structures needed by the * deinterlacers. We may try to converge back with DScaler or KDETV's * adaptation in the future. -Billy Biggs */ #ifndef __DS_APICOMON_H__ #define __DS_APICOMON_H__ 1 #include /** Deinterlace functions return true if the overlay is ready to be displayed. */ typedef void (MEMCPY_FUNC)(void* pOutput, const void* pInput, size_t nSize); #define MAX_PICTURE_HISTORY 10 #define PICTURE_PROGRESSIVE 0 #define PICTURE_INTERLACED_ODD 1 #define PICTURE_INTERLACED_EVEN 2 #define PICTURE_INTERLACED_MASK (PICTURE_INTERLACED_ODD | PICTURE_INTERLACED_EVEN) /** Structure containing a single field or frame from the source. This may be modified */ typedef struct { // pointer to the start of data for this picture unsigned char* pData; // see PICTURE_ flags unsigned int Flags; } TPicture; #define DEINTERLACE_INFO_CURRENT_VERSION 400 /** Structure used to transfer all the information used by plugins around in one chunk */ typedef struct { /** The most recent pictures PictureHistory[0] is always the most recent. Pointers are NULL if the picture in question isn't valid, e.g. because the program just started or a picture was skipped. */ TPicture* PictureHistory[MAX_PICTURE_HISTORY]; /// Current overlay buffer pointer. unsigned char *Overlay; /// Overlay pitch (number of bytes between scanlines). unsigned int OverlayPitch; /** Number of bytes of actual data in each scanline. May be less than OverlayPitch since the overlay's scanlines might have alignment requirements. Generally equal to FrameWidth * 2. */ unsigned int LineLength; /// Number of pixels in each scanline. int FrameWidth; /// Number of scanlines per frame. int FrameHeight; /** Number of scanlines per field. FrameHeight / 2, mostly for cleanliness so we don't have to keep dividing FrameHeight by 2. */ int FieldHeight; /// Function pointer to optimized memcpy function MEMCPY_FUNC* pMemcpy; /** distance between lines in image need not match the pixel width */ unsigned int InputPitch; } TDeinterlaceInfo; #endif tvtime-1.0.11/plugins/scalerbob.c0000664000175000017500000000301712354244126013612 00000000000000/** * Dummy plugin for 'scalerbob' support. * * Copyright (C) 2002 Billy Biggs . * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include #include "speedy.h" #include "deinterlace.h" static deinterlace_method_t scalerbobmethod = { "Television: Half Resolution", "TelevisionHalf", 1, 0, 1, 1, 0, 0, 0, 0, { "Expands each field independently without", "blurring or copying in time. Use this if you", "want TV-quality with low CPU, and you have", "configured your monitor to run at the refresh", "rate of the video signal.", "", "Half resolution is poor quality but low CPU", "requirements for watching in a small window.", "", "" } }; deinterlace_method_t *scalerbob_get_method( void ) { return &scalerbobmethod; } tvtime-1.0.11/plugins/weavebff.c0000664000175000017500000000436612354244126013453 00000000000000/** * Weave frames, bottom-field-first. * Copyright (C) 2003 Billy Biggs . * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include #if defined (__SVR4) && defined (__sun) # include #else # include #endif #include "copyfunctions.h" #include "deinterlace.h" static void deinterlace_scanline_weave( uint8_t *output, deinterlace_scanline_data_t *data, int width ) { blit_packed422_scanline( output, data->m1, width ); } static void copy_scanline( uint8_t *output, deinterlace_scanline_data_t *data, int width ) { if( data->bottom_field ) { blit_packed422_scanline( output, data->m2, width ); } else { blit_packed422_scanline( output, data->m0, width ); } } static deinterlace_method_t weavemethod = { "Progressive: Bottom Field First", "ProgressiveBFF", 3, 0, 0, 1, deinterlace_scanline_weave, copy_scanline, 0, 0, { "Constructs frames from pairs of fields. Use", "this if you are watching a film broadcast or", "DVD in a PAL area, or if you are using a", "video game console system which sends a", "progressive signal.", "", "Depending on the content, it may be top- or", "bottom-field first. Until we have full", "detection in tvtime, this must be determined", "experimentally." } }; deinterlace_method_t *weavebff_get_method( void ) { return &weavemethod; } tvtime-1.0.11/plugins/weavetff.c0000664000175000017500000000436112354244126013470 00000000000000/** * Weave frames, top-field-first. * Copyright (C) 2003 Billy Biggs . * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include #if defined (__SVR4) && defined (__sun) # include #else # include #endif #include "copyfunctions.h" #include "deinterlace.h" static void deinterlace_scanline_weave( uint8_t *output, deinterlace_scanline_data_t *data, int width ) { blit_packed422_scanline( output, data->m1, width ); } static void copy_scanline( uint8_t *output, deinterlace_scanline_data_t *data, int width ) { if( data->bottom_field ) { blit_packed422_scanline( output, data->m0, width ); } else { blit_packed422_scanline( output, data->m2, width ); } } static deinterlace_method_t weavemethod = { "Progressive: Top Field First", "ProgressiveTFF", 3, 0, 0, 1, deinterlace_scanline_weave, copy_scanline, 0, 0, { "Constructs frames from pairs of fields. Use", "this if you are watching a film broadcast or", "DVD in a PAL area, or if you are using a", "video game console system which sends a", "progressive signal.", "", "Depending on the content, it may be top- or", "bottom-field first. Until we have full", "detection in tvtime, this must be determined", "experimentally." } }; deinterlace_method_t *weavetff_get_method( void ) { return &weavemethod; } tvtime-1.0.11/plugins/tomsmocomp/0000775000175000017500000000000013026503655013770 500000000000000tvtime-1.0.11/plugins/tomsmocomp/SearchLoopEdgeA.inc0000664000175000017500000000126612663345553017344 00000000000000// -*- c++ -*- // Searches 2 pixel to the left and right, in both the old // and new fields, but takes averages. These are even // pixel addresses. Chroma match will be used. (YUY2) MERGE4PIXavg("-4(%%" XDI ")", "4(%%" XSI ", %%" XCX ", 2)") // up left, down right MERGE4PIXavg("4(%%" XDI ")", "-4(%%" XSI ", %%" XCX ", 2)") // up right, down left MERGE4PIXavg("-4(%%" XDI ", %%" XCX ")", "4(%%" XSI ", %%" XCX ")") // left, right MERGE4PIXavg("4(%%" XDI ", %%" XCX ")", "-4(%%" XSI ", %%" XCX ")") // right, left MERGE4PIXavg("-4(%%" XDI ", %%" XCX ", 2)", "4(%%" XSI ")") // down left, up right MERGE4PIXavg("4(%%" XDI ", %%" XCX ", 2)", "-4(%%" XSI ")") // down right, up left tvtime-1.0.11/plugins/tomsmocomp/TomsMoCompAll.inc0000664000175000017500000001123012354244126017064 00000000000000// -*- c++ -*- ///////////////////////////////////////////////////////////////////////////// // Copyright (c) 2002 Tom Barry All rights reserved. ///////////////////////////////////////////////////////////////////////////// // // This file is subject to the terms of the GNU General Public License as // published by the Free Software Foundation. A copy of this license is // included with this software distribution in the file COPYING. If you // do not have a copy, you may obtain a copy by writing to the Free // Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. // // This software is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details // // Also, this program is "Philanthropy-Ware". That is, if you like it and // feel the need to reward or inspire the author then please feel free (but // not obligated) to consider joining or donating to the Electronic Frontier // Foundation. This will help keep cyber space free of barbed wire and bullsh*t. // See www.eff.org for details ///////////////////////////////////////////////////////////////////////////// #ifndef TopFirst #define TopFirst IsOdd #endif #ifdef SEFUNC #undef SEFUNC #endif #if defined(IS_SSE) #define SEFUNC(x) Search_Effort_SSE_##x() #elif defined(IS_3DNOW) #define SEFUNC(x) Search_Effort_3DNOW_##x() #else #define SEFUNC(x) Search_Effort_MMX_##x() #endif void FUNCT_NAME(TDeinterlaceInfo* pInfo) { pMyMemcpy = pInfo->pMemcpy; src_pitch = pInfo->InputPitch; dst_pitch = pInfo->OverlayPitch; rowsize = pInfo->LineLength; FldHeight = pInfo->FieldHeight; pCopySrc = pInfo->PictureHistory[1]->pData; pCopySrcP = pInfo->PictureHistory[3]->pData; pWeaveSrc = pInfo->PictureHistory[0]->pData; pWeaveSrcP = pInfo->PictureHistory[2]->pData; IsOdd = pInfo->PictureHistory[0]->Flags & PICTURE_INTERLACED_ODD; #ifdef IS_SSE2 // SSE2 support temporarily deleted #endif if(IsOdd) { // if we have an odd field we copy an even field and weave an odd field pCopyDest = pInfo->Overlay; pWeaveDest = pInfo->Overlay + dst_pitch; } else { // if we have an ever field we copy an odd field and weave an even field pCopyDest = pInfo->Overlay + dst_pitch; pWeaveDest = pInfo->Overlay; } // copy 1st and last weave lines Fieldcopy(pWeaveDest, pCopySrc, rowsize, 1, dst_pitch*2, src_pitch); Fieldcopy(pWeaveDest+(FldHeight-1)*dst_pitch*2, pCopySrc+(FldHeight-1)*src_pitch, rowsize, 1, dst_pitch*2, src_pitch); #ifdef USE_VERTICAL_FILTER // Vertical Filter currently not implemented for DScaler !! // copy 1st and last lines the copy field Fieldcopy(pCopyDest, pCopySrc, rowsize, 1, dst_pitch*2, src_pitch); Fieldcopy(pCopyDest+(FldHeight-1)*dst_pitch*2, pCopySrc+(FldHeight-1)*src_pitch, rowsize, 1, dst_pitch*2, src_pitch); #else // copy all of the copy field Fieldcopy(pCopyDest, pCopySrc, rowsize, FldHeight, dst_pitch*2, src_pitch); #endif // then go fill in the hard part, being variously lazy depending upon // SearchEffort if(UseStrangeBob == false) { if (SearchEffort == 0) { SEFUNC(0); } else if (SearchEffort <= 1) { SEFUNC(1); } /* else if (SearchEffort <= 2) { SEFUNC(2); } */ else if (SearchEffort <= 3) { SEFUNC(3); } else if (SearchEffort <= 5) { SEFUNC(5); } else if (SearchEffort <= 9) { SEFUNC(9); } else if (SearchEffort <= 11) { SEFUNC(11); } else if (SearchEffort <= 13) { SEFUNC(13); } else if (SearchEffort <= 15) { SEFUNC(15); } else if (SearchEffort <= 19) { SEFUNC(19); } else if (SearchEffort <= 21) { SEFUNC(21); } else { SEFUNC(Max); } } else { if (SearchEffort == 0) { SEFUNC(0_SB); } else if (SearchEffort <= 1) { SEFUNC(1_SB); } /* else if (SearchEffort <= 2) { SEFUNC(2_SB); } */ else if (SearchEffort <= 3) { SEFUNC(3_SB); } else if (SearchEffort <= 5) { SEFUNC(5_SB); } else if (SearchEffort <= 9) { SEFUNC(9_SB); } else if (SearchEffort <= 11) { SEFUNC(11_SB); } else if (SearchEffort <= 13) { SEFUNC(13_SB); } else if (SearchEffort <= 15) { SEFUNC(15_SB); } else if (SearchEffort <= 19) { SEFUNC(19_SB); } else if (SearchEffort <= 21) { SEFUNC(21_SB); } else { SEFUNC(Max_SB); } } #ifdef ARCH_386 __asm__ __volatile__("emms"); #endif } #include "TomsMoCompAll2.inc" #define USE_STRANGE_BOB #include "TomsMoCompAll2.inc" #undef USE_STRANGE_BOB tvtime-1.0.11/plugins/tomsmocomp/SearchLoopVA.inc0000664000175000017500000000046212663345553016702 00000000000000// -*- c++ -*- // Searches the center vertical line above center and below, in both the old // and new fields, but takes averages. These are even pixel addresses. MERGE4PIXavg("(%%" XDI ", %%" XCX ", 2)", "(%%" XSI ")") // down, up MERGE4PIXavg("(%%" XDI ")", "(%%" XSI ", %%" XCX ", 2)") // up, down tvtime-1.0.11/plugins/tomsmocomp/SearchLoopVAH.inc0000664000175000017500000000063412663345553017013 00000000000000// -*- c++ -*- // Searches the center vertical line above center and below, in both the old // and new fields, but takes averages. These are even pixel addresses. MERGE4PIXavgH("(%%" XDI ", %%" XCX ", 2)", "(%%" XDI ", %%" XCX ")", "(%%" XSI ", %%" XCX ")", "(%%" XSI ")") // down, up MERGE4PIXavgH("(%%" XDI ")", "(%%" XDI ", %%" XCX ")", "(%%" XSI ", %%" XCX ")", "(%%" XSI ", %%" XCX ", 2)") // up, down tvtime-1.0.11/plugins/tomsmocomp/TomsMoCompAll2.inc0000664000175000017500000001061612354244126017155 00000000000000// -*- c++ -*- #ifdef SEARCH_EFFORT_FUNC #undef SEARCH_EFFORT_FUNC #endif #ifdef USE_STRANGE_BOB #define SEARCH_EFFORT_FUNC(n) SEFUNC(n##_SB) #else #define SEARCH_EFFORT_FUNC(n) SEFUNC(n) #endif int SEARCH_EFFORT_FUNC(0) // we don't try at all ;-) { //see Search_Effort_Max() for comments #define SKIP_SEARCH #include "SearchLoopTop.inc" #include "SearchLoopBottom.inc" #undef SKIP_SEARCH } int SEARCH_EFFORT_FUNC(1) { //see Search_Effort_Max() for comments #include "SearchLoopTop.inc" RESET_CHROMA // pretend chroma diffs was 255 each #include "SearchLoop0A.inc" #include "SearchLoopBottom.inc" } int SEARCH_EFFORT_FUNC(3) { //see Search_Effort_Max() for comments #include "SearchLoopTop.inc" #include "SearchLoopOddA2.inc" RESET_CHROMA // pretend chroma diffs was 255 each #include "SearchLoop0A.inc" #include "SearchLoopBottom.inc" } int SEARCH_EFFORT_FUNC(5) { //see Search_Effort_Max() for comments #include "SearchLoopTop.inc" #include "SearchLoopOddA2.inc" #include "SearchLoopOddAH2.inc" RESET_CHROMA // pretend chroma diffs was 255 each #include "SearchLoop0A.inc" #include "SearchLoopBottom.inc" } // 3x3 search int SEARCH_EFFORT_FUNC(9) { //see SearchEffortMax() for comments #include "SearchLoopTop.inc" #include "SearchLoopOddA.inc" RESET_CHROMA // pretend chroma diffs was 255 each #include "SearchLoopVA.inc" #include "SearchLoop0A.inc" #include "SearchLoopBottom.inc" } // Search 9 with 2 H-half pels added int SEARCH_EFFORT_FUNC(11) { //see SearchEffortMax() for comments #include "SearchLoopTop.inc" #include "SearchLoopOddA.inc" #include "SearchLoopOddAH2.inc" RESET_CHROMA // pretend chroma diffs was 255 each #include "SearchLoopVA.inc" #include "SearchLoop0A.inc" #include "SearchLoopBottom.inc" } // Search 11 with 2 V-half pels added int SEARCH_EFFORT_FUNC(13) { //see SearchEffortMax() for comments #include "SearchLoopTop.inc" #include "SearchLoopOddA.inc" #include "SearchLoopOddAH2.inc" RESET_CHROMA // pretend chroma diffs was 255 each #include "SearchLoopVAH.inc" #include "SearchLoopVA.inc" #include "SearchLoop0A.inc" #include "SearchLoopBottom.inc" } // 5x3 int SEARCH_EFFORT_FUNC(15) { //see SearchEffortMax() for comments #include "SearchLoopTop.inc" #include "SearchLoopOddA.inc" RESET_CHROMA // pretend chroma diffs was 255 each #include "SearchLoopEdgeA.inc" #include "SearchLoopVA.inc" #include "SearchLoop0A.inc" #include "SearchLoopBottom.inc" } // 5x3 + 4 half pels int SEARCH_EFFORT_FUNC(19) { //see SearchEffortMax() for comments #include "SearchLoopTop.inc" #include "SearchLoopOddA.inc" #include "SearchLoopOddAH2.inc" RESET_CHROMA // pretend chroma diffs was 255 each #include "SearchLoopEdgeA.inc" #include "SearchLoopVAH.inc" #include "SearchLoopVA.inc" #include "SearchLoop0A.inc" #include "SearchLoopBottom.inc" } // Handle one 4x1 block of pixels // Search a 7x3 area, no half pels int SEARCH_EFFORT_FUNC(21) { //see SearchLoopTop.inc for comments #include "SearchLoopTop.inc" // odd addresses -- the pixels at odd address wouldn't generate // good luma values but we will mask those off #include "SearchLoopOddA6.inc" // 4 odd v half pels, 3 to left & right #include "SearchLoopOddA.inc" // 6 odd pels, 1 to left & right RESET_CHROMA // pretend chroma diffs was 255 each // even addresses -- use both luma and chroma from these // search averages of 2 pixels left and right #include "SearchLoopEdgeA.inc" // search vertical line and averages, -1,0,+1 #include "SearchLoopVA.inc" // blend our results and loop #include "SearchLoop0A.inc" #include "SearchLoopBottom.inc" } // Handle one 4x1 block of pixels // Search a 9x3 area, no half pels int SEARCH_EFFORT_FUNC(Max) { //see SearchLoopTop.inc for comments #include "SearchLoopTop.inc" // odd addresses -- the pixels at odd address wouldn't generate // good luma values but we will mask those off #include "SearchLoopOddA6.inc" // 4 odd v half pels, 3 to left & right #include "SearchLoopOddA.inc" // 6 odd pels, 1 to left & right RESET_CHROMA // pretend chroma diffs was 255 each // even addresses -- use both luma and chroma from these // search averages of 4 pixels left and right #include "SearchLoopEdgeA8.inc" // search averages of 2 pixels left and right #include "SearchLoopEdgeA.inc" // search vertical line and averages, -1,0,+1 #include "SearchLoopVA.inc" // blend our results and loop #include "SearchLoop0A.inc" #include "SearchLoopBottom.inc" } #undef SEARCH_EFFORT_FUNC tvtime-1.0.11/plugins/tomsmocomp/tomsmocompmacros.h0000664000175000017500000002525412663345553017502 00000000000000#include #include #include #include #define USE_FOR_DSCALER #define MyMemCopy pMyMemcpy // Define a few macros for CPU dependent instructions. // I suspect I don't really understand how the C macro preprocessor works but // this seems to get the job done. // TRB 7/01 // BEFORE USING THESE YOU MUST SET: // #define SSE_TYPE SSE (or MMX or 3DNOW) // some macros for pavgb instruction // V_PAVGB(mmr1, mmr2, mmr work register, smask) mmr2 may = mmrw if you can trash it #define V_PAVGB_MMX(mmr1, mmr2, mmrw, smask) \ "movq " mmr2 ", " mmrw "\n\t" \ "pand " smask ", " mmrw "\n\t" \ "psrlw $1, " mmrw "\n\t" \ "pand " smask ", " mmr1 "\n\t" \ "psrlw $1, " mmr1 "\n\t" \ "paddusb " mmrw ", " mmr1 "\n\t" #define V_PAVGB_SSE(mmr1, mmr2, mmrw, smask) "pavgb " mmr2 ", " mmr1 "\n\t" #define V_PAVGB_3DNOW(mmr1, mmr2, mmrw, smask) "pavgusb " mmr2 ", " mmr1 "\n\t" #define V_PAVGB(mmr1, mmr2, mmrw, smask) V_PAVGB2(mmr1, mmr2, mmrw, smask, SSE_TYPE) #define V_PAVGB2(mmr1, mmr2, mmrw, smask, ssetyp) V_PAVGB3(mmr1, mmr2, mmrw, smask, ssetyp) #define V_PAVGB3(mmr1, mmr2, mmrw, smask, ssetyp) V_PAVGB_##ssetyp(mmr1, mmr2, mmrw, smask) // some macros for pmaxub instruction #define V_PMAXUB_MMX(mmr1, mmr2) \ "psubusb " mmr2 ", " mmr1 "\n\t" \ "paddusb " mmr2 ", " mmr1 "\n\t" #define V_PMAXUB_SSE(mmr1, mmr2) "pmaxub " mmr2 ", " mmr1 "\n\t" #define V_PMAXUB_3DNOW(mmr1, mmr2) V_PMAXUB_MMX(mmr1, mmr2) // use MMX version #define V_PMAXUB(mmr1, mmr2) V_PMAXUB2(mmr1, mmr2, SSE_TYPE) #define V_PMAXUB2(mmr1, mmr2, ssetyp) V_PMAXUB3(mmr1, mmr2, ssetyp) #define V_PMAXUB3(mmr1, mmr2, ssetyp) V_PMAXUB_##ssetyp(mmr1, mmr2) // some macros for pminub instruction // V_PMINUB(mmr1, mmr2, mmr work register) mmr2 may NOT = mmrw #define V_PMINUB_MMX(mmr1, mmr2, mmrw) \ "pcmpeqb " mmrw ", " mmrw "\n\t" \ "psubusb " mmr2 ", " mmrw "\n\t" \ "paddusb " mmrw ", " mmr1 "\n\t" \ "psubusb " mmrw ", " mmr1 "\n\t" #define V_PMINUB_SSE(mmr1, mmr2, mmrw) "pminub " mmr2 ", " mmr1 "\n\t" #define V_PMINUB_3DNOW(mmr1, mmr2, mmrw) V_PMINUB_MMX(mmr1, mmr2, mmrw) // use MMX version #define V_PMINUB(mmr1, mmr2, mmrw) V_PMINUB2(mmr1, mmr2, mmrw, SSE_TYPE) #define V_PMINUB2(mmr1, mmr2, mmrw, ssetyp) V_PMINUB3(mmr1, mmr2, mmrw, ssetyp) #define V_PMINUB3(mmr1, mmr2, mmrw, ssetyp) V_PMINUB_##ssetyp(mmr1, mmr2, mmrw) // some macros for movntq instruction // V_MOVNTQ(mmr1, mmr2) #define V_MOVNTQ_MMX(mmr1, mmr2) "movq " mmr2 ", " mmr1 "\n\t" #define V_MOVNTQ_3DNOW(mmr1, mmr2) "movq " mmr2 ", " mmr1 "\n\t" #define V_MOVNTQ_SSE(mmr1, mmr2) "movntq " mmr2 ", " mmr1 "\n\t" #define V_MOVNTQ(mmr1, mmr2) V_MOVNTQ2(mmr1, mmr2, SSE_TYPE) #define V_MOVNTQ2(mmr1, mmr2, ssetyp) V_MOVNTQ3(mmr1, mmr2, ssetyp) #define V_MOVNTQ3(mmr1, mmr2, ssetyp) V_MOVNTQ_##ssetyp(mmr1, mmr2) // end of macros #ifdef IS_SSE2 #define MERGE4PIXavg(PADDR1, PADDR2) \ "movdqu " PADDR1 ", %%xmm0\n\t" /* our 4 pixels */ \ "movdqu " PADDR2 ", %%xmm1\n\t" /* our pixel2 value */ \ "movdqa %%xmm0, %%xmm2\n\t" /* another copy of our pixel1 value */ \ "movdqa %%xmm1, %%xmm3\n\t" /* another copy of our pixel1 value */ \ "psubusb %%xmm1, %%xmm2\n\t" \ "psubusb %%xmm0, %%xmm3\n\t" \ "por %%xmm3, %%xmm2\n\t" \ "pavgb %%xmm1, %%xmm0\n\t" /* avg of 2 pixels */ \ "movdqa %%xmm2, %%xmm3\n\t" /* another copy of our our weights */ \ "pxor %%xmm1, %%xmm1\n\t" \ "psubusb %%xmm7, %%xmm3\n\t" /* nonzero where old weights lower, else 0 */ \ "pcmpeqb %%xmm1, %%xmm3\n\t" /* now ff where new better, else 00 */ \ "pcmpeqb %%xmm3, %%xmm1\n\t" /* here ff where old better, else 00 */ \ "pand %%xmm3, %%xmm0\n\t" /* keep only better new pixels */ \ "pand %%xmm3, %%xmm2\n\t" /* and weights */ \ "pand %%xmm1, %%xmm5\n\t" /* keep only better old pixels */ \ "pand %%xmm1, %%xmm7\n\t" \ "por %%xmm0, %%xmm5\n\t" /* and merge new & old vals */ \ "por %%xmm2, %%xmm7\n\t" #define MERGE4PIXavgH(PADDR1A, PADDR1B, PADDR2A, PADDR2B) \ "movdqu " PADDR1A ", %%xmm0\n\t" /* our 4 pixels */ \ "movdqu " PADDR2A ", %%xmm1\n\t" /* our pixel2 value */ \ "movdqu " PADDR1B ", %%xmm2\n\t" /* our 4 pixels */ \ "movdqu " PADDR2B ", %%xmm3\n\t" /* our pixel2 value */ \ "pavgb %%xmm2, %%xmm0\n\t" \ "pavgb %%xmm3, %%xmm1\n\t" \ "movdqa %%xmm0, %%xmm2\n\t" /* another copy of our pixel1 value */ \ "movdqa %%xmm1, %%xmm3\n\t" /* another copy of our pixel1 value */ \ "psubusb %%xmm1, %%xmm2\n\t" \ "psubusb %%xmm0, %%xmm3\n\t" \ "por %%xmm3, %%xmm2\n\t" \ "pavgb %%xmm1, %%xmm0\n\t" /* avg of 2 pixels */ \ "movdqa %%xmm2, %%xmm3\n\t" /* another copy of our our weights */ \ "pxor %%xmm1, %%xmm1\n\t" \ "psubusb %%xmm7, %%xmm3\n\t" /* nonzero where old weights lower, else 0 */ \ "pcmpeqb %%xmm1, %%xmm3\n\t" /* now ff where new better, else 00 */ \ "pcmpeqb %%xmm3, %%xmm1\n\t" /* here ff where old better, else 00 */ \ "pand %%xmm3, %%xmm0\n\t" /* keep only better new pixels */ \ "pand %%xmm3, %%xmm2\n\t" /* and weights */ \ "pand %%xmm1, %%xmm5\n\t" /* keep only better old pixels */ \ "pand %%xmm1, %%xmm7\n\t" \ "por %%xmm0, %%xmm5\n\t" /* and merge new & old vals */ \ "por %%xmm2, %%xmm7\n\t" #define RESET_CHROMA "por " _UVMask ", %%xmm7\n\t" #else // ifdef IS_SSE2 #define MERGE4PIXavg(PADDR1, PADDR2) \ "movq " PADDR1 ", %%mm0\n\t" /* our 4 pixels */ \ "movq " PADDR2 ", %%mm1\n\t" /* our pixel2 value */ \ "movq %%mm0, %%mm2\n\t" /* another copy of our pixel1 value */ \ "movq %%mm1, %%mm3\n\t" /* another copy of our pixel1 value */ \ "psubusb %%mm1, %%mm2\n\t" \ "psubusb %%mm0, %%mm3\n\t" \ "por %%mm3, %%mm2\n\t" \ V_PAVGB ("%%mm0", "%%mm1", "%%mm3", _ShiftMask) /* avg of 2 pixels */ \ "movq %%mm2, %%mm3\n\t" /* another copy of our our weights */ \ "pxor %%mm1, %%mm1\n\t" \ "psubusb %%mm7, %%mm3\n\t" /* nonzero where old weights lower, else 0 */ \ "pcmpeqb %%mm1, %%mm3\n\t" /* now ff where new better, else 00 */ \ "pcmpeqb %%mm3, %%mm1\n\t" /* here ff where old better, else 00 */ \ "pand %%mm3, %%mm0\n\t" /* keep only better new pixels */ \ "pand %%mm3, %%mm2\n\t" /* and weights */ \ "pand %%mm1, %%mm5\n\t" /* keep only better old pixels */ \ "pand %%mm1, %%mm7\n\t" \ "por %%mm0, %%mm5\n\t" /* and merge new & old vals */ \ "por %%mm2, %%mm7\n\t" #define MERGE4PIXavgH(PADDR1A, PADDR1B, PADDR2A, PADDR2B) \ "movq " PADDR1A ", %%mm0\n\t" /* our 4 pixels */ \ "movq " PADDR2A ", %%mm1\n\t" /* our pixel2 value */ \ "movq " PADDR1B ", %%mm2\n\t" /* our 4 pixels */ \ "movq " PADDR2B ", %%mm3\n\t" /* our pixel2 value */ \ V_PAVGB("%%mm0", "%%mm2", "%%mm2", _ShiftMask) \ V_PAVGB("%%mm1", "%%mm3", "%%mm3", _ShiftMask) \ "movq %%mm0, %%mm2\n\t" /* another copy of our pixel1 value */ \ "movq %%mm1, %%mm3\n\t" /* another copy of our pixel1 value */ \ "psubusb %%mm1, %%mm2\n\t" \ "psubusb %%mm0, %%mm3\n\t" \ "por %%mm3, %%mm2\n\t" \ V_PAVGB("%%mm0", "%%mm1", "%%mm3", _ShiftMask) /* avg of 2 pixels */ \ "movq %%mm2, %%mm3\n\t" /* another copy of our our weights */ \ "pxor %%mm1, %%mm1\n\t" \ "psubusb %%mm7, %%mm3\n\t" /* nonzero where old weights lower, else 0 */ \ "pcmpeqb %%mm1, %%mm3\n\t" /* now ff where new better, else 00 */ \ "pcmpeqb %%mm3, %%mm1\n\t" /* here ff where old better, else 00 */ \ "pand %%mm3, %%mm0\n\t" /* keep only better new pixels */ \ "pand %%mm3, %%mm2\n\t" /* and weights */ \ "pand %%mm1, %%mm5\n\t" /* keep only better old pixels */ \ "pand %%mm1, %%mm7\n\t" \ "por %%mm0, %%mm5\n\t" /* and merge new & old vals */ \ "por %%mm2, %%mm7\n\t" #define RESET_CHROMA "por " _UVMask ", %%mm7\n\t" #endif tvtime-1.0.11/plugins/tomsmocomp/SearchLoop0A.inc0000664000175000017500000000103612663345553016632 00000000000000// -*- c++ -*- // Searches just the center pixel, in both the old // and new fields, but takes averages. This is an even // pixel address. Any chroma match will be used. (YUY2) // We best like finding 0 motion so we will bias everything we found previously // up by a little, and adjust later #ifdef IS_SSE2 "paddusb " _ONES ", %%xmm7\n\t" // bias toward no motion #else "paddusb " _ONES ", %%mm7\n\t" // bias toward no motion #endif MERGE4PIXavg("(%%" XDI ", %%" XCX ")", "(%%" XSI ", %%" XCX ")") // center, in old and new tvtime-1.0.11/plugins/tomsmocomp/SearchLoopOddAH.inc0000664000175000017500000000121312663345553017306 00000000000000// Searches 1 pixel to the left and right, in both the old // and new fields, but takes v-half pel averages. These are odd // pixel addresses. Any chroma match will not be used. (YUY2) __asm { MERGE4PIXavgH(" XDI "-2, " XDI "+" XCX "-2, " XSI "+" XCX "+2, " XSI "+2*" XCX "+2) // up left, down right MERGE4PIXavgH(" XDI "+2, " XDI "+" XCX "+2, " XSI "+" XCX "-2, " XSI "+2*" XCX "-2) // up right, down left MERGE4PIXavgH(" XDI "+2*" XCX "-2, " XDI "+" XCX "-2, " XSI "+" XCX "+2, " XSI "+2) // down left, up right MERGE4PIXavgH(" XDI "+2*" XCX "+2, " XDI "+" XCX "+2, " XSI "+" XCX "-2, " XSI "-2) // down right, up left } tvtime-1.0.11/plugins/tomsmocomp/SearchLoopBottom.inc0000664000175000017500000001007312663345553017637 00000000000000// -*- c++ -*- #ifdef IS_SSE2 //sse2 code deleted for now #else // Version for non-SSE2 #ifdef SKIP_SEARCH "movq %%mm6, %%mm0\n\t" // just use the results of our wierd bob #else // JA 9/Dec/2002 // failed experiment // but leave in placeholder for me to play about #ifdef DONT_USE_STRANGE_BOB // Use the best weave if diffs less than 10 as that // means the image is still or moving cleanly // if there is motion we will clip which will catch anything "psubusb " _FOURS ", %%mm7\n\t" // sets bits to zero if weave diff < 4 "pxor %%mm0, %%mm0\n\t" "pcmpeqb %%mm0, %%mm7\n\t" // all ff where weave better, else 00 "pcmpeqb %%mm7, %%mm0\n\t" // all ff where bob better, else 00 "pand %%mm6, %%mm0\n\t" // use bob for these pixel values "pand %%mm5, %%mm7\n\t" // use weave for these "por %%mm7, %%mm0\n\t" // combine both #else // Use the better of bob or weave // pminub mm4, TENS // the most we care about V_PMINUB ("%%mm4", _TENS, "%%mm0") // the most we care about "psubusb %%mm4, %%mm7\n\t" // foregive that much from weave est? "psubusb " _FOURS ", %%mm7\n\t" // bias it a bit toward weave "pxor %%mm0, %%mm0\n\t" "pcmpeqb %%mm0, %%mm7\n\t" // all ff where weave better, else 00 "pcmpeqb %%mm7, %%mm0\n\t" // all ff where bob better, else 00 "pand %%mm6, %%mm0\n\t" // use bob for these pixel values "pand %%mm5, %%mm7\n\t" // use weave for these "por %%mm7, %%mm0\n\t" // combine both #endif // pminub mm0, Max_Vals // but clip to catch the stray error V_PMINUB ("%%mm0", _Max_Vals, "%%mm1") // but clip to catch the stray error // pmaxub mm0, Min_Vals V_PMAXUB ("%%mm0", _Min_Vals) #endif MOVX " " _pDest ", %%" XAX "\n\t" #ifdef USE_VERTICAL_FILTER "movq %%mm0, %%mm1\n\t" // pavgb mm0, qword ptr["XBX"] V_PAVGB ("%%mm0", "(%%" XBX ")", "%%mm2", _ShiftMask) // movntq qword ptr["XAX"+"XDX"], mm0 V_MOVNTQ ("(%" XAX ", %%" XDX ")", "%%mm0") // pavgb mm1, qword ptr["XBX"+"XCX"] V_PAVGB ("%%mm1", "(%%" XBX ", %%" XCX ")", "%%mm2", _ShiftMask) "addq " _dst_pitchw ", %%"XBX // movntq qword ptr["XAX"+"XDX"], mm1 V_MOVNTQ ("(%%" XAX ", %%" XDX ")", "%%mm1") #else // movntq qword ptr["XAX"+"XDX"], mm0 V_MOVNTQ ("(%%" XAX ", %%" XDX ")", "%%mm0") #endif LEAX " 8(%%" XDX "), %%" XDX "\n\t" // bump offset pointer CMPX " " _Last8 ", %%" XDX "\n\t" // done with line? "jb 1b\n\t" // y #endif MOVX " " _oldbx ", %%" XBX "\n\t" : /* no outputs */ : "m"(pBob), "m"(src_pitch2), "m"(ShiftMask), "m"(pDest), "m"(dst_pitchw), "m"(Last8), "m"(pSrc), "m"(pSrcP), "m"(pBobP), "m"(DiffThres), "m"(Min_Vals), "m"(Max_Vals), "m"(FOURS), "m"(TENS), "m"(ONES), "m"(UVMask), "m"(Max_Mov), "m"(YMask), "m"(oldbx) : XAX, XCX, XDX, XSI, XDI, #ifdef ARCH_386 "st", "st(1)", "st(2)", "st(3)", "st(4)", "st(5)", "st(6)", "st(7)", #endif #ifdef __MMX__ "mm0", "mm1", "mm2", "mm3", "mm4", "mm5", "mm6", "mm7", #endif "memory", "cc" ); // adjust for next line pSrc += src_pitch2; pSrcP += src_pitch2; pDest += dst_pitch2; pBob += src_pitch2; pBobP += src_pitch2; } return 0; tvtime-1.0.11/plugins/tomsmocomp/SearchLoopOddA2.inc0000664000175000017500000000052612663345553017266 00000000000000// Searches 1 pixel to the left and right, in both the old // and new fields, but takes averages. These are odd // pixel addresses. Any chroma match will not be used. (YUY2) MERGE4PIXavg("-2(%%" XDI ", %%" XCX ")", "2(%%" XSI ", %%" XCX ")") // left, right MERGE4PIXavg("2(%%" XDI ", %%" XCX ")", "-2(%%" XSI ", %%" XCX ")") // right, left tvtime-1.0.11/plugins/tomsmocomp/StrangeBob.inc0000664000175000017500000002524112663345553016444 00000000000000// -*- c++ -*- // First, get and save our possible Bob values // Assume our pixels are layed out as follows with x the calc'd bob value // and the other pixels are from the current field // // j a b c k current field // x calculated line // m d e f n current field // // we calc the bob value luma value as: // if |j - n| < Thres && |a - m| > Thres // avg(j,n) // end if // if |k - m| < Thres && |c - n| > Thres // avg(k,m) // end if // if |c - d| < Thres && |b - f| > Thres // avg(c,d) // end if // if |a - f| < Thres && |b - d| > Thres // avg(a,f) // end if // if |b - e| < Thres // avg(b,e) // end if // pickup any thing not yet set with avg(b,e) // j, n "pxor %%mm5, %%mm5\n\t" "pxor %%mm6, %%mm6\n\t" "pxor %%mm7, %%mm7\n\t" "movq -2(%%" XBX "), %%mm0\n\t" // value a from top left "movq -4(%%" XBX ", %%" XCX "), %%mm1\n\t" // value m from bottom right "movq %%mm0, %%mm3\n\t" "psubusb %%mm1, %%mm3\n\t" "psubusb %%mm0, %%mm1\n\t" "por %%mm1, %%mm3\n\t" // abs(a,m) "psubusb " _DiffThres ", %%mm3\n\t" // nonzero where abs(a,m) > Thres else 0 "pxor %%mm4, %%mm4\n\t" "pcmpeqb %%mm4, %%mm3\n\t" // now ff where abs(a,m) < Thres, else 00 "pcmpeqb %%mm3, %%mm4\n\t" // here ff where abs(a,m) > Thres, else 00 "movq -4(%%" XBX "), %%mm0\n\t" // value j "movq 4(%%" XBX ", %%" XCX "), %%mm1\n\t" // value n "movq %%mm0, %%mm2\n\t" "pavgb %%mm1, %%mm2\n\t" // avg(j,n) "movq %%mm0, %%mm3\n\t" "psubusb %%mm1, %%mm0\n\t" "psubusb %%mm3, %%mm1\n\t" "por %%mm1, %%mm0\n\t" // abs(j,n) "movq %%mm0, %%mm1\n\t" "psubusb " _DiffThres ", %%mm1\n\t" // nonzero where abs(j,n) > Thres else 0 "pxor %%mm3, %%mm3\n\t" "pcmpeqb %%mm3, %%mm1\n\t" // now ff where abs(j,n) < Thres, else 00 "pand %%mm4, %%mm1\n\t" "pand %%mm1, %%mm2\n\t" "pand %%mm1, %%mm0\n\t" "movq %%mm1, %%mm3\n\t" "pxor %%mm5, %%mm3\n\t" "pand %%mm3, %%mm6\n\t" "pand %%mm3, %%mm7\n\t" "pand %%mm3, %%mm5\n\t" "por %%mm1, %%mm5\n\t" "por %%mm2, %%mm6\n\t" "por %%mm0, %%mm7\n\t" // k & m "movq 2(%%" XBX "), %%mm0\n\t" // value c from top left "movq 4(%%" XBX ", %%" XCX "), %%mm1\n\t" // value n from bottom right "movq %%mm0, %%mm3\n\t" "psubusb %%mm1, %%mm3\n\t" "psubusb %%mm0, %%mm1\n\t" "por %%mm1, %%mm3\n\t" // abs(c,n) "psubusb " _DiffThres ", %%mm3\n\t" // nonzero where abs(c,n) > Thres else 0 "pxor %%mm4, %%mm4\n\t" "pcmpeqb %%mm4, %%mm3\n\t" // now ff where abs(c,n) < Thres, else 00 "pcmpeqb %%mm3, %%mm4\n\t" // here ff where abs(c,n) > Thres, else 00 "movq 4(%%" XBX "), %%mm0\n\t" // value k "movq -4(%%" XBX ", %%" XCX "), %%mm1\n\t" // value m "movq %%mm0, %%mm2\n\t" V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(k,m) "movq %%mm0, %%mm3\n\t" "psubusb %%mm1, %%mm0\n\t" "psubusb %%mm3, %%mm1\n\t" "por %%mm1, %%mm0\n\t" // abs(k,m) "movq %%mm0, %%mm1\n\t" "psubusb " _DiffThres ", %%mm1\n\t" // nonzero where abs(k,m) > Thres else 0 "pxor %%mm3, %%mm3\n\t" "pcmpeqb %%mm3, %%mm1\n\t" // now ff where abs(k,m) < Thres, else 00 "pand %%mm4, %%mm1\n\t" "pand %%mm1, %%mm2\n\t" "pand %%mm1, %%mm0\n\t" "movq %%mm1, %%mm3\n\t" "pxor %%mm5, %%mm3\n\t" "pand %%mm3, %%mm6\n\t" "pand %%mm3, %%mm7\n\t" "pand %%mm3, %%mm5\n\t" "por %%mm1, %%mm5\n\t" "por %%mm2, %%mm6\n\t" "por %%mm0, %%mm7\n\t" // c & d "movq (%%" XBX "), %%mm0\n\t" // value b from top left "movq 2(%%" XBX ", %%" XCX "), %%mm1\n\t" // value f from bottom right "movq %%mm0, %%mm3\n\t" "psubusb %%mm1, %%mm3\n\t" "psubusb %%mm0, %%mm1\n\t" "por %%mm1, %%mm3\n\t" // abs(b,f) "psubusb " _DiffThres ", %%mm3\n\t" // nonzero where abs(b,f) > Thres else 0 "pxor %%mm4, %%mm4\n\t" "pcmpeqb %%mm4, %%mm3\n\t" // now ff where abs(b,f) < Thres, else 00 "pcmpeqb %%mm3, %%mm4\n\t" // here ff where abs(b,f) > Thres, else 00 "movq 2(%%" XBX "), %%mm0\n\t" // value c "movq -2(%%" XBX ", %%" XCX "), %%mm1\n\t" // value d "movq %%mm0, %%mm2\n\t" V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(c,d) "movq %%mm0, %%mm3\n\t" "psubusb %%mm1, %%mm0\n\t" "psubusb %%mm3, %%mm1\n\t" "por %%mm1, %%mm0\n\t" // abs(c,d) "movq %%mm0, %%mm1\n\t" "psubusb " _DiffThres ", %%mm1\n\t" // nonzero where abs(c,d) > Thres else 0 "pxor %%mm3, %%mm3\n\t" "pcmpeqb %%mm3, %%mm1\n\t" // now ff where abs(c,d) < Thres, else 00 "pand %%mm4, %%mm1\n\t" "pand %%mm1, %%mm2\n\t" "pand %%mm1, %%mm0\n\t" "movq %%mm1, %%mm3\n\t" "pxor %%mm5, %%mm3\n\t" "pand %%mm3, %%mm6\n\t" "pand %%mm3, %%mm7\n\t" "pand %%mm3, %%mm5\n\t" "por %%mm1, %%mm5\n\t" "por %%mm2, %%mm6\n\t" "por %%mm0, %%mm7\n\t" // a & f "movq (%%" XBX "), %%mm0\n\t" // value b from top left "movq -2(%%" XBX ", %%" XCX "), %%mm1\n\t" // value d from bottom right "movq %%mm0, %%mm3\n\t" "psubusb %%mm1, %%mm3\n\t" "psubusb %%mm0, %%mm1\n\t" "por %%mm1, %%mm3\n\t" // abs(b,d) "psubusb " _DiffThres ", %%mm3\n\t" // nonzero where abs(b,d) > Thres else 0 "pxor %%mm4, %%mm4\n\t" "pcmpeqb %%mm4, %%mm3\n\t" // now ff where abs(b,d) < Thres, else 00 "pcmpeqb %%mm3, %%mm4\n\t" // here ff where abs(b,d) > Thres, else 00 "movq -2(%%" XBX "), %%mm0\n\t" // value a "movq 2(%%" XBX ", %%" XCX "), %%mm1\n\t" // value f "movq %%mm0, %%mm2\n\t" V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(a,f) "movq %%mm0, %%mm3\n\t" "psubusb %%mm1, %%mm0\n\t" "psubusb %%mm3, %%mm1\n\t" "por %%mm1, %%mm0\n\t" // abs(a,f) "movq %%mm0, %%mm1\n\t" "psubusb " _DiffThres ", %%mm1\n\t" // nonzero where abs(a,f) > Thres else 0 "pxor %%mm3, %%mm3\n\t" "pcmpeqb %%mm3, %%mm1\n\t" // now ff where abs(a,f) < Thres, else 00 "pand %%mm4, %%mm1\n\t" "pand %%mm1, %%mm2\n\t" "pand %%mm1, %%mm0\n\t" "movq %%mm1, %%mm3\n\t" "pxor %%mm5, %%mm3\n\t" "pand %%mm3, %%mm6\n\t" "pand %%mm3, %%mm7\n\t" "pand %%mm3, %%mm5\n\t" "por %%mm1, %%mm5\n\t" "por %%mm2, %%mm6\n\t" "por %%mm0, %%mm7\n\t" "pand " _YMask ", %%mm5\n\t" // mask out chroma from here "pand " _YMask ", %%mm6\n\t" // mask out chroma from here "pand " _YMask ", %%mm7\n\t" // mask out chroma from here // b,e "movq (%%" XBX "), %%mm0\n\t" // value b from top "movq (%%" XBX ", %%" XCX "), %%mm1\n\t" // value e from bottom "movq %%mm0, %%mm2\n\t" V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(b,e) "movq %%mm0, %%mm3\n\t" "psubusb %%mm1, %%mm0\n\t" "psubusb %%mm3, %%mm1\n\t" "por %%mm1, %%mm0\n\t" // abs(b,e) "movq %%mm0, %%mm1\n\t" "psubusb " _DiffThres ", %%mm1\n\t" // nonzero where abs(b,e) > Thres else 0 "pxor %%mm3, %%mm3\n\t" "pcmpeqb %%mm3, %%mm1\n\t" // now ff where abs(b,e) < Thres, else 00 "pand %%mm1, %%mm2\n\t" "pand %%mm1, %%mm0\n\t" "movq %%mm1, %%mm3\n\t" "pxor %%mm5, %%mm3\n\t" "pand %%mm3, %%mm6\n\t" "pand %%mm3, %%mm7\n\t" "pand %%mm3, %%mm5\n\t" "por %%mm1, %%mm5\n\t" "por %%mm2, %%mm6\n\t" "por %%mm0, %%mm7\n\t" // bob in any leftovers "movq (%%" XBX "), %%mm0\n\t" // value b from top "movq (%%" XBX ", %%" XCX "), %%mm1\n\t" // value e from bottom // We will also calc here the max/min values to later limit comb // so the max excursion will not exceed the Max_Comb constant #ifdef SKIP_SEARCH "movq %%mm0, %%mm2\n\t" // pminub %%mm2, %%mm1 V_PMINUB ("%%mm2", "%%mm1", "%%mm4") // pmaxub %%mm6, %%mm2 // clip our current results so far to be above this V_PMAXUB ("%%mm6", "%%mm2") "movq %%mm0, %%mm2\n\t" V_PMAXUB ("%%mm2", "%%mm1") // pminub %%mm6, %%mm2 // clip our current results so far to be below this V_PMINUB ("%%mm6", "%%mm2", "%%mm4") #else "movq %%mm0, %%mm2\n\t" "movq (%%" XAX "), %%mm4\n\t" "psubusb %%mm4, %%mm2\n\t" "psubusb %%mm0, %%mm4\n\t" "por %%mm2, %%mm4\n\t" // abs diff "movq %%mm1, %%mm2\n\t" "movq (%%" XAX ", %%" XCX "), %%mm3\n\t" "psubusb %%mm3, %%mm2\n\t" "psubusb %%mm1, %%mm3\n\t" "por %%mm2, %%mm3\n\t" // abs diff // pmaxub %%mm3, %%mm4 // top or bottom pixel moved most V_PMAXUB ("%%mm3", "%%mm4") // top or bottom pixel moved most "psubusb " _DiffThres ", %%mm3\n\t" // moved more than allowed? or goes to 0? "pxor %%mm4, %%mm4\n\t" "pcmpeqb %%mm4, %%mm3\n\t" // now ff where low motion, else high motion "movq %%mm0, %%mm2\n\t" // pminub %%mm2, %%mm1 V_PMINUB ("%%mm2", "%%mm1", "%%mm4") // pmaxub %%mm6, %%mm2 // clip our current results so far to be above this V_PMAXUB ("%%mm6", "%%mm2") "psubusb %%mm3, %%mm2\n\t" // maybe decrease it to 0000.. if no surround motion "movq %%mm2, " _Min_Vals "\n\t" "movq %%mm0, %%mm2\n\t" V_PMAXUB ("%%mm2", "%%mm1") // pminub %%mm6, %%mm2 // clip our current results so far to be below this V_PMINUB ("%%mm6", "%%mm2", "%%mm4") "paddusb %%mm3, %%mm2\n\t" // maybe increase it to ffffff if no surround motion "movq %%mm2, " _Max_Vals "\n\t" #endif "movq %%mm0, %%mm2\n\t" // pavgb %%mm2, %%mm1 // avg(b,e) V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(b,e) "movq %%mm0, %%mm3\n\t" "psubusb %%mm1, %%mm3\n\t" "psubusb %%mm0, %%mm1\n\t" "por %%mm1, %%mm3\n\t" // abs(b,e) "movq %%mm3, %%mm1\n\t" // keep copy of diffs "pxor %%mm4, %%mm4\n\t" "psubusb %%mm7, %%mm3\n\t" // nonzero where new weights bigger, else 0 "pcmpeqb %%mm4, %%mm3\n\t" // now ff where new better, else 00 "pcmpeqb %%mm0, %%mm0\n\t" "pandn %%mm0, %%mm5\n\t" "por %%mm5, %%mm3\n\t" "pcmpeqb %%mm3, %%mm4\n\t" // here ff where old better, else 00 "pand %%mm3, %%mm1\n\t" "pand %%mm3, %%mm2\n\t" "pand %%mm4, %%mm6\n\t" "pand %%mm4, %%mm7\n\t" "por %%mm2, %%mm6\n\t" // our x2 value "por %%mm1, %%mm7\n\t" // our x2 diffs "movq %%mm7, %%mm4\n\t" // save as bob uncertainty indicator tvtime-1.0.11/plugins/tomsmocomp/SearchLoopTop.inc0000664000175000017500000001425612663345553017144 00000000000000// -*- c++ -*- unsigned char* pDest; const unsigned char* pSrcP; const unsigned char* pSrc; const unsigned char* pBob; const unsigned char* pBobP; int64_t Max_Mov = 0x0404040404040404ull; int64_t DiffThres = 0x0f0f0f0f0f0f0f0full; int64_t YMask = 0x00ff00ff00ff00ffull; // keeps only luma int64_t UVMask = 0xff00ff00ff00ff00ull; // keeps only chroma int64_t TENS = 0x0a0a0a0a0a0a0a0aull; int64_t FOURS = 0x0404040404040404ull; int64_t ONES = 0x0101010101010101ull; int64_t Min_Vals = 0x0000000000000000ull; int64_t Max_Vals = 0x0000000000000000ull; int64_t ShiftMask = 0xfefffefffefffeffull; // long is int32 on ARCH_368, int64 on ARCH_AMD64. Declaring it this way // saves a lot of xor's to delete 64bit garbage. #if defined(DBL_RESIZE) || defined(USE_FOR_DSCALER) long src_pitch2 = src_pitch; // even & odd lines are not longerleaved in DScaler #else long src_pitch2 = 2 * src_pitch; // even & odd lines are longerleaved in Avisynth #endif long dst_pitch2 = 2 * dst_pitch; long y; #ifdef IS_SSE2 long Last8 = (rowsize-16); // ofs to last 16 bytes in row for SSE2 #else long Last8 = (rowsize-8); // ofs to last 8 bytes in row #endif long dst_pitchw = dst_pitch; // local stor so asm can ref pSrc = pWeaveSrc; // polongs 1 weave line above pSrcP = pWeaveSrcP; // " #ifdef DBL_RESIZE #ifdef USE_VERTICAL_FILTER pDest = pWeaveDest + dst_pitch2; #else pDest = pWeaveDest + 3*dst_pitch; #endif #else #ifdef USE_VERTICAL_FILTER pDest = pWeaveDest + dst_pitch; #else pDest = pWeaveDest + dst_pitch2; #endif #endif if (TopFirst) { pBob = pCopySrc + src_pitch2; // remember one weave line just copied previously pBobP = pCopySrcP + src_pitch2; } else { pBob = pCopySrc; pBobP = pCopySrcP; } #ifndef _pBob #define _pBob "%0" #define _src_pitch2 "%1" #define _ShiftMask "%2" #define _pDest "%3" #define _dst_pitchw "%4" #define _Last8 "%5" #define _pSrc "%6" #define _pSrcP "%7" #define _pBobP "%8" #define _DiffThres "%9" #define _Min_Vals "%10" #define _Max_Vals "%11" #define _FOURS "%12" #define _TENS "%13" #define _ONES "%14" #define _UVMask "%15" #define _Max_Mov "%16" #define _YMask "%17" #define _oldbx "%18" #endif long oldbx; for (y=1; y < FldHeight-1; y++) { // pretend it's indented -->> __asm__ __volatile__ ( // Loop general reg usage // // XAX - pBobP, then pDest // XBX - pBob // XCX - src_pitch2 // XDX - current offset // XDI - prev weave pixels, 1 line up // XSI - next weave pixels, 1 line up // Save "XBX" (-fPIC) MOVX " %%" XBX ", " _oldbx "\n\t" #ifdef IS_SSE2 // sse2 code deleted for now #else // simple bob first 8 bytes MOVX " " _pBob ", %%" XBX "\n\t" MOVX " " _src_pitch2 ", %%" XCX "\n\t" #ifdef USE_VERTICAL_FILTER "movq (%%" XBX "), %%mm0\n\t" "movq (%%" XBX ", %%" XCX "), %%mm1\n\t" //, qword ptr["XBX"+"XCX"] "movq %%mm0, %%mm2\n\t" V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // halfway between V_PAVGB ("%%mm0", "%%mm2", "%%mm3", _ShiftMask) // 1/4 way V_PAVGB ("%%mm1", "%%mm2", "%%mm3", _ShiftMask) // 3/4 way MOVX " " _pDest ", %%" XDI "\n\t" MOVX " " _dst_pitchw ", %%" XAX "\n\t" V_MOVNTQ ("(%%" XDI ")", "%%mm0") V_MOVNTQ ("(%%" XDI ", %%" XAX ")", "%%mm1") // qword ptr["XDI"+"XAX"], mm1 // simple bob last 8 bytes MOVX " " _Last8 ", %%" XDX "\n\t" LEAX " (%%" XBX ", %%" XDX "), %%" XSI "\n\t" // ["XBX"+"XDX"] "movq (%%" XSI "), %%mm0\n\t" "movq (%%" XSI ", %%" XCX "), %%mm1\n\t" // qword ptr["XSI"+"XCX"] "movq %%mm0, %%mm2\n\t" V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // halfway between V_PAVGB ("%%mm0", "%%mm2", "%%mm3", _ShiftMask) // 1/4 way V_PAVGB ("%%mm1", "%%mm2", "%%mm3", _ShiftMask) // 3/4 way ADDX " %%" XDX ", %%" XDI "\n\t" // last 8 bytes of dest V_MOVNTQ ("%%" XDI "", "%%mm0") V_MOVNTQ ("(%%" XDI ", %%" XAX ")", "%%mm1") // qword ptr["XDI"+"XAX"], mm1) #else "movq (%%" XBX "), %%mm0\n\t" // pavgb mm0, qword ptr["XBX"+"XCX"] V_PAVGB ("%%mm0", "(%%" XBX ", %%" XCX ")", "%%mm2", _ShiftMask) // qword ptr["XBX"+"XCX"], mm2, ShiftMask) MOVX " " _pDest ", %%" XDI "\n\t" V_MOVNTQ ("(%%" XDI ")", "%%mm0") // simple bob last 8 bytes MOVX " " _Last8 ", %%" XDX "\n\t" LEAX " (%%" XBX ", %%" XDX "), %%" XSI "\n\t" //"XSI", ["XBX"+"XDX"] "movq (%%" XSI "), %%mm0\n\t" // pavgb mm0, qword ptr["XSI"+"XCX"] V_PAVGB ("%%mm0", "(%%" XSI ", %%" XCX ")", "%%mm2", _ShiftMask) // qword ptr["XSI"+"XCX"], mm2, ShiftMask) V_MOVNTQ ("(%%" XDI ", %%" XDX ")", "%%mm0") // qword ptr["XDI"+"XDX"], mm0) #endif // now loop and get the middle qwords MOVX " " _pSrc ", %%" XSI "\n\t" MOVX " " _pSrcP ", %%" XDI "\n\t" MOVX " $8, %%" XDX "\n\t" // curr offset longo all lines "1:\n\t" MOVX " " _pBobP ", %%" XAX "\n\t" ADDX " $8, %%" XDI "\n\t" ADDX " $8, %%" XSI "\n\t" ADDX " $8, %%" XBX "\n\t" ADDX " %%" XDX ", %%" XAX "\n\t" #ifdef USE_STRANGE_BOB #include "StrangeBob.inc" #else #include "WierdBob.inc" #endif // For non-SSE2: // through out most of the rest of this loop we will malongain // mm4 our min bob value // mm5 best weave pixels so far // mm6 our max Bob value // mm7 best weighted pixel ratings so far // We will keep a slight bias to using the weave pixels // from the current location, by rating them by the min distance // from the Bob value instead of the avg distance from that value. // our best and only rating so far "pcmpeqb %%mm7, %%mm7\n\t" // ffff, say we didn't find anything good yet #endif tvtime-1.0.11/plugins/tomsmocomp/WierdBob.inc0000664000175000017500000001514512663345553016115 00000000000000// -*- c++ -*- // First, get and save our possible Bob values // Assume our pixels are layed out as follows with x the calc'd bob value // and the other pixels are from the current field // // j a b c k current field // x calculated line // m d e f n current field // // we calc the bob value as: // x2 = either avg(a,f), avg(c,d), avg(b,e), avg(j,n), or avg(k,m) // selected for the smallest of abs(a,f), abs(c,d), or abs(b,e), etc. // a,f "movq -2(%%" XBX "), %%mm0\n\t" // value a from top left "movq 2(%%" XBX ", %%" XCX "), %%mm1\n\t" // value f from bottom right "movq %%mm0, %%mm6\n\t" // pavgb %%mm6, %%mm1 // avg(a,f), also best so far V_PAVGB ("%%mm6", "%%mm1", "%%mm7", _ShiftMask) // avg(a,f), also best so far "movq %%mm0, %%mm7\n\t" "psubusb %%mm1, %%mm7\n\t" "psubusb %%mm0, %%mm1\n\t" "por %%mm1, %%mm7\n\t" // abs diff, also best so far // c,d "movq 2(%%" XBX "), %%mm0\n\t" // value a from top left "movq -2(%%" XBX ", %%" XCX "), %%mm1\n\t" // value f from bottom right "movq %%mm0, %%mm2\n\t" // pavgb %%mm2, %%mm1 // avg(c,d) V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(c,d) "movq %%mm0, %%mm3\n\t" "psubusb %%mm1, %%mm3\n\t" "psubusb %%mm0, %%mm1\n\t" "por %%mm1, %%mm3\n\t" // abs(c,d) "movq %%mm3, %%mm1\n\t" // keep copy "psubusb %%mm7, %%mm3\n\t" // nonzero where new weights bigger, else 0 "pxor %%mm4, %%mm4\n\t" "pcmpeqb %%mm4, %%mm3\n\t" // now ff where new better, else 00 "pcmpeqb %%mm3, %%mm4\n\t" // here ff where old better, else 00 "pand %%mm3, %%mm1\n\t" // keep only better new avg and abs "pand %%mm3, %%mm2\n\t" "pand %%mm4, %%mm6\n\t" "pand %%mm4, %%mm7\n\t" "por %%mm2, %%mm6\n\t" // and merge new & old vals keeping best "por %%mm1, %%mm7\n\t" "por " _UVMask ", %%mm7\n\t" // but we know chroma is worthless so far "pand " _YMask ", %%mm5\n\t" // mask out chroma from here also // j,n "movq -4(%%" XBX "), %%mm0\n\t" // value j from top left "movq 4(%%" XBX ", %%" XCX "), %%mm1\n\t" // value n from bottom right "movq %%mm0, %%mm2\n\t" // pavgb %%mm2, %%mm1 // avg(j,n) V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(j,n) "movq %%mm0, %%mm3\n\t" "psubusb %%mm1, %%mm3\n\t" "psubusb %%mm0, %%mm1\n\t" "por %%mm1, %%mm3\n\t" // abs(j-n) "movq %%mm3, %%mm1\n\t" // keep copy "psubusb %%mm7, %%mm3\n\t" // nonzero where new weights bigger, else 0 "pxor %%mm4, %%mm4\n\t" "pcmpeqb %%mm4, %%mm3\n\t" // now ff where new better, else 00 "pcmpeqb %%mm3, %%mm4\n\t" // here ff where old better, else 00 "pand %%mm3, %%mm1\n\t" // keep only better new avg and abs "pand %%mm2, %%mm3\n\t" "pand %%mm4, %%mm6\n\t" "pand %%mm4, %%mm7\n\t" "por %%mm3, %%mm6\n\t" // and merge new & old vals keeping best "por %%mm1, %%mm7\n\t" // " // k, m "movq 4(%%" XBX "), %%mm0\n\t" // value k from top right "movq -4(%%" XBX ", %%" XCX "), %%mm1\n\t" // value n from bottom left "movq %%mm0, %%mm4\n\t" // pavgb %%mm4, %%mm1 // avg(k,m) V_PAVGB ("%%mm4", "%%mm1", "%%mm3", _ShiftMask) // avg(k,m) "movq %%mm0, %%mm3\n\t" "psubusb %%mm1, %%mm3\n\t" "psubusb %%mm0, %%mm1\n\t" "por %%mm1, %%mm3\n\t" // abs(k,m) "movq %%mm3, %%mm1\n\t" // keep copy "movq %%mm4, %%mm2\n\t" // avg(k,m) "psubusb %%mm7, %%mm3\n\t" // nonzero where new weights bigger, else 0 "pxor %%mm4, %%mm4\n\t" "pcmpeqb %%mm4, %%mm3\n\t" // now ff where new better, else 00 "pcmpeqb %%mm3, %%mm4\n\t" // here ff where old better, else 00 "pand %%mm3, %%mm1\n\t" // keep only better new avg and abs "pand %%mm2, %%mm3\n\t" "pand %%mm4, %%mm6\n\t" "pand %%mm4, %%mm7\n\t" "por %%mm3, %%mm6\n\t" // and merge new & old vals keeping best "por %%mm1, %%mm7\n\t" // " // b,e "movq (%%" XBX "), %%mm0\n\t" // value b from top "movq (%%" XBX ", %%" XCX "), %%mm1\n\t" // value e from bottom // We will also calc here the max/min values to later limit comb // so the max excursion will not exceed the Max_Comb constant #ifdef SKIP_SEARCH "movq %%mm0, %%mm2\n\t" // pminub %%mm2, %%mm1 V_PMINUB ("%%mm2", "%%mm1", "%%mm4") // pmaxub %%mm6, %%mm2 // clip our current results so far to be above this V_PMAXUB ("%%mm6", "%%mm2") "movq %%mm0, %%mm2\n\t" V_PMAXUB ("%%mm2", "%%mm1") // pminub %%mm6, %%mm2 // clip our current results so far to be below this V_PMINUB ("%%mm6", "%%mm2", "%%mm4") #else "movq %%mm0, %%mm2\n\t" "movq (%%" XAX "), %%mm4\n\t" "psubusb %%mm4, %%mm2\n\t" "psubusb %%mm0, %%mm4\n\t" "por %%mm2, %%mm4\n\t" // abs diff "movq %%mm1, %%mm2\n\t" "movq (%%" XAX ", %%" XCX "), %%mm3\n\t" "psubusb %%mm3, %%mm2\n\t" "psubusb %%mm1, %%mm3\n\t" "por %%mm2, %%mm3\n\t" // abs diff // pmaxub %%mm3, %%mm4 // top or bottom pixel moved most V_PMAXUB ("%%mm3", "%%mm4") // top or bottom pixel moved most "psubusb " _Max_Mov ", %%mm3\n\t" // moved more than allowed? or goes to 0? "pxor %%mm4, %%mm4\n\t" "pcmpeqb %%mm4, %%mm3\n\t" // now ff where low motion, else high motion "movq %%mm0, %%mm2\n\t" // pminub %%mm2, %%mm1 V_PMINUB ("%%mm2", "%%mm1", "%%mm4") // pmaxub %%mm6, %%mm2 // clip our current results so far to be above this V_PMAXUB ("%%mm6", "%%mm2") "psubusb %%mm3, %%mm2\n\t" // maybe decrease it to 0000.. if no surround motion "movq %%mm2, " _Min_Vals "\n\t" "movq %%mm0, %%mm2\n\t" V_PMAXUB ("%%mm2", "%%mm1") // pminub %%mm6, %%mm2 // clip our current results so far to be below this V_PMINUB ("%%mm6", "%%mm2", "%%mm4") "paddusb %%mm3, %%mm2\n\t" // maybe increase it to ffffff if no surround motion "movq %%mm2, " _Max_Vals "\n\t" #endif "movq %%mm0, %%mm2\n\t" // pavgb %%mm2, %%mm1 // avg(b,e) V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(b,e) "movq %%mm0, %%mm3\n\t" "psubusb %%mm1, %%mm3\n\t" "psubusb %%mm0, %%mm1\n\t" "por %%mm1, %%mm3\n\t" // abs(c,d) "movq %%mm3, %%mm1\n\t" // keep copy of diffs "pxor %%mm4, %%mm4\n\t" "psubusb %%mm7, %%mm3\n\t" // nonzero where new weights bigger, else 0 "pcmpeqb %%mm4, %%mm3\n\t" // now ff where new better, else 00 "pcmpeqb %%mm3, %%mm4\n\t" // here ff where old better, else 00 "pand %%mm3, %%mm1\n\t" "pand %%mm3, %%mm2\n\t" "pand %%mm4, %%mm6\n\t" "pand %%mm4, %%mm7\n\t" "por %%mm2, %%mm6\n\t" // our x2 value "por %%mm1, %%mm7\n\t" // our x2 diffs "movq %%mm7, %%mm4\n\t" // save as bob uncertainty indicator tvtime-1.0.11/plugins/tomsmocomp/SearchLoopOddA.inc0000664000175000017500000000106412663345553017202 00000000000000// -*- c++ -*- // Searches 1 pixel to the left and right, in both the old // and new fields, but takes averages. These are odd // pixel addresses. Any chroma match will not be used. (YUY2) MERGE4PIXavg("-2(%%" XDI ")", "2(%%" XSI ", %%" XCX ", 2)") // up left, down right MERGE4PIXavg("2(%%" XDI ")", "-2(%%" XSI ", %%" XCX ", 2)") // up right, down left MERGE4PIXavg("-2(%%" XDI ", %%" XCX ", 2)", "2(%%" XSI ")") // down left, up right MERGE4PIXavg("2(%%" XDI ", %%" XCX ", 2)", "-2(%%" XSI ")") // down right, up left #include "SearchLoopOddA2.inc" tvtime-1.0.11/plugins/tomsmocomp/SearchLoopEdgeA8.inc0000664000175000017500000000126712663345553017435 00000000000000// -*- c++ -*- // Searches 4 pixel to the left and right, in both the old // and new fields, but takes averages. These are even // pixel addresses. Chroma match will be used. (YUY2) MERGE4PIXavg("-8(%%" XDI ")", "8(%%" XSI ", %%" XCX ", 2)") // up left, down right MERGE4PIXavg("8(%%" XDI ")", "-8(%%" XSI ", %%" XCX ", 2)") // up right, down left MERGE4PIXavg("-8(%%" XDI ", %%" XCX ")", "8(%%" XSI ", %%" XCX ")") // left, right MERGE4PIXavg("8(%%" XDI ", %%" XCX ")", "-8(%%" XSI ", %%" XCX ")") // right, left MERGE4PIXavg("-8(%%" XDI ", %%" XCX ", 2)", "8(%%" XSI ")") // down left, up right MERGE4PIXavg("8(%%" XDI ", %%" XCX ", 2)", "-8(%%" XSI ")") // down right, up left tvtime-1.0.11/plugins/tomsmocomp/SearchLoopOddAH2.inc0000664000175000017500000000072212663345553017374 00000000000000// Searches 1 pixel to the left and right, in both the old // and new fields, but takes vertical averages. These are odd // pixel addresses. Any chroma match will not be used. (YUY2) MERGE4PIXavgH("-2(%%" XDI ", %%" XCX ")", "(%%" XDI ", %%" XCX ")", "(%%" XSI ", %%" XCX ")", "2(%%" XSI ", %%" XCX ")") // left, right MERGE4PIXavgH("2(%%" XDI ", %%" XCX ")", "(%%" XDI ", %%" XCX ")", "(%%" XSI ", %%" XCX ")", "-2(%%" XSI ", %%" XCX ")") // right, left tvtime-1.0.11/plugins/tomsmocomp/SearchLoopOddA6.inc0000664000175000017500000000127612663345553017275 00000000000000// -*- c++ -*- // Searches 3 pixels to the left and right, in both the old // and new fields, but takes averages. These are odd // pixel addresses. Any chroma match will not be used. (YUY2) MERGE4PIXavg("-6(%%" XDI ")", "6(%%" XSI ", %%" XCX ", 2)") // up left, down right MERGE4PIXavg("6(%%" XDI ")", "-6(%%" XSI ", %%" XCX ", 2)") // up right, down left MERGE4PIXavg("-6(%%" XDI ", %%" XCX ")", "6(%%" XSI ", %%" XCX ")") // left, right MERGE4PIXavg("6(%%" XDI ", %%" XCX ")", "-6(%%" XSI ", %%" XCX ")") // right, left MERGE4PIXavg("-6(%%" XDI ", %%" XCX ", 2)", "6(%%" XSI ")") // down left, up right MERGE4PIXavg("6(%%" XDI ", %%" XCX ", 2)", "-6(%%" XSI ")") // down right, up left tvtime-1.0.11/plugins/kdetv_greedyh.c0000664000175000017500000000752712663345553014525 00000000000000/** * Copyright (C) 2004 Billy Biggs * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include #include #include #include #include "dscalerapi.h" #include "deinterlace.h" #include "copyfunctions.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "mm_accel.h" #include "greedyh.h" static void deinterlace_frame_di_greedyh( uint8_t *output, int outstride, deinterlace_frame_data_t *data, int bottom_field, int second_field, int width, int height ) { TDeinterlaceInfo Info; TPicture Picture[ MAX_PICTURE_HISTORY ]; int stride = (width*2); int i; Info.FieldHeight = height / 2; Info.FrameHeight = height; Info.FrameWidth = width; Info.InputPitch = stride*2; Info.LineLength = stride; Info.OverlayPitch = outstride; Info.pMemcpy = fast_memcpy; if( bottom_field ) { Picture[ 0 ].pData = data->f0 + stride; Picture[ 0 ].Flags = PICTURE_INTERLACED_ODD; Picture[ 1 ].pData = data->f0; Picture[ 1 ].Flags = PICTURE_INTERLACED_EVEN; Picture[ 2 ].pData = data->f1 + stride; Picture[ 2 ].Flags = PICTURE_INTERLACED_ODD; Picture[ 3 ].pData = data->f1; Picture[ 3 ].Flags = PICTURE_INTERLACED_EVEN; Picture[ 4 ].pData = data->f2 + stride; Picture[ 4 ].Flags = PICTURE_INTERLACED_ODD; Picture[ 5 ].pData = data->f2; Picture[ 5 ].Flags = PICTURE_INTERLACED_EVEN; } else { Picture[ 0 ].pData = data->f0; Picture[ 0 ].Flags = PICTURE_INTERLACED_EVEN; Picture[ 1 ].pData = data->f1 + stride; Picture[ 1 ].Flags = PICTURE_INTERLACED_ODD; Picture[ 2 ].pData = data->f1; Picture[ 2 ].Flags = PICTURE_INTERLACED_EVEN; Picture[ 3 ].pData = data->f2 + stride; Picture[ 3 ].Flags = PICTURE_INTERLACED_ODD; Picture[ 4 ].pData = data->f2; Picture[ 4 ].Flags = PICTURE_INTERLACED_EVEN; } Info.Overlay = output; for( i = 0; i < MAX_PICTURE_HISTORY; i++ ) { Info.PictureHistory[ i ] = &(Picture[ i ]); } if( mm_accel() & MM_ACCEL_X86_MMXEXT ) { greedyh_filter_sse( &Info ); } else if( mm_accel() & MM_ACCEL_X86_3DNOW ) { greedyh_filter_3dnow( &Info ); } else { greedyh_filter_mmx( &Info ); } } static deinterlace_method_t greedymethod = { "Motion Adaptive: Advanced Detection", "AdaptiveAdvanced", 4, MM_ACCEL_X86_MMX, 0, 0, 0, 0, deinterlace_frame_di_greedyh, 0, { "Uses heuristics to detect motion in the input", "frames and reconstruct image detail where", "possible. Use this for high quality output", "even on monitors set to an arbitrary refresh", "rate.", "", "Advanced detection uses linear interpolation", "where motion is detected, using a four-field", "buffer. This is the Greedy: High Motion", "deinterlacer from DScaler." } }; deinterlace_method_t *dscaler_greedyh_get_method( void ) { greedyh_init(); return &greedymethod; } tvtime-1.0.11/plugins/weave.c0000664000175000017500000000350612354244126012770 00000000000000/** * Pure weave deinterlacing plugin. * * Copyright (C) 2002 Billy Biggs . * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include #if defined (__SVR4) && defined (__sun) # include #else # include #endif #include "copyfunctions.h" #include "deinterlace.h" static void deinterlace_scanline_weave( uint8_t *output, deinterlace_scanline_data_t *data, int width ) { blit_packed422_scanline( output, data->m1, width ); } static void copy_scanline( uint8_t *output, deinterlace_scanline_data_t *data, int width ) { blit_packed422_scanline( output, data->m0, width ); } static deinterlace_method_t weavemethod = { "Weave Last Field", "Weave", 2, 0, 0, 1, deinterlace_scanline_weave, copy_scanline, 0, 0, { "Only updates the most recent field", "", "", "", "", "", "", "", "", "" } }; deinterlace_method_t *weave_get_method( void ) { return &weavemethod; } tvtime-1.0.11/plugins/linear.c0000664000175000017500000000410212354244126013124 00000000000000/** * Copyright (C) 2002 Billy Biggs . * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include #if defined (__SVR4) && defined (__sun) # include #else # include #endif #include "copyfunctions.h" #include "deinterlace.h" static void deinterlace_scanline_linear( uint8_t *output, deinterlace_scanline_data_t *data, int width ) { interpolate_packed422_scanline( output, data->t0, data->b0, width ); } static void copy_scanline( uint8_t *output, deinterlace_scanline_data_t *data, int width ) { blit_packed422_scanline( output, data->m0, width ); } static deinterlace_method_t linearmethod = { "Television: Full resolution", "TelevisionFull", 1, 0, 0, 1, deinterlace_scanline_linear, copy_scanline, 0, 0, { "Expands each field independently without", "blurring or copying in time. Use this if you", "want TV-quality with low CPU, and you have", "configured your monitor to run at the refresh", "rate of the video signal.", "", "Full resolution mode expands each field", "to full size for high quality fullscreen use.", "", "" } }; deinterlace_method_t *linear_get_method( void ) { return &linearmethod; } tvtime-1.0.11/plugins/Makefile.in0000664000175000017500000003545313026503063013563 00000000000000# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # plugins/Makefile.am distributes the plugins that come with tvtime. # Copyright (C) 2002, 2003, 2004 Billy Biggs # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = plugins ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc21.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intdiv0.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 $(top_srcdir)/m4/inttypes.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/isc-posix.m4 \ $(top_srcdir)/m4/lcmessage.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/mkinstalldirs DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ ALSA_CFLAGS = @ALSA_CFLAGS@ ALSA_LIBS = @ALSA_LIBS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ ASOUND_LIBS = @ASOUND_LIBS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FREETYPE_CONFIG = @FREETYPE_CONFIG@ GENCAT = @GENCAT@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML2_CONFIG = @LIBXML2_CONFIG@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PNG_LIBS = @PNG_LIBS@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ X11_CFLAGS = @X11_CFLAGS@ X11_LIBS = @X11_LIBS@ XGETTEXT = @XGETTEXT@ XMKMF = @XMKMF@ XML2_FLAG = @XML2_FLAG@ XML2_LIBS = @XML2_LIBS@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ ZLIB_LIBS = @ZLIB_LIBS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ found_cc = @found_cc@ found_cxx = @found_cxx@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = tomsmocomp/SearchLoop0A.inc tomsmocomp/SearchLoopBottom.inc \ tomsmocomp/SearchLoopEdgeA.inc tomsmocomp/SearchLoopEdgeA8.inc \ tomsmocomp/SearchLoopOddA.inc tomsmocomp/SearchLoopOddA2.inc \ tomsmocomp/SearchLoopOddA6.inc tomsmocomp/SearchLoopOddAH.inc \ tomsmocomp/SearchLoopOddAH2.inc tomsmocomp/SearchLoopTop.inc \ tomsmocomp/SearchLoopVA.inc tomsmocomp/SearchLoopVAH.inc \ tomsmocomp/StrangeBob.inc tomsmocomp/TomsMoCompAll.inc \ tomsmocomp/TomsMoCompAll2.inc tomsmocomp/WierdBob.inc \ tomsmocomp/tomsmocompmacros.h x86-64_macros.inc greedyh.asm all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign plugins/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign plugins/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: tvtime-1.0.11/plugins/greedyh.h0000664000175000017500000000215712354244126013316 00000000000000/** * Copyright (C) 2004 Billy Biggs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef GREEDYH_H_INCLUDED #define GREEDYH_H_INCLUDED #include "dscalerapi.h" #ifdef __cplusplus extern "C" { #endif void greedyh_init( void ); void greedyh_filter_mmx( TDeinterlaceInfo* pInfo ); void greedyh_filter_3dnow( TDeinterlaceInfo* pInfo ); void greedyh_filter_sse( TDeinterlaceInfo* pInfo ); #ifdef __cplusplus }; #endif #endif /* GREEDYH_H_INCLUDED */ tvtime-1.0.11/plugins/Makefile.am0000664000175000017500000000253512354244126013552 00000000000000# plugins/Makefile.am distributes the plugins that come with tvtime. # Copyright (C) 2002, 2003, 2004 Billy Biggs # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. EXTRA_DIST = tomsmocomp/SearchLoop0A.inc tomsmocomp/SearchLoopBottom.inc \ tomsmocomp/SearchLoopEdgeA.inc tomsmocomp/SearchLoopEdgeA8.inc \ tomsmocomp/SearchLoopOddA.inc tomsmocomp/SearchLoopOddA2.inc \ tomsmocomp/SearchLoopOddA6.inc tomsmocomp/SearchLoopOddAH.inc \ tomsmocomp/SearchLoopOddAH2.inc tomsmocomp/SearchLoopTop.inc \ tomsmocomp/SearchLoopVA.inc tomsmocomp/SearchLoopVAH.inc \ tomsmocomp/StrangeBob.inc tomsmocomp/TomsMoCompAll.inc \ tomsmocomp/TomsMoCompAll2.inc tomsmocomp/WierdBob.inc \ tomsmocomp/tomsmocompmacros.h x86-64_macros.inc greedyh.asm tvtime-1.0.11/plugins/greedyhmacros.h0000664000175000017500000000730512663345553014534 00000000000000///////////////////////////////////////////////////////////////////////////// // Copyright (c) 2001 Tom Barry. All rights reserved. ///////////////////////////////////////////////////////////////////////////// // // This file is subject to the terms of the GNU General Public License as // published by the Free Software Foundation. A copy of this license is // included with this software distribution in the file COPYING. If you // do not have a copy, you may obtain a copy by writing to the Free // Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. // // This software is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details // ///////////////////////////////////////////////////////////////////////////// // Define a few macros for CPU dependent instructions. // I suspect I don't really understand how the C macro preprocessor works but // this seems to get the job done. // TRB 7/01 // BEFORE USING THESE YOU MUST SET: // #define SSE_TYPE SSE (or MMX or 3DNOW) // some macros for pavgb instruction // V_PAVGB(mmr1, mmr2, mmr work register, smask) mmr2 may = mmrw if you can trash it #define V_PAVGB_MMX(mmr1, mmr2, mmrw, smask) \ "movq " mmr2 ", " mmrw "\n\t" \ "pand " smask ", " mmrw "\n\t" \ "psrlw $1, " mmrw "\n\t" \ "pand " smask ", " mmr1 "\n\t" \ "psrlw $1, " mmr1 "\n\t" \ "paddusb " mmrw ", " mmr1 "\n\t" #define V_PAVGB_SSE(mmr1, mmr2, mmrw, smask) "pavgb " mmr2 ", " mmr1 "\n\t" #define V_PAVGB_3DNOW(mmr1, mmr2, mmrw, smask) "pavgusb " mmr2 ", " mmr1 "\n\t" #define V_PAVGB(mmr1, mmr2, mmrw, smask) V_PAVGB2(mmr1, mmr2, mmrw, smask, SSE_TYPE) #define V_PAVGB2(mmr1, mmr2, mmrw, smask, ssetyp) V_PAVGB3(mmr1, mmr2, mmrw, smask, ssetyp) #define V_PAVGB3(mmr1, mmr2, mmrw, smask, ssetyp) V_PAVGB_##ssetyp(mmr1, mmr2, mmrw, smask) // some macros for pmaxub instruction #define V_PMAXUB_MMX(mmr1, mmr2) \ "psubusb " mmr2 ", " mmr1 "\n\t" \ "paddusb " mmr2 ", " mmr1 "\n\t" #define V_PMAXUB_SSE(mmr1, mmr2) "pmaxub " mmr2 ", " mmr1 "\n\t" #define V_PMAXUB_3DNOW(mmr1, mmr2) V_PMAXUB_MMX(mmr1, mmr2) // use MMX version #define V_PMAXUB(mmr1, mmr2) V_PMAXUB2(mmr1, mmr2, SSE_TYPE) #define V_PMAXUB2(mmr1, mmr2, ssetyp) V_PMAXUB3(mmr1, mmr2, ssetyp) #define V_PMAXUB3(mmr1, mmr2, ssetyp) V_PMAXUB_##ssetyp(mmr1, mmr2) // some macros for pminub instruction // V_PMINUB(mmr1, mmr2, mmr work register) mmr2 may NOT = mmrw #define V_PMINUB_MMX(mmr1, mmr2, mmrw) \ "pcmpeqb " mmrw ", " mmrw "\n\t" \ "psubusb " mmr2 ", " mmrw "\n\t" \ "paddusb " mmrw ", " mmr1 "\n\t" \ "psubusb " mmrw ", " mmr1 "\n\t" #define V_PMINUB_SSE(mmr1, mmr2, mmrw) "pminub " mmr2 ", " mmr1 "\n\t" #define V_PMINUB_3DNOW(mmr1, mmr2, mmrw) V_PMINUB_MMX(mmr1, mmr2, mmrw) // use MMX version #define V_PMINUB(mmr1, mmr2, mmrw) V_PMINUB2(mmr1, mmr2, mmrw, SSE_TYPE) #define V_PMINUB2(mmr1, mmr2, mmrw, ssetyp) V_PMINUB3(mmr1, mmr2, mmrw, ssetyp) #define V_PMINUB3(mmr1, mmr2, mmrw, ssetyp) V_PMINUB_##ssetyp(mmr1, mmr2, mmrw) // some macros for movntq instruction // V_MOVNTQ(mmr1, mmr2) #define V_MOVNTQ_MMX(mmr1, mmr2) "movq " mmr2 ", " mmr1 "\n\t" #define V_MOVNTQ_3DNOW(mmr1, mmr2) "movq " mmr2 ", " mmr1 "\n\t" #define V_MOVNTQ_SSE(mmr1, mmr2) "movntq " mmr2 ", " mmr1 "\n\t" #define V_MOVNTQ(mmr1, mmr2) V_MOVNTQ2(mmr1, mmr2, SSE_TYPE) #define V_MOVNTQ2(mmr1, mmr2, ssetyp) V_MOVNTQ3(mmr1, mmr2, ssetyp) #define V_MOVNTQ3(mmr1, mmr2, ssetyp) V_MOVNTQ_##ssetyp(mmr1, mmr2) // end of macros tvtime-1.0.11/plugins/vfir.c0000664000175000017500000001032112354244126012620 00000000000000/** * This file contains code from ffmpeg, see http://ffmpeg.org/ * * Originated in imgconvert.c: Misc image convertion routines * Copyright (c) 2001, 2002, 2003 Fabrice Bellard. * * tvtime port Copyright (C) 2003 Billy Biggs . * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include #if defined (__SVR4) && defined (__sun) # include #else # include #endif #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "attributes.h" #include "mmx.h" #include "mm_accel.h" #include "copyfunctions.h" #include "deinterlace.h" /** * The MPEG2 spec uses a slightly harsher filter, they specify * [-1 8 2 8 -1]. ffmpeg uses a similar filter but with more of * a tendancy to blur than to use the local information. The * filter taps here are: [-1 4 2 4 -1]. */ static void deinterlace_line( uint8_t *dst, uint8_t *lum_m4, uint8_t *lum_m3, uint8_t *lum_m2, uint8_t *lum_m1, uint8_t *lum, int size ) { #ifdef ARCH_X86 mmx_t rounder; rounder.uw[0]=4; rounder.uw[1]=4; rounder.uw[2]=4; rounder.uw[3]=4; pxor_r2r(mm7,mm7); movq_m2r(rounder,mm6); for (;size > 3; size-=4) { movd_m2r(lum_m4[0],mm0); movd_m2r(lum_m3[0],mm1); movd_m2r(lum_m2[0],mm2); movd_m2r(lum_m1[0],mm3); movd_m2r(lum[0],mm4); punpcklbw_r2r(mm7,mm0); punpcklbw_r2r(mm7,mm1); punpcklbw_r2r(mm7,mm2); punpcklbw_r2r(mm7,mm3); punpcklbw_r2r(mm7,mm4); paddw_r2r(mm3,mm1); psllw_i2r(1,mm2); paddw_r2r(mm4,mm0); psllw_i2r(2,mm1);// 2 paddw_r2r(mm6,mm2); paddw_r2r(mm2,mm1); psubusw_r2r(mm0,mm1); psrlw_i2r(3,mm1); // 3 packuswb_r2r(mm7,mm1); movd_r2m(mm1,dst[0]); lum_m4+=4; lum_m3+=4; lum_m2+=4; lum_m1+=4; lum+=4; dst+=4; } emms(); #else /** * C implementation. */ int sum; for(;size > 0;size--) { sum = -lum_m4[0]; sum += lum_m3[0] << 2; sum += lum_m2[0] << 1; sum += lum_m1[0] << 2; sum += -lum[0]; dst[0] = (sum + 4) >> 3; // This needs to be clipped at 0 and 255: cm[(sum + 4) >> 3]; lum_m4++; lum_m3++; lum_m2++; lum_m1++; lum++; dst++; } #endif } static void deinterlace_scanline_vfir( uint8_t *output, deinterlace_scanline_data_t *data, int width ) { deinterlace_line( output, data->tt1, data->t0, data->m1, data->b0, data->bb1, width*2 ); } static void copy_scanline( uint8_t *output, deinterlace_scanline_data_t *data, int width ) { blit_packed422_scanline( output, data->m0, width ); } static deinterlace_method_t vfirmethod = { "Blur: Vertical", "BlurVertical", 1, #ifdef ARCH_X86 MM_ACCEL_X86_MMXEXT, #else 0, #endif 0, 1, deinterlace_scanline_vfir, copy_scanline, 0, 0, { "Avoids flicker by blurring consecutive frames", "of input. Use this if you want to run your", "monitor at an arbitrary refresh rate and not", "use much CPU, and are willing to sacrifice", "detail.", "", "Vertical mode blurs favouring the most recent", "field for less visible trails. From the", "deinterlacer filter in ffmpeg.", "" } }; deinterlace_method_t *vfir_get_method( void ) { return &vfirmethod; } tvtime-1.0.11/plugins/greedy.c0000664000175000017500000001526712663345553013160 00000000000000/** * Copyright (c) 2000 Tom Barry All rights reserved. * mmx.h port copyright (c) 2002 Billy Biggs . * * This code is ported from DScaler: http://deinterlace.sf.net/ * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include #if defined (__SVR4) && defined (__sun) # include #else # include #endif #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "attributes.h" #include "mmx.h" #include "mm_accel.h" #include "deinterlace.h" #include "copyfunctions.h" // This is a simple lightweight DeInterlace method that uses little CPU time // but gives very good results for low or intermedite motion. // It defers frames by one field, but that does not seem to produce noticeable // lip sync problems. // // The method used is to take either the older or newer weave pixel depending // upon which give the smaller comb factor, and then clip to avoid large damage // when wrong. // // I'd intended this to be part of a larger more elaborate method added to // Blended Clip but this give too good results for the CPU to ignore here. static void copy_scanline( uint8_t *output, deinterlace_scanline_data_t *data, int width ) { blit_packed422_scanline( output, data->m1, width ); } static int GreedyMaxComb = 15; static void deinterlace_greedy_packed422_scanline_mmxext( uint8_t *output, deinterlace_scanline_data_t *data, int width ) { #ifdef ARCH_X86 mmx_t MaxComb; uint8_t *m0 = data->m0; uint8_t *t1 = data->t1; uint8_t *b1 = data->b1; uint8_t *m2 = data->m2; // How badly do we let it weave? 0-255 MaxComb.ub[ 0 ] = GreedyMaxComb; MaxComb.ub[ 1 ] = GreedyMaxComb; MaxComb.ub[ 2 ] = GreedyMaxComb; MaxComb.ub[ 3 ] = GreedyMaxComb; MaxComb.ub[ 4 ] = GreedyMaxComb; MaxComb.ub[ 5 ] = GreedyMaxComb; MaxComb.ub[ 6 ] = GreedyMaxComb; MaxComb.ub[ 7 ] = GreedyMaxComb; // L2 == m0 // L1 == t1 // L3 == b1 // LP2 == m2 width /= 4; while( width-- ) { movq_m2r( *t1, mm1 ); // L1 movq_m2r( *m0, mm2 ); // L2 movq_m2r( *b1, mm3 ); // L3 movq_m2r( *m2, mm0 ); // LP2 // average L1 and L3 leave result in mm4 movq_r2r( mm1, mm4 ); // L1 pavgb_r2r( mm3, mm4 ); // (L1 + L3)/2 // get abs value of possible L2 comb movq_r2r( mm2, mm7 ); // L2 psubusb_r2r( mm4, mm7 ); // L2 - avg movq_r2r( mm4, mm5 ); // avg psubusb_r2r( mm2, mm5 ); // avg - L2 por_r2r( mm7, mm5 ); // abs(avg-L2) movq_r2r( mm4, mm6 ); // copy of avg for later // get abs value of possible LP2 comb movq_r2r( mm0, mm7 ); // LP2 psubusb_r2r( mm4, mm7 ); // LP2 - avg psubusb_r2r( mm0, mm4 ); // avg - LP2 por_r2r( mm7, mm4 ); // abs(avg-LP2) // use L2 or LP2 depending upon which makes smaller comb psubusb_r2r( mm5, mm4 ); // see if it goes to zero psubusb_r2r( mm5, mm5 ); // 0 pcmpeqb_r2r( mm5, mm4 ); // if (mm4=0) then FF else 0 pcmpeqb_r2r( mm4, mm5 ); // opposite of mm4 // if Comb(LP2) <= Comb(L2) then mm4=ff, mm5=0 else mm4=0, mm5 = 55 pand_r2r( mm2, mm5 ); // use L2 if mm5 == ff, else 0 pand_r2r( mm0, mm4 ); // use LP2 if mm4 = ff, else 0 por_r2r( mm5, mm4 ); // may the best win // Now lets clip our chosen value to be not outside of the range // of the high/low range L1-L3 by more than abs(L1-L3) // This allows some comb but limits the damages and also allows more // detail than a boring oversmoothed clip. movq_r2r( mm1, mm2 ); // copy L1 psubusb_r2r( mm3, mm2 ); // - L3, with saturation paddusb_r2r( mm3, mm2 ); // now = Max(L1,L3) pcmpeqb_r2r( mm7, mm7 ); // all ffffffff psubusb_r2r( mm1, mm7 ); // - L1 paddusb_r2r( mm7, mm3 ); // add, may sat at fff.. psubusb_r2r( mm7, mm3 ); // now = Min(L1,L3) // allow the value to be above the high or below the low by amt of MaxComb paddusb_m2r( MaxComb, mm2 ); // increase max by diff psubusb_m2r( MaxComb, mm3 ); // lower min by diff psubusb_r2r( mm3, mm4 ); // best - Min paddusb_r2r( mm3, mm4 ); // now = Max(best,Min(L1,L3) pcmpeqb_r2r( mm7, mm7 ); // all ffffffff psubusb_r2r( mm4, mm7 ); // - Max(best,Min(best,L3) paddusb_r2r( mm7, mm2 ); // add may sat at FFF.. psubusb_r2r( mm7, mm2 ); // now = Min( Max(best, Min(L1,L3), L2 )=L2 clipped movntq_r2m( mm2, *output ); // move in our clipped best // Advance to the next set of pixels. output += 8; m0 += 8; t1 += 8; b1 += 8; m2 += 8; } sfence(); emms(); #endif } /** * The greedy deinterlacer introduces a one-field delay on the input. * From the diagrams in deinterlace.h, the field being deinterlaced is * always t-1. For this reason, our copy_scanline method is used for * deinterlace_method_t's interpolate_scanline function, and the real * work is done in deinterlace_method_t's copy_scanline function. */ static deinterlace_method_t greedymethod = { "Motion Adaptive: Simple Detection", "AdaptiveSimple", 3, MM_ACCEL_X86_MMXEXT, 0, 1, copy_scanline, deinterlace_greedy_packed422_scanline_mmxext, 0, 1, { "Uses heuristics to detect motion in the input", "frames and reconstruct image detail where", "possible. Use this for high quality output", "even on monitors set to an arbitrary refresh", "rate.", "", "Simple detection uses linear interpolation", "where motion is detected, using a two-field", "buffer. This is the Greedy: Low Motion", "deinterlacer from DScaler." } }; deinterlace_method_t *greedy_get_method( void ) { return &greedymethod; } tvtime-1.0.11/plugins/tomsmocomp.h0000664000175000017500000000220412354244126014055 00000000000000/** * Copyright (C) 2004 Billy Biggs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef TOMSMOCOMP_H_INCLUDED #define TOMSMOCOMP_H_INCLUDED #include "dscalerapi.h" #ifdef __cplusplus extern "C" { #endif void tomsmocomp_init( void ); void tomsmocomp_filter_mmx( TDeinterlaceInfo* pInfo ); void tomsmocomp_filter_3dnow( TDeinterlaceInfo* pInfo ); void tomsmocomp_filter_sse( TDeinterlaceInfo* pInfo ); #ifdef __cplusplus }; #endif #endif /* TOMSMOCOMP_H_INCLUDED */ tvtime-1.0.11/plugins/tomsmocomp.cpp0000664000175000017500000000553312354244126014420 00000000000000/** * Copyright (C) 2004 Billy Biggs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "tomsmocomp.h" #include "tomsmocomp/tomsmocompmacros.h" #include "x86-64_macros.inc" #define SearchEffortDefault 5 #define UseStrangeBobDefault false class DScalerFilterTomsMoComp { public: DScalerFilterTomsMoComp() {} virtual ~DScalerFilterTomsMoComp() {} #define IS_MMX #define SSE_TYPE MMX #define FUNCT_NAME filterDScaler_MMX #include "tomsmocomp/TomsMoCompAll.inc" #undef IS_MMX #undef SSE_TYPE #undef FUNCT_NAME #define IS_3DNOW #define SSE_TYPE 3DNOW #define FUNCT_NAME filterDScaler_3DNOW #include "tomsmocomp/TomsMoCompAll.inc" #undef IS_3DNOW #undef SSE_TYPE #undef FUNCT_NAME #define IS_SSE #define SSE_TYPE SSE #define FUNCT_NAME filterDScaler_SSE #include "tomsmocomp/TomsMoCompAll.inc" #undef IS_SSE #undef SSE_TYPE #undef FUNCT_NAME protected: int Fieldcopy(void *dest, const void *src, size_t count, int rows, int dst_pitch, int src_pitch) { unsigned char* pDest = (unsigned char*) dest; unsigned char* pSrc = (unsigned char*) src; int i; for (i=0; i < rows; i++) { pMyMemcpy(pDest, pSrc, count); pSrc += src_pitch; pDest += dst_pitch; } return 0; } public: long SearchEffort; bool UseStrangeBob; MEMCPY_FUNC* pMyMemcpy; bool IsOdd; const unsigned char* pWeaveSrc; const unsigned char* pWeaveSrcP; unsigned char* pWeaveDest; const unsigned char* pCopySrc; const unsigned char* pCopySrcP; unsigned char* pCopyDest; int src_pitch; int dst_pitch; int rowsize; int height; int FldHeight; }; static DScalerFilterTomsMoComp *filter; void tomsmocomp_init( void ) { filter = new DScalerFilterTomsMoComp(); filter->SearchEffort = SearchEffortDefault; filter->UseStrangeBob = UseStrangeBobDefault; } void tomsmocomp_filter_mmx( TDeinterlaceInfo* pInfo ) { filter->filterDScaler_MMX( pInfo ); } void tomsmocomp_filter_3dnow( TDeinterlaceInfo* pInfo ) { filter->filterDScaler_3DNOW( pInfo ); } void tomsmocomp_filter_sse( TDeinterlaceInfo* pInfo ) { filter->filterDScaler_SSE( pInfo ); } tvtime-1.0.11/plugins/linearblend.c0000664000175000017500000001164512663345553014154 00000000000000/** * Linear blend deinterlacing plugin. The idea for this algorithm came * from the linear blend deinterlacer which originated in the mplayer * sources. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include #if defined (__SVR4) && defined (__sun) # include #else # include #endif #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "attributes.h" #include "mmx.h" #include "mm_accel.h" #include "copyfunctions.h" #include "deinterlace.h" static void deinterlace_scanline_linear_blend( uint8_t *output, deinterlace_scanline_data_t *data, int width ) { uint8_t *t0 = data->t0; uint8_t *b0 = data->b0; uint8_t *m1 = data->m1; #ifdef ARCH_X86 int i; // Get width in bytes. width *= 2; i = width / 8; width -= i * 8; pxor_r2r( mm7, mm7 ); while( i-- ) { movd_m2r( *t0, mm0 ); movd_m2r( *b0, mm1 ); movd_m2r( *m1, mm2 ); movd_m2r( *(t0+4), mm3 ); movd_m2r( *(b0+4), mm4 ); movd_m2r( *(m1+4), mm5 ); punpcklbw_r2r( mm7, mm0 ); punpcklbw_r2r( mm7, mm1 ); punpcklbw_r2r( mm7, mm2 ); punpcklbw_r2r( mm7, mm3 ); punpcklbw_r2r( mm7, mm4 ); punpcklbw_r2r( mm7, mm5 ); psllw_i2r( 1, mm2 ); psllw_i2r( 1, mm5 ); paddw_r2r( mm0, mm2 ); paddw_r2r( mm3, mm5 ); paddw_r2r( mm1, mm2 ); paddw_r2r( mm4, mm5 ); psrlw_i2r( 2, mm2 ); psrlw_i2r( 2, mm5 ); packuswb_r2r( mm2, mm2 ); packuswb_r2r( mm5, mm5 ); movd_r2m( mm2, *output ); movd_r2m( mm5, *(output+4) ); output += 8; t0 += 8; b0 += 8; m1 += 8; } while( width-- ) { *output++ = (*t0++ + *b0++ + (*m1++ << 1)) >> 2; } emms(); #else width *= 2; while( width-- ) { *output++ = (*t0++ + *b0++ + (*m1++ << 1)) >> 2; } #endif } static void deinterlace_scanline_linear_blend2( uint8_t *output, deinterlace_scanline_data_t *data, int width ) { uint8_t *m0 = data->m0; uint8_t *t1 = data->t1; uint8_t *b1 = data->b1; #ifdef ARCH_X86 int i; // Get width in bytes. width *= 2; i = width / 8; width -= i * 8; pxor_r2r( mm7, mm7 ); while( i-- ) { movd_m2r( *t1, mm0 ); movd_m2r( *b1, mm1 ); movd_m2r( *m0, mm2 ); movd_m2r( *(t1+4), mm3 ); movd_m2r( *(b1+4), mm4 ); movd_m2r( *(m0+4), mm5 ); punpcklbw_r2r( mm7, mm0 ); punpcklbw_r2r( mm7, mm1 ); punpcklbw_r2r( mm7, mm2 ); punpcklbw_r2r( mm7, mm3 ); punpcklbw_r2r( mm7, mm4 ); punpcklbw_r2r( mm7, mm5 ); psllw_i2r( 1, mm2 ); psllw_i2r( 1, mm5 ); paddw_r2r( mm0, mm2 ); paddw_r2r( mm3, mm5 ); paddw_r2r( mm1, mm2 ); paddw_r2r( mm4, mm5 ); psrlw_i2r( 2, mm2 ); psrlw_i2r( 2, mm5 ); packuswb_r2r( mm2, mm2 ); packuswb_r2r( mm5, mm5 ); movd_r2m( mm2, *output ); movd_r2m( mm5, *(output+4) ); output += 8; t1 += 8; b1 += 8; m0 += 8; } while( width-- ) { *output++ = (*t1++ + *b1++ + (*m0++ << 1)) >> 2; } emms(); #else width *= 2; while( width-- ) { *output++ = (*t1++ + *b1++ + (*m0++ << 1)) >> 2; } #endif } static deinterlace_method_t linearblendmethod = { "Blur: Temporal", "BlurTemporal", 2, #ifdef ARCH_X86 MM_ACCEL_X86_MMX, #else 0, #endif 0, 1, deinterlace_scanline_linear_blend, deinterlace_scanline_linear_blend2, 0, 0, { "Avoids flicker by blurring consecutive frames", "of input. Use this if you want to run your", "monitor at an arbitrary refresh rate and not", "use much CPU, and are willing to sacrifice", "detail.", "", "Temporal mode evenly blurs content for least", "flicker, but with visible trails on fast motion.", "From the linear blend deinterlacer in mplayer.", "" } }; deinterlace_method_t *linearblend_get_method( void ) { return &linearblendmethod; } tvtime-1.0.11/plugins/kdetv_tomsmocomp.c0000664000175000017500000000753612663345553015273 00000000000000/** * Copyright (C) 2004 Billy Biggs * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include #include #include #include #include "dscalerapi.h" #include "deinterlace.h" #include "copyfunctions.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "mm_accel.h" #include "tomsmocomp.h" static void deinterlace_frame_di_tomsmocomp( uint8_t *output, int outstride, deinterlace_frame_data_t *data, int bottom_field, int second_field, int width, int height ) { TDeinterlaceInfo Info; TPicture Picture[ MAX_PICTURE_HISTORY ]; int stride = (width*2); int i; Info.FieldHeight = height / 2; Info.FrameHeight = height; Info.FrameWidth = width; Info.InputPitch = stride*2; Info.LineLength = stride; Info.OverlayPitch = outstride; Info.pMemcpy = fast_memcpy; if( bottom_field ) { Picture[ 0 ].pData = data->f0 + stride; Picture[ 0 ].Flags = PICTURE_INTERLACED_ODD; Picture[ 1 ].pData = data->f0; Picture[ 1 ].Flags = PICTURE_INTERLACED_EVEN; Picture[ 2 ].pData = data->f1 + stride; Picture[ 2 ].Flags = PICTURE_INTERLACED_ODD; Picture[ 3 ].pData = data->f1; Picture[ 3 ].Flags = PICTURE_INTERLACED_EVEN; Picture[ 4 ].pData = data->f2 + stride; Picture[ 4 ].Flags = PICTURE_INTERLACED_ODD; Picture[ 5 ].pData = data->f2; Picture[ 5 ].Flags = PICTURE_INTERLACED_EVEN; } else { Picture[ 0 ].pData = data->f0; Picture[ 0 ].Flags = PICTURE_INTERLACED_EVEN; Picture[ 1 ].pData = data->f1 + stride; Picture[ 1 ].Flags = PICTURE_INTERLACED_ODD; Picture[ 2 ].pData = data->f1; Picture[ 2 ].Flags = PICTURE_INTERLACED_EVEN; Picture[ 3 ].pData = data->f2 + stride; Picture[ 3 ].Flags = PICTURE_INTERLACED_ODD; Picture[ 4 ].pData = data->f2; Picture[ 4 ].Flags = PICTURE_INTERLACED_EVEN; } Info.Overlay = output; for( i = 0; i < MAX_PICTURE_HISTORY; i++ ) { Info.PictureHistory[ i ] = &(Picture[ i ]); } if( mm_accel() & MM_ACCEL_X86_MMXEXT ) { tomsmocomp_filter_sse( &Info ); } else if( mm_accel() & MM_ACCEL_X86_3DNOW ) { tomsmocomp_filter_3dnow( &Info ); } else { tomsmocomp_filter_mmx( &Info ); } } static deinterlace_method_t tomsmocompmethod = { "Motion Adaptive: Motion Search", "AdaptiveSearch", 4, MM_ACCEL_X86_MMX, 0, 0, 0, 0, deinterlace_frame_di_tomsmocomp, 0, { "Uses heuristics to detect motion in the input", "frames and reconstruct image detail where", "possible. Use this for high quality output", "even on monitors set to an arbitrary refresh", "rate.", "", "Motion search mode finds and follows motion", "vectors for accurate interpolation. This is", "the TomsMoComp deinterlacer from DScaler.", "" } }; deinterlace_method_t *dscaler_tomsmocomp_get_method( void ) { tomsmocomp_init(); return &tomsmocompmethod; } tvtime-1.0.11/plugins/greedyh.asm0000664000175000017500000003313112663345553013654 00000000000000// -*- c++ -*- ///////////////////////////////////////////////////////////////////////////// // Copyright (c) 2001 Tom Barry. All rights reserved. ///////////////////////////////////////////////////////////////////////////// // // This file is subject to the terms of the GNU General Public License as // published by the Free Software Foundation. A copy of this license is // included with this software distribution in the file COPYING. If you // do not have a copy, you may obtain a copy by writing to the Free // Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. // // This software is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details // ///////////////////////////////////////////////////////////////////////////// #include "x86-64_macros.inc" void FUNCT_NAME(TDeinterlaceInfo* pInfo) { int64_t i; bool InfoIsOdd = (pInfo->PictureHistory[0]->Flags & PICTURE_INTERLACED_ODD) ? 1 : 0; // in tight loop some vars are accessed faster in local storage int64_t YMask = 0x00ff00ff00ff00ffull; // to keep only luma int64_t UVMask = 0xff00ff00ff00ff00ull; // to keep only chroma int64_t ShiftMask = 0xfefffefffefffeffull; // to avoid shifting chroma to luma int64_t QW256 = 0x0100010001000100ull; // 4 256's // Set up our two parms that are actually evaluated for each pixel i=GreedyMaxComb; int64_t MaxComb = i << 56 | i << 48 | i << 40 | i << 32 | i << 24 | i << 16 | i << 8 | i; i = GreedyMotionThreshold; // scale to range of 0-257 int64_t MotionThreshold = i << 48 | i << 32 | i << 16 | i | UVMask; i = GreedyMotionSense; // scale to range of 0-257 int64_t MotionSense = i << 48 | i << 32 | i << 16 | i; int Line; long LoopCtr; unsigned int Pitch = pInfo->InputPitch; unsigned char* L1; // ptr to Line1, of 3 unsigned char* L2; // ptr to Line2, the weave line unsigned char* L3; // ptr to Line3 unsigned char* L2P; // ptr to prev Line2 unsigned char* Dest = pInfo->Overlay; int64_t QW256B; int64_t LastAvg=0; //interp value from left qword i = 0xffffffff - 256; QW256B = i << 48 | i << 32 | i << 16 | i; // save a couple instr on PMINSW instruct. // copy first even line no matter what, and the first odd line if we're // processing an EVEN field. (note diff from other deint rtns.) if(InfoIsOdd) { L1 = pInfo->PictureHistory[1]->pData; L2 = pInfo->PictureHistory[0]->pData; L3 = L1 + Pitch; L2P = pInfo->PictureHistory[2]->pData; // copy first even line pInfo->pMemcpy(Dest, L1, pInfo->LineLength); Dest += pInfo->OverlayPitch; } else { L1 = pInfo->PictureHistory[1]->pData; L2 = pInfo->PictureHistory[0]->pData + Pitch; L3 = L1 + Pitch; L2P = pInfo->PictureHistory[2]->pData + Pitch; // copy first even line pInfo->pMemcpy(Dest, pInfo->PictureHistory[0]->pData, pInfo->LineLength); Dest += pInfo->OverlayPitch; // then first odd line pInfo->pMemcpy(Dest, L1, pInfo->LineLength); Dest += pInfo->OverlayPitch; } long oldbx; for (Line = 0; Line < (pInfo->FieldHeight - 1); ++Line) { LoopCtr = pInfo->LineLength / 8 - 1; // there are LineLength / 8 qwords per line but do 1 less, adj at end of loop // For ease of reading, the comments below assume that we're operating on an odd // field (i.e., that InfoIsOdd is true). Assume the obvious for even lines.. __asm__ __volatile__ ( // save ebx (-fPIC) MOVX " %%" XBX ", %[oldbx]\n\t" MOVX " %[L1], %%" XAX "\n\t" LEAX " 8(%%" XAX "), %%" XBX "\n\t" // next qword needed by DJR MOVX " %[L3], %%" XCX "\n\t" SUBX " %%" XAX ", %%" XCX "\n\t" // carry L3 addr as an offset MOVX " %[L2P], %%" XDX "\n\t" MOVX " %[L2], %%" XSI "\n\t" MOVX " %[Dest], %%" XDI "\n\t" // DL1 if Odd or DL2 if Even ".align 8\n\t" "1:\n\t" "movq (%%" XSI "), %%mm0\n\t" // L2 - the newest weave pixel value "movq (%%" XAX "), %%mm1\n\t" // L1 - the top pixel "movq (%%" XDX "), %%mm2\n\t" // L2P - the prev weave pixel "movq (%%" XAX ", %%" XCX "), %%mm3\n\t" // L3, next odd row "movq %%mm1, %%mm6\n\t" // L1 - get simple single pixel interp // pavgb mm6, mm3 // use macro below V_PAVGB ("%%mm6", "%%mm3", "%%mm4", "%[ShiftMask]") // DJR - Diagonal Jaggie Reduction // In the event that we are going to use an average (Bob) pixel we do not want a jagged // stair step effect. To combat this we avg in the 2 horizontally adjacen pixels into the // interpolated Bob mix. This will do horizontal smoothing for only the Bob'd pixels. "movq %[LastAvg], %%mm4\n\t" // the bob value from prev qword in row "movq %%mm6, %[LastAvg]\n\t" // save for next pass "psrlq $48, %%mm4\n\t" // right justify 1 pixel "movq %%mm6, %%mm7\n\t" // copy of simple bob pixel "psllq $16, %%mm7\n\t" // left justify 3 pixels "por %%mm7, %%mm4\n\t" // and combine "movq (%%" XBX "), %%mm5\n\t" // next horiz qword from L1 // pavgb mm5, qword ptr[ebx+ecx] // next horiz qword from L3, use macro below V_PAVGB ("%%mm5", "(%%" XBX ",%%" XCX ")", "%%mm7", "%[ShiftMask]") "psllq $48, %%mm5\n\t" // left just 1 pixel "movq %%mm6, %%mm7\n\t" // another copy of simple bob pixel "psrlq $16, %%mm7\n\t" // right just 3 pixels "por %%mm7, %%mm5\n\t" // combine // pavgb mm4, mm5 // avg of forward and prev by 1 pixel, use macro V_PAVGB ("%%mm4", "%%mm5", "%%mm5", "%[ShiftMask]") // mm5 gets modified if MMX // pavgb mm6, mm4 // avg of center and surround interp vals, use macro V_PAVGB ("%%mm6", "%%mm4", "%%mm7", "%[ShiftMask]") // Don't do any more averaging than needed for mmx. It hurts performance and causes rounding errors. #ifndef IS_MMX // pavgb mm4, mm6 // 1/4 center, 3/4 adjacent V_PAVGB ("%%mm4", "%%mm6", "%%mm7", "%[ShiftMask]") // pavgb mm6, mm4 // 3/8 center, 5/8 adjacent V_PAVGB ("%%mm6", "%%mm4", "%%mm7", "%[ShiftMask]") #endif // get abs value of possible L2 comb "movq %%mm6, %%mm4\n\t" // work copy of interp val "movq %%mm2, %%mm7\n\t" // L2 "psubusb %%mm4, %%mm7\n\t" // L2 - avg "movq %%mm4, %%mm5\n\t" // avg "psubusb %%mm2, %%mm5\n\t" // avg - L2 "por %%mm7, %%mm5\n\t" // abs(avg-L2) // get abs value of possible L2P comb "movq %%mm0, %%mm7\n\t" // L2P "psubusb %%mm4, %%mm7\n\t" // L2P - avg "psubusb %%mm0, %%mm4\n\t" // avg - L2P "por %%mm7, %%mm4\n\t" // abs(avg-L2P) // use L2 or L2P depending upon which makes smaller comb "psubusb %%mm5, %%mm4\n\t" // see if it goes to zero "psubusb %%mm5, %%mm5\n\t" // 0 "pcmpeqb %%mm5, %%mm4\n\t" // if (mm4=0) then FF else 0 "pcmpeqb %%mm4, %%mm5\n\t" // opposite of mm4 // if Comb(L2P) <= Comb(L2) then mm4=ff, mm5=0 else mm4=0, mm5 = 55 "pand %%mm2, %%mm5\n\t" // use L2 if mm5 == ff, else 0 "pand %%mm0, %%mm4\n\t" // use L2P if mm4 = ff, else 0 "por %%mm5, %%mm4\n\t" // may the best win // Inventory: at this point we have the following values: // mm0 = L2P (or L2) // mm1 = L1 // mm2 = L2 (or L2P) // mm3 = L3 // mm4 = the best of L2,L2P weave pixel, base upon comb // mm6 = the avg interpolated value, if we need to use it // Let's measure movement, as how much the weave pixel has changed "movq %%mm2, %%mm7\n\t" "psubusb %%mm0, %%mm2\n\t" "psubusb %%mm7, %%mm0\n\t" "por %%mm2, %%mm0\n\t" // abs value of change, used later // Now lets clip our chosen value to be not outside of the range // of the high/low range L1-L3 by more than MaxComb. // This allows some comb but limits the damages and also allows more // detail than a boring oversmoothed clip. "movq %%mm1, %%mm2\n\t" // copy L1 // pmaxub mm2, mm3 // use macro V_PMAXUB ("%%mm2", "%%mm3") // now = Max(L1,L3) "movq %%mm1, %%mm5\n\t" // copy L1 // pminub mm5, mm3 // now = Min(L1,L3), use macro V_PMINUB ("%%mm5", "%%mm3", "%%mm7") // allow the value to be above the high or below the low by amt of MaxComb "psubusb %[MaxComb], %%mm5\n\t" // lower min by diff "paddusb %[MaxComb], %%mm2\n\t" // increase max by diff // pmaxub mm4, mm5 // now = Max(best,Min(L1,L3) use macro V_PMAXUB ("%%mm4", "%%mm5") // pminub mm4, mm2 // now = Min( Max(best, Min(L1,L3), L2 )=L2 clipped V_PMINUB ("%%mm4", "%%mm2", "%%mm7") // Blend weave pixel with bob pixel, depending on motion val in mm0 "psubusb %[MotionThreshold], %%mm0\n\t"// test Threshold, clear chroma change >>>?? "pmullw %[MotionSense], %%mm0\n\t" // mul by user factor, keep low 16 bits "movq %[QW256], %%mm7\n\t" #ifdef IS_SSE "pminsw %%mm7, %%mm0\n\t" // max = 256 #else "paddusw %[QW256B], %%mm0\n\t" // add, may sat at fff.. "psubusw %[QW256B], %%mm0\n\t" // now = Min(L1,256) #endif "psubusw %%mm0, %%mm7\n\t" // so the 2 sum to 256, weighted avg "movq %%mm4, %%mm2\n\t" // save weave chroma info before trashing "pand %[YMask], %%mm4\n\t" // keep only luma from calc'd value "pmullw %%mm7, %%mm4\n\t" // use more weave for less motion "pand %[YMask], %%mm6\n\t" // keep only luma from calc'd value "pmullw %%mm0, %%mm6\n\t" // use more bob for large motion "paddusw %%mm6, %%mm4\n\t" // combine "psrlw $8, %%mm4\n\t" // div by 256 to get weighted avg // chroma comes from weave pixel "pand %[UVMask], %%mm2\n\t" // keep chroma "por %%mm4, %%mm2\n\t" // and combine V_MOVNTQ ("(%%" XDI ")", "%%mm2") // move in our clipped best, use macro // bump ptrs and loop LEAX " 8(%%" XAX "), %%" XAX "\n\t" LEAX " 8(%%" XBX "), %%" XBX "\n\t" LEAX " 8(%%" XDX "), %%" XDX "\n\t" LEAX " 8(%%" XDI "), %%" XDI "\n\t" LEAX " 8(%%" XSI "), %%" XSI "\n\t" DECX " %[LoopCtr]\n\t" "jg 1b\n\t" // loop if not to last line // note P-III default assumes backward branches taken "jl 1f\n\t" // done MOVX " %%" XAX ", %%" XBX "\n\t" // sharpness lookahead 1 byte only, be wrong on 1 "jmp 1b\n\t" "1:\n\t" MOVX " %[oldbx], %%" XBX "\n\t" : /* no outputs */ : [LastAvg] "m"(LastAvg), [L1] "m"(L1), [L3] "m"(L3), [L2P] "m"(L2P), [L2] "m"(L2), [Dest] "m"(Dest), [ShiftMask] "m"(ShiftMask), [MaxComb] "m"(MaxComb), [MotionThreshold] "m"(MotionThreshold), [MotionSense] "m"(MotionSense), [QW256B] "m"(QW256B), [YMask] "m"(YMask), [UVMask] "m"(UVMask), [LoopCtr] "m"(LoopCtr), [QW256] "m"(QW256), [oldbx] "m"(oldbx) : XAX, XCX, XDX, XSI, XDI, #ifdef ARCH_386 "st", "st(1)", "st(2)", "st(3)", "st(4)", "st(5)", "st(6)", "st(7)", #endif #ifdef __MMX__ "mm0", "mm1", "mm2", "mm3", "mm4", "mm5", "mm6", "mm7", #endif "memory", "cc" ); Dest += pInfo->OverlayPitch; pInfo->pMemcpy(Dest, L3, pInfo->LineLength); Dest += pInfo->OverlayPitch; L1 += Pitch; L2 += Pitch; L3 += Pitch; L2P += Pitch; } if (InfoIsOdd) { pInfo->pMemcpy(Dest, L2, pInfo->LineLength); } // clear out the MMX registers ready for doing floating point again #ifdef ARCH_386 __asm__ __volatile__ ("emms\n\t"); #endif } tvtime-1.0.11/plugins/x86-64_macros.inc0000664000175000017500000000424012354244126014424 00000000000000/*************************************************************************** KdetvDScalerFilter_x86-64.inc ----------------------------- begin : Thu Sep 26 2004 copyright : (C) 2004 by Dirk Ziegelmeier email : dziegel@gmx.de ***************************************************************************/ /* * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ /* * This file is copied from TVTIME's sources. * Original author: Achim Schneider */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifndef XAX #if defined (ARCH_386) #define XAX "eax" #define XBX "ebx" #define XCX "ecx" #define XDX "edx" #define XSI "esi" #define XDI "edi" #define XSP "esp" #define MOVX "movl" #define LEAX "leal" #define DECX "decl" #define PUSHX "pushl" #define POPX "popl" #define CMPX "cmpl" #define ADDX "addl" #define SHLX "shll" #define SHRX "shrl" #define SUBX "subl" #elif defined (ARCH_X86_64) #define XAX "rax" #define XBX "rbx" #define XCX "rcx" #define XDX "rdx" #define XSI "rsi" #define XDI "rdi" #define XSP "rsp" #define MOVX "movq" #define LEAX "leaq" #define DECX "decq" #define PUSHX "pushq" #define POPX "popq" #define CMPX "cmpq" #define ADDX "addq" #define SHLX "shlq" #define SHRX "shrq" #define SUBX "subq" #else #error Undefined architecture. Define either ARCH_X86 or ARCH_X86_64. #endif #endif tvtime-1.0.11/plugins/greedyh.cpp0000664000175000017500000000414112354244126013644 00000000000000/** * Copyright (C) 2004 Billy Biggs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "greedyh.h" #include "greedyhmacros.h" #define MAXCOMB_DEFAULT 5 #define MOTIONTHRESHOLD_DEFAULT 25 #define MOTIONSENSE_DEFAULT 30 class DScalerFilterGreedyH { public: DScalerFilterGreedyH() {} virtual ~DScalerFilterGreedyH() {} #define IS_SSE #define SSE_TYPE SSE #define FUNCT_NAME filterDScaler_SSE #include "greedyh.asm" #undef SSE_TYPE #undef IS_SSE #undef FUNCT_NAME #define IS_3DNOW #define FUNCT_NAME filterDScaler_3DNOW #define SSE_TYPE 3DNOW #include "greedyh.asm" #undef SSE_TYPE #undef IS_3DNOW #undef FUNCT_NAME #define IS_MMX #define SSE_TYPE MMX #define FUNCT_NAME filterDScaler_MMX #include "greedyh.asm" #undef SSE_TYPE #undef IS_MMX #undef FUNCT_NAME unsigned int GreedyMaxComb; unsigned int GreedyMotionThreshold; unsigned int GreedyMotionSense; }; static DScalerFilterGreedyH *filter; void greedyh_init( void ) { filter = new DScalerFilterGreedyH(); filter->GreedyMaxComb = MAXCOMB_DEFAULT; filter->GreedyMotionThreshold = MOTIONTHRESHOLD_DEFAULT; filter->GreedyMotionSense = MOTIONSENSE_DEFAULT; } void greedyh_filter_mmx( TDeinterlaceInfo* pInfo ) { filter->filterDScaler_MMX( pInfo ); } void greedyh_filter_3dnow( TDeinterlaceInfo* pInfo ) { filter->filterDScaler_3DNOW( pInfo ); } void greedyh_filter_sse( TDeinterlaceInfo* pInfo ) { filter->filterDScaler_SSE( pInfo ); } tvtime-1.0.11/plugins/plugins.h0000664000175000017500000000313512354244126013345 00000000000000/** * Copyright (C) 2002, 2004 Billy Biggs . * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef TVTIME_PLUGINS_H_INCLUDED #define TVTIME_PLUGINS_H_INCLUDED /** * tvtime was going to have a plugin system, but there * was never any interest in it outside of tvtime, so instead * we include all deinterlacer methods right in the tvtime * executable. */ #include deinterlace_method_t *linear_get_method( void ); deinterlace_method_t *scalerbob_get_method( void ); deinterlace_method_t *linearblend_get_method( void ); deinterlace_method_t *vfir_get_method( void ); deinterlace_method_t *dscaler_tomsmocomp_get_method( void ); deinterlace_method_t *dscaler_greedyh_get_method( void ); deinterlace_method_t *greedy_get_method( void ); deinterlace_method_t *weave_get_method( void ); deinterlace_method_t *weavetff_get_method( void ); deinterlace_method_t *weavebff_get_method( void ); #endif /* TVTIME_PLUGINS_H_INCLUDED */ tvtime-1.0.11/configure.ac0000664000175000017500000001771613026502656012334 00000000000000# Process this file with autoconf to produce a configure script. AC_PREREQ(2.52) AC_INIT(tvtime, 1.0.11, http://linuxtv.org/) AC_CONFIG_SRCDIR([src/tvtime.c]) AM_INIT_AUTOMAKE([foreign subdir-objects]) AM_CONFIG_HEADER(config.h) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AM_MAINTAINER_MODE AC_CANONICAL_HOST AC_CONFIG_MACRO_DIR([m4]) if test x"$host_alias" = x""; then host_alias="$host"; fi # Check for compilers. AC_PROG_CC AM_PROG_CC_C_O AC_CHECK_PROG(found_cc, "$CC", yes, no) test "x$found_cc" = "xyes" || exit 1 AC_PROG_CXX AC_CHECK_PROG(found_cxx, "$CXX", yes, no) test "x$found_cxx" = "xyes" || exit 1 # Check for libtool. AC_PROG_LIBTOOL # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([ctype.h dirent.h errno.h fcntl.h getopt.h langinfo.h math.h netinet/in.h pwd.h signal.h stdint.h stdio.h stdlib.h string.h sys/ioctl.h sys/mman.h sys/resource.h sys/stat.h sys/time.h sys/wait.h sys/types.h unistd.h wordexp.h locale.h]) AC_CHECK_HEADER([linux/videodev2.h], [], AC_MSG_ERROR(linux/videodev2.h not found)) # Checks for typedefs, structures, and compiler characteristics. AC_HEADER_TIME # Checks for library functions. AC_PROG_GCC_TRADITIONAL AC_FUNC_MMAP AC_CHECK_FUNCS([asprintf atexit fork execlp getopt_long getpriority gettimeofday seteuid memset setreuid setpriority signal sigemptyset sigaction strerror vsscanf wordexp wordfree]) # Check for gettext AM_GNU_GETTEXT_VERSION AM_GNU_GETTEXT dnl --------------------------------------------- dnl zlib dnl --------------------------------------------- dnl Test for libz AC_CHECK_LIB(z, gzsetparams, [ AC_CHECK_HEADER(zlib.h, have_zlib=yes ZLIB_LIBS="-lz",)], AC_MSG_ERROR(zlib needed)) AM_CONDITIONAL(HAVE_ZLIB, [test x"$have_zlib" = "xyes"]) AC_SUBST(ZLIB_LIBS) dnl --------------------------------------------- dnl libpng dnl --------------------------------------------- dnl Test for libpng AC_CHECK_LIB(png, png_read_png, [ AC_CHECK_HEADER(png.h, have_libpng=yes PNG_LIBS="-lpng $ZLIB_LIBS -lm",)], AC_MSG_ERROR(libpng needed), "$ZLIB_LIBS" -lm) AM_CONDITIONAL(HAVE_LIBPNG, [test x"$have_libpng" = "xyes"]) AC_SUBST(PNG_LIBS) dnl --------------------------------------------- dnl freetype dnl --------------------------------------------- dnl Test for freetype AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no) if test "$FREETYPE_CONFIG" = "no" ; then AC_MSG_ERROR(freetype2 needed and freetype-config not found) fi dnl --------------------------------------------- dnl libxml2 dnl --------------------------------------------- dnl Test for libxml2 AC_PATH_PROG(LIBXML2_CONFIG,xml2-config,no) if test "$LIBXML2_CONFIG" = "no" ; then AC_MSG_ERROR(libxml2 needed and xml2-config not found) else XML2_LIBS="`$LIBXML2_CONFIG --libs`" XML2_FLAG="`$LIBXML2_CONFIG --cflags`" AC_DEFINE(HAVE_LIBXML2,,[LIBXML2 support]) fi AC_SUBST(XML2_LIBS) AC_SUBST(XML2_FLAG) dnl --------------------------------------------- dnl libasound2 dnl --------------------------------------------- dnl Test for ALSA AM_PATH_ALSA(1.0.9, [ AC_DEFINE(HAVE_ALSA,1,[Define this if you have Alsa (libasound) installed]) ], AC_MSG_RESULT(libasound needed and not found)) AM_CONDITIONAL(HAVE_ALSA, test x"$no_alsa" != "yes") dnl --------------------------------------------- dnl asound dnl --------------------------------------------- dnl Test for libasound AC_CHECK_LIB(asound, snd_pcm_open, [ AC_CHECK_HEADER(alsa/asoundlib.h, have_asound=yes ASOUND_LIBS="-lasound",)], AC_MSG_ERROR(asound needed)) AM_CONDITIONAL(HAVE_ASOUND, [test x"$have_asound" = "xyes"]) AC_SUBST(ASOUND_LIBS) dnl --------------------------------------------- dnl check for gtk+-2.0 dnl --------------------------------------------- dnl PKG_CHECK_MODULES(GTK, gtk+-2.0) dnl AC_SUBST(GTK_CFLAGS) dnl AC_SUBST(GTK_LIBS) dnl --------------------------------------------- dnl check for X11, Xv and XF86VidModeExtension dnl --------------------------------------------- AC_PATH_XTRA AC_ARG_WITH([xinerama], [AS_HELP_STRING([--without-xinerama], [Disable Xinerama extension support (default: check)])]) if test x"$no_x" != x"yes"; then dnl check for Xshm AC_CHECK_LIB([Xext],[XShmCreateImage], [AC_DEFINE([HAVE_X11],,[X11 support]) X11_CFLAGS="$X_CFLAGS" X11_LIBS="$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS -lXext" dnl check for Xv AC_CHECK_LIB([Xv],[XvShmCreateImage], [AC_DEFINE([HAVE_XV],,[Xv support]) X11_LIBS="$X11_LIBS -lXv"],, [$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS -lXext]) if test "x$with_xinerama" != "xno"; then dnl check for Xinerama AC_CHECK_LIB([Xinerama],[XineramaQueryScreens], [AC_DEFINE([HAVE_XINERAMA],,[Xinerama support]) X11_LIBS="$X11_LIBS -lXinerama"],, [$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS -lXext]) fi dnl check for XSs AC_CHECK_LIB([Xss],[XScreenSaverSuspend], [AC_DEFINE([HAVE_XSSEXTENSION],,[XSs support]) X11_LIBS="$X11_LIBS -lXss"],, [$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS -lXext]) dnl check for Xvidmode AC_CHECK_LIB([Xxf86vm],[XF86VidModeGetModeLine], [AC_DEFINE([HAVE_XF86VIDMODE],,[XF86VidModeExtension support]) X11_LIBS="$X11_LIBS -lXxf86vm"],, [$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS -lXext])],, [$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS]) else AC_MSG_ERROR(X needed and no X libraries or development headers found) fi AC_SUBST(X11_CFLAGS) AC_SUBST(X11_LIBS) dnl This stuff looked kinda cool in the mpeg2dec source tree. dnl GCC-specific flags if test x"$GCC" = x"yes"; then dnl -Wall -Werror moved to the end to not disturb the configure script dnl -O3 changequote(<<,>>) OPT_CFLAGS=`echo "$CFLAGS"|sed "s/-O[0-9]*//g;"` changequote([,]) OPT_CFLAGS="$OPT_CFLAGS -O3" AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS]) dnl -fomit-frame-pointer OPT_CFLAGS="$CFLAGS -fomit-frame-pointer" AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS]) dnl -std=gnu99 OPT_CFLAGS="$CFLAGS -std=gnu99" AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS]) dnl arch-specific flags case "$host_alias" in i?86-* | k?-*) AC_DEFINE([ARCH_X86],,[x86 architecture]) AC_DEFINE([ARCH_386],,[386 architecture]) ARCH_X86=yes ARCH_386=yes OPT_CFLAGS="$CFLAGS" AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS]);; x86_64-*) AC_DEFINE([ARCH_X86],,[x86 architecture]) AC_DEFINE([ARCH_X86_64],,[x86_64 architecture]) ARCH_X86=yes ARCH_X86_64=yes;; ppc-* | powerpc-*) OPT_CFLAGS="$CFLAGS -Wa,-m7400" AC_TRY_CFLAGS([$OPT_CFLAGS], [CFLAGS=$OPT_CFLAGS; AC_DEFINE([ARCH_PPC],,[ppc architecture])]);; sparc-* | sparc64-*) OPT_CFLAGS="$CFLAGS -mcpu=ultrasparc -mvis -Wa,-Av9" AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS]);; mips-sgi-irix6.*) dnl do we need to be that specific ? OPT_CFLAGS="$CFLAGS -mabi=64" AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS]);; esac elif test x"$CC" = x"tcc"; then dnl TenDRA portability checking compiler CFLAGS="-Xp -Yansi -f`pwd`/include/tendra.h" enable_mlib=no no_x=yes enable_sdl=no else dnl non-gcc flags - we probably need exact configuration triplets here. case "$host_alias" in mips-sgi-irix6.*) OPT_CFLAGS="$CFLAGS -64" AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS]);; sparc-sun-solaris*) OPT_CFLAGS="$CFLAGS -xCC -fast -xO5" AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS]);; esac fi AM_CONDITIONAL(ARCH_X86, [test "$ARCH_X86" = "yes"]) AM_CONDITIONAL(ARCH_386, [test "$ARCH_386" = "yes"]) AM_CONDITIONAL(ARCH_X86_64, [test "$ARCH_X86_64" = "yes"]) dnl Checks for library functions. AC_CHECK_FUNCS([memalign]) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_C_INLINE AC_TYPE_SIZE_T AC_C_BIGENDIAN AC_C_ATTRIBUTE_ALIGNED AC_CONFIG_FILES([ Makefile docs/Makefile data/Makefile plugins/Makefile src/Makefile intl/Makefile po/Makefile.in m4/Makefile docs/man/Makefile docs/man/de/Makefile docs/man/en/Makefile docs/man/es/Makefile ]) AC_OUTPUT tvtime-1.0.11/mkinstalldirs0000755000175000017500000000672213026503063012636 00000000000000#! /bin/sh # mkinstalldirs --- make directory hierarchy scriptversion=2009-04-28.21; # UTC # Original author: Noah Friedman # Created: 1993-05-16 # Public domain. # # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' IFS=" "" $nl" errstatus=0 dirmode= usage="\ Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ... Create each directory DIR (with mode MODE, if specified), including all leading file name components. Report bugs to ." # process command line arguments while test $# -gt 0 ; do case $1 in -h | --help | --h*) # -h for help echo "$usage" exit $? ;; -m) # -m PERM arg shift test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } dirmode=$1 shift ;; --version) echo "$0 $scriptversion" exit $? ;; --) # stop option processing shift break ;; -*) # unknown option echo "$usage" 1>&2 exit 1 ;; *) # first non-opt arg break ;; esac done for file do if test -d "$file"; then shift else break fi done case $# in 0) exit 0 ;; esac # Solaris 8's mkdir -p isn't thread-safe. If you mkdir -p a/b and # mkdir -p a/c at the same time, both will detect that a is missing, # one will create a, then the other will try to create a and die with # a "File exists" error. This is a problem when calling mkinstalldirs # from a parallel make. We use --version in the probe to restrict # ourselves to GNU mkdir, which is thread-safe. case $dirmode in '') if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then echo "mkdir -p -- $*" exec mkdir -p -- "$@" else # On NextStep and OpenStep, the 'mkdir' command does not # recognize any option. It will interpret all options as # directories to create, and then abort because '.' already # exists. test -d ./-p && rmdir ./-p test -d ./--version && rmdir ./--version fi ;; *) if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 && test ! -d ./--version; then echo "mkdir -m $dirmode -p -- $*" exec mkdir -m "$dirmode" -p -- "$@" else # Clean up after NextStep and OpenStep mkdir. for d in ./-m ./-p ./--version "./$dirmode"; do test -d $d && rmdir $d done fi ;; esac for file do case $file in /*) pathcomp=/ ;; *) pathcomp= ;; esac oIFS=$IFS IFS=/ set fnord $file shift IFS=$oIFS for d do test "x$d" = x && continue pathcomp=$pathcomp$d case $pathcomp in -*) pathcomp=./$pathcomp ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" mkdir "$pathcomp" || lasterr=$? if test ! -d "$pathcomp"; then errstatus=$lasterr else if test ! -z "$dirmode"; then echo "chmod $dirmode $pathcomp" lasterr= chmod "$dirmode" "$pathcomp" || lasterr=$? if test ! -z "$lasterr"; then errstatus=$lasterr fi fi fi fi pathcomp=$pathcomp/ done done exit $errstatus # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: tvtime-1.0.11/acinclude.m40000664000175000017500000000631312354244126012224 00000000000000dnl acinclude.m4 are M4 macros used to generate aclocal.m4 dnl Copyright (C) 2002, 2003 Billy Biggs dnl dnl This program is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by dnl the Free Software Foundation; either version 2 of the License, or (at dnl your option) any later version. dnl dnl This program is distributed in the hope that it will be useful, but dnl WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU dnl General Public License for more details. dnl dnl You should have received a copy of the GNU General Public License dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. dnl AC_C_ATTRIBUTE_ALIGNED dnl define ATTRIBUTE_ALIGNED_MAX to the maximum alignment if this is supported AC_DEFUN([AC_C_ATTRIBUTE_ALIGNED], [AC_CACHE_CHECK([__attribute__ ((aligned ())) support], [ac_cv_c_attribute_aligned], [ac_cv_c_attribute_aligned=0 for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do AC_TRY_COMPILE([], [static char c __attribute__ ((aligned($ac_cv_c_attr_align_try))) = 0; return c;], [ac_cv_c_attribute_aligned=$ac_cv_c_attr_align_try]) done]) if test x"$ac_cv_c_attribute_aligned" != x"0"; then AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX], [$ac_cv_c_attribute_aligned],[maximum supported data alignment]) fi]) dnl AC_TRY_CFLAGS (CFLAGS, [ACTION-IF-WORKS], [ACTION-IF-FAILS]) dnl check if $CC supports a given set of cflags AC_DEFUN([AC_TRY_CFLAGS], [AC_MSG_CHECKING([if $CC supports $1 flags]) SAVE_CFLAGS="$CFLAGS" CFLAGS="$1" AC_TRY_COMPILE([],[],[ac_cv_try_cflags_ok=yes],[ac_cv_try_cflags_ok=no]) CFLAGS="$SAVE_CFLAGS" AC_MSG_RESULT([$ac_cv_try_cflags_ok]) if test x"$ac_cv_try_cflags_ok" = x"yes"; then ifelse([$2],[],[:],[$2]) else ifelse([$3],[],[:],[$3]) fi]) dnl AC_CHECK_GENERATE_INTTYPES_H (INCLUDE-DIRECTORY) dnl generate a default inttypes.h if the header file does not exist already AC_DEFUN([AC_CHECK_GENERATE_INTTYPES], [AC_CHECK_HEADER([inttypes.h],[], [AC_COMPILE_CHECK_SIZEOF([char],[1]) AC_COMPILE_CHECK_SIZEOF([short],[2]) AC_COMPILE_CHECK_SIZEOF([int],[4]) AC_COMPILE_CHECK_SIZEOF([long long],[8]) cat >$1/inttypes.h << EOF #ifndef _INTTYPES_H #define _INTTYPES_H /* default inttypes.h for people who do not have it on their system */ #if (!defined __int8_t_defined) && (!defined __BIT_TYPES_DEFINED__) #define __int8_t_defined typedef signed char int8_t; typedef signed short int16_t; typedef signed int int32_t; #ifdef ARCH_X86 typedef signed long long int64_t; #endif #endif #if (!defined _LINUX_TYPES_H) typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; #ifdef ARCH_X86 typedef unsigned long long uint64_t; #endif #endif #endif EOF ])]) dnl AC_COMPILE_CHECK_SIZEOF (TYPE SUPPOSED-SIZE) dnl abort if the given type does not have the supposed size AC_DEFUN([AC_COMPILE_CHECK_SIZEOF], [AC_MSG_CHECKING(that size of $1 is $2) AC_TRY_COMPILE([],[switch (0) case 0: case (sizeof ($1) == $2):;],[], [AC_MSG_ERROR([can not build a default inttypes.h])]) AC_MSG_RESULT([yes])]) tvtime-1.0.11/NEWS0000664000175000017500000002515013026502644010531 00000000000000News for 1.0.11 * Using tvtime over ssh now works without setting an environment var * Fix crash when no v4l capture devices are found * Fix rdtsc on x86_64 * Fix asm code in cpuid() clobering the upp News for 1.0.10 * No code changes * Added translations for Ukranian and Slovak * Updated pt and pt_BR translations News for 1.0.9 * Added yuv planar formats to work with Wayland * Fixed compilation issues with gcc6 * Improved audio/mixer and ALSA streaming logic * Added logic to autodetect the associated ALSA device * Make it adehent with newer freedesktop.org standards * Added Catalan translation * pt-BR and es translation updated News for 1.0.8 * Change translation man pages and messages to use UTF-8 News for 1.0.7 * Fix warning about Makefiles ignoring the --datarootdir parameter * Remove unused functions * Safely assume C89 semantics and make RETSIGTYPE void * Replace deprecated function XKeycodeToKeysym with XkbKeycodeToKeysym * Add gitignore to plugins directory * Link to libsupc++ instead of bringing in libstdc++. * Actually call function * Set subdir-objects automake option * Revert "Set subdir-objects option for automake" * Set automake flavour to foreign * Set subdir-objects option for automake * Revert accidental replacement of INSTALL file * Turn automake silent by default * Fix bashisms in boostrap * Remove unused safetytime variable * Remove embedded Debian packaging directory News for 1.0.6 * Change alsa mixer from default/Line to default/Master * Fix the mixer error message when channel is not available News for 1.0.5 * Fix tvtime-scanner crash with home unset * Fix input select condition * pt_BR: Update a few Brazilian Portuguese translations * mkinstalldirs: update to work with newer versions of autoconf * Don't block indefinitely waiting for frames * Accept arbritary height resolution * Use videoinput_get_norm_height() to detect 60Hz based standards * Don't require VIDIOC_*_INPUT support * Improve error message about invalid framesize * Add proper credits to Debian package and Philipp Hahn * Add an option to disable the borders * Fix two warnings when autoreconf is called * Fix a few issues requested by libtool stuff News for 1.0.4 * Fix portuguese translation. * Add a parameter to enable borderless mode. * Fix XScreenSaver extension check. * Fix the invisible cursor not being invisible due to using uninitialized memory. * Fix setting the window icon on 64-bit systems. * Some updates to tvtime.desktop, see gentoo bug #308297 * Initialize coords when going fullscreen, see redhat bug #235622. * Remove unused and obsolete metacity check. * Add latvian translation. * Import translation updates for french, portuguese and russian from the debian package. * Change right mouse button while in menu to leave menu. * Leave volume muted when decreasing volume, this way if the volume is accidentally way too loud, you can mute and decrease without it coming back on. * Don't try to implement focus follows mouse mode for just our window, that's up to the window manager. * Fix check for PIC define in cpuaccel, see gentoo bug #74227 * Import patch from gentoo to make xinerama optional at configure time. * Remove the bundled videodev*.h headers. * Apply patch from #1398391 Set the memory field when calling VIDIOC_DQBUF ioctl. * Fix crash on "tvtime-command set_input_width 720", patch from sf tracker. * Add zlib.h include since libpng doesn't bring it in in 1.5. * Rename struct typedef from reserved locale_t to xmltv_locale. * Import C++ fixes for tomsmocomp so it compiles with gcc 4.1+. * Fix documentation to say MENU_ENTER/BACK instead of RIGHT/LEFT. * Import some formatting fixes for the manpages from the debian package. News for 1.0.3 * V4L1 removal * Alsa streaming support * Compilation fixes, patch backports from other places * More generic VBI handling News for 1.0.2 * Add back the missing translations from the 1.0.1 release. * Allow key bindings to map to noop to disable keys. News for 1.0.1 * Minor updates that were intended for the 1.0 release. News for 1.0 * The cx88 driver cannot detect the PAL audio mode (BG/DK/I), and attempts to reverse engineer the Windows driver have failed. tvtime now allows users to select between BG/DK/I mode in the UI to help work around this driver limitation. * By default, tvtime now assumes that pixels are square. This avoids problems with many misconfigured X servers. News for 0.99 * Test release for 1.0. * Major bugfixes and cleanup. News for 0.9.15 * Compile fixes. News for 0.9.14 * Improved the usability of the menu system when using a mouse. * Fixed some problems with Xinerama and fullscreen. * Streamlined the default set of key bindings. * Show an icon in modern window list applications. * Fixed colour problems for DVB driver users. * Changed the default process priority to -10 instead of -19. * Fixed compile problems with new gcc versions. News for 0.9.13 * Added support for changing the default language read from XMLTV. * Added support for PAL-BG/DK audio mode switching. * Added an audio boost setting for controlling capture card volume. * Fixed a bunch of critical bugs. * Removed the SDL, MGA, and DirectFB output drivers. * Removed the unfinished MPEG2 support and the unreleased recording application 'rvr'. News for 0.9.12 * Minor bugfixes from 0.9.11. News for 0.9.11 * Fixed gettext to initialize properly. * Improved our XMLTV on-screen-display. * Display the upcoming show name from XMLTV. * Changed fifodir back to /tmp. * Lots of documentation improvements. * Fixed lots of bugs. News for 0.9.10 * Added program listings using XMLTV. Use with --xmltv=filename. * Added commands for chroma kill, sleep timer, and enabling or disabling signal detection. * Added the matte mode setting to the menu. * Added a DirectFB output layer by Ville Syrjala. * Significantly lowered the size of the tvtime helper executables. * Various menu system cleanups. * Fixed a ton of bugs. News for 0.9.9 * Added a full menu system for configuring tvtime. * Simplified deinterlacer names and provide online help for them. * Unified OSD appearance across all television standards. * Support for saving picture settings both globally and per-channel. * Finetune settings saved per-channel. * Support for the V4L2 DVB driver and bttv9 for PAL-60 support. * Added a channel scanner application 'tvtime-scanner' that outputs to the 'Custom' frequency table. * Native support for UYVY input from the rivatv driver. * Removed lirc support in favour of using tvtime-command. * Fixed remaining screensaver, Xinerama and fullscreen issues. * Many other new features and bugfixes. News for 0.9.8.5 * Some root safety improvements. * Added support for long-format command line arguments. * Added config file options to set startup window position. * Compile fixes for non-C99 compilers and older DirectFB versions. News for 0.9.8.4 * Fixed to work with metacity in RH 8.0. News for 0.9.8.3 * Support for norm switching between "compatible" norms for areas which receive both SECAM and PAL format stations. * Added support for the mga_vid driver for the Matrox G200/G400 series cards from mplayer. * Semi-experimental of the X code for better fullscreen support under many window managers. Testing appreciated. * Support for changing the mixer device and channel (see 'man tvtime' and the config file documentation). * Slightly less partial experimental UTF-8 support. Now works with any simple left-to-right scripts which are in FreeSansBold.ttf . News for 0.9.8.2 * Fixed to compile on older gcc versions (blame pv2b). News for 0.9.8.1 * Alot of minor bugfixes. * Partial EXPERIMENTAL UTF-8 support. Only works with UTF-8 characters that are also in ISO-8859-1 (Latin-1). News for 0.9.8 Users of tvtime 0.9.7: The default key bindings and configuration file format have significantly changed in this release of tvtime. Please see the documentation for details on using tvtime 0.9.8. Also, some command line options have changed or become unavailable (no more -w, use -H instead). Please consult the tvtime man page. * New XML config file format for both the tvtime configuration, and the station list. * tvtime now has two distinct half-framerate modes: top-field-first frames, and bottom-field-first frames. This helps with manually deinterlacing 2-2 pulldown or progressive content. * Added support for preset 'modes', which can set the deinterlacer, window size, fullscreen setting and framerate mode. * Added support for custom frequencies in the stationlist.xml file, and a runtime command to add a new station from the current fine-tuning settings. * Added some DScaler DLLs and a wine layer to load these deinterlacer plugins directly without porting to Linux. This gives us the following new deinterlacers: GreedyH DScaler: Greedy - High Motion Greedy2Frame DScaler: Greedy - 2-frame TwoFrame DScaler: TwoFrame TomsMoComp DScaler: TomsMoComp VideoBob DScaler: Video Bob VideoWeave DScaler: Video Weave We had our own ports of videobob, twoframe, and greedy2frame, but they were found to be buggy. Our ports are currently disabled. * Added the ffmpeg vertical deinterlacer filter. * Support for multiple audio channels (stereo, mono, lang1, lang2). * Included a bunch of fixes for PAL-M support. * Added a slave mode for freevo integration. * Various speedups, quality improvements, and bugfixes. News for 0.9.7 * Moved config files into a new config file directory ~/.tvtime * Reworked the frequency tables, merging europe-cable, europe-west, europe-east all into 'europe'. Added the 'russia' frequency table. * Added a channel scanner. F10 walks through the channel list and disables inactive channels. * Added the 'XVideo Bob' deinterlacer filter. * Added lirc support. * Added the overscan feature. * Added hardware support webpage. * Added a half-framerate mode ('=' to activate it). * Fixed alot of bug reports. News for 0.9.6 * We updated the tuner frequencies, please make sure you're up to date with our naming. * We added alot of keymaps, so we also changed some of the default keys! * tvtime now shows a blue screen if the tuner reports no signal. Please let me know if this exposes any problems. tvtime-1.0.11/data/0000775000175000017500000000000013026503655011023 500000000000000tvtime-1.0.11/data/FreeMonoBold.sfd0000664000175000017500000330623712354244126013770 00000000000000SplineFontDB: 1.0 FontName: FreeMonoBold FullName: Free Monospaced Bold FamilyName: FreeMono Weight: Bold Copyright: Copyleft 2002 Free Software Foundation. Version: $Revision$ ItalicAngle: 0 UnderlinePosition: -100 UnderlineWidth: 50 Ascent: 800 Descent: 200 NeedsXUIDChange: 1 FSType: 0 PfmFamily: 49 TTFWeight: 700 TTFWidth: 5 Panose: 2 7 6 9 2 2 5 2 4 4 LineGap: 90 VLineGap: 0 LangName: 1027 "" "" "Negreta" "" "Free Mono Negreta" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1029 "" "" "tu+AQ0A-n+AOkA" "" "Free Mono New tu+AQ0A-n+AOkA" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1030 "" "" "fed" "" "Free Mono fed" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1031 "" "" "Fett" "" "Free Mono Fett" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1032 "" "" "+A4gDvQPEA78DvQOx" "" "Free Mono +A4gDvQPEA78DvQOx" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1033 "" "" "" "" "" "" "" "" "" "" "" "" "" "The use of this font is granted subject to GNU General Public License." "http://www.gnu.org/copyleft/gpl.html" "" "" "" "" "The quick brown fox jumps over the lazy dog." LangName: 1034 "" "" "Negrita" "" "Free Mono Negrita" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1035 "" "" "Lihavoitu" "" "Free Mono Lihavoitu" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1036 "" "" "Gras" "" "Free Mono Gras" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1038 "" "" "F+AOkA-lk+APYA-v+AOkA-r" "" "Free Mono F+AOkA-lk+APYA-v+AOkA-r" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1040 "" "" "Grassetto" "" "Free Mono Grassetto" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1043 "" "" "Vet" "" "Free Mono Vet" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1044 "" "" "Halvfet" "" "Free Mono Halvfet" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1045 "" "" "Pogrubiony" "" "Free Mono Pogrubiony" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1046 "" "" "Negrito" "" "Free Mono Negrito" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1049 "" "" "+BB8EPgQ7BEMENgQ4BEAEPQRLBDkA" "" "Free Mono +BB8EPgQ7BEMENgQ4BEAEPQRLBDkA" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1051 "" "" "Tu+AQ0A-n+AOkA" "" "Free Mono Tu+AQ0A-n+AOkA" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1053 "" "" "Fet" "" "Free Mono Fet" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1055 "" "" "Kal+ATEA-n" "" "Free Mono Kal+ATEA-n" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1060 "" "" "polkrepko" "" "" "" "" "" "" "" "" "" "" "Dovoljena je uporaba v skladu z licenco GNU General Public License." "http://www.gnu.org/copyleft/gpl.html" "" "" "" "" "+AWAA-erif bo za vajo spet kuhal doma+AQ0A-e +AX4A-gance." LangName: 1066 "" "" "+AREA4gMj-m" "" "Free Mono +AREA4gMj-m" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 1069 "" "" "Lodia" "" "Free Mono Lodia" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 2058 "" "" "Negrita" "" "Free Mono Negrita" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 2070 "" "" "Negrito" "" "Free Mono Negrito" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 3082 "" "" "Negrita" "" "Free Mono Negrita" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" LangName: 3084 "" "" "Gras" "" "Free Mono Gras" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html" Encoding: unicode DisplaySize: -36 AntiAlias: 1 BeginPrivate: 8 UniqueID 7 5020946 BlueValues 31 [-20 0 437 457 583 603 623 643] BlueScale 8 0.039625 StdHW 5 [101] StdVW 5 [101] StemSnapH 8 [93 101] StemSnapV 5 [101] ForceBold 5 false EndPrivate BeginChars: 65536 1485 StartChar: space Encoding: 32 32 Width: 600 Flags: W EndChar StartChar: exclam Encoding: 33 33 Width: 600 Flags: HMW HStem: -15 20 Fore 379 525 m 1 350 228 l 2 347 197 329 179 301 179 c 0 273 179 254 198 251 228 c 2 222 525 l 1 221 537 220 551 220 558 c 0 220 604 254 638 301 638 c 0 347 638 381 604 381 558 c 0 381 552 380 538 379 525 c 1 309 -15 m 2 292 -15 l 2 255 -15 225 15 225 51 c 0 225 87 255 117 292 117 c 2 309 117 l 2 346 117 375 88 375 51 c 0 375 14 346 -15 309 -15 c 2 EndSplineSet EndChar StartChar: quotedbl Encoding: 34 34 Width: 600 Flags: HMW HStem: 582 20<136 264 264 264 336 464 464 464> Fore 136 602 m 1 264 602 l 1 233 348 l 1 229 322 221 312 201 312 c 0 182 312 173 322 170 347 c 1 136 602 l 1 336 602 m 1 464 602 l 1 433 348 l 1 429 322 421 312 401 312 c 0 382 312 373 322 370 347 c 1 336 602 l 1 EndSplineSet EndChar StartChar: numbersign Encoding: 35 35 Width: 600 Flags: HMW HStem: 139 99<128 154 261 326 432 451 451 452> 344 100<149 168 276 340 447 472> Fore 447 444 m 1 472 444 l 2 499 444 507 442 517 435 c 0 530 425 538 410 538 394 c 0 538 377 529 360 514 351 c 0 505 346 496 344 472 344 c 2 440 344 l 1 432 238 l 1 451 238 l 2 478 238 488 236 497 229 c 0 510 219 518 204 518 188 c 0 518 171 509 155 494 146 c 0 485 141 475 139 452 139 c 2 425 139 l 1 414 -29 l 2 413 -44 406 -67 401 -73 c 0 391 -85 376 -92 362 -92 c 0 335 -92 311 -67 313 -41 c 1 315 -22 l 1 326 139 l 1 254 139 l 1 242 -29 l 1 242 -70 225 -92 192 -92 c 0 163 -92 142 -70 142 -40 c 0 142 -36 142 -29 143 -22 c 1 154 139 l 1 128 139 l 2 103 139 93 141 83 148 c 0 70 158 62 173 62 189 c 0 62 205 71 222 86 231 c 0 95 237 102 238 128 238 c 2 161 238 l 1 168 344 l 1 149 344 l 2 122 344 113 346 103 353 c 0 90 363 82 379 82 394 c 0 82 411 91 428 106 437 c 0 115 443 122 444 149 444 c 2 175 444 l 1 187 612 l 1 188 638 190 645 198 656 c 0 208 668 223 675 238 675 c 0 267 675 289 651 288 623 c 1 287 605 l 1 276 444 l 1 347 444 l 1 359 612 l 1 360 640 362 646 370 656 c 0 380 668 395 675 410 675 c 0 436 675 462 650 460 627 c 2 458 605 l 1 447 444 l 1 340 344 m 1 269 344 l 1 261 238 l 1 333 238 l 1 340 344 l 1 EndSplineSet EndChar StartChar: dollar Encoding: 36 36 Width: 600 Flags: HMW HStem: -123 247<293.5 309.5> 417 20 495 189<294 310.5> VStem: 107 104<419.5 451.5> 252 99<-56 27 592 618> 413 104<178.5 217.5> Fore 351 618 m 2 351 592 l 1 362 590 367 590 375 588 c 0 380 587 386 585 395 582 c 2 409 577 l 2 410 576 414 575 418 574 c 1 429 579 437 581 446 581 c 0 473 581 492 563 495 536 c 0 496 528 496 524 496 515 c 2 496 483 l 2 496 457 494 447 487 438 c 0 477 424 462 417 446 417 c 0 419 417 400 432 394 459 c 0 391 478 351 495 310 495 c 0 250 495 211 470 211 433 c 0 211 406 235 387 286 377 c 2 351 363 l 2 413 350 449 334 475 308 c 0 502 281 517 242 517 199 c 0 517 112 455 47 351 27 c 1 351 -56 l 2 351 -84 350 -92 342 -102 c 0 332 -115 317 -123 302 -123 c 0 285 -123 268 -114 259 -99 c 0 253 -90 252 -81 252 -56 c 2 252 27 l 1 210 36 205 38 173 52 c 1 157 38 148 34 134 34 c 0 116 34 100 43 90 58 c 0 85 67 83 76 83 101 c 2 83 162 l 2 83 189 85 198 92 208 c 0 102 221 117 229 133 229 c 0 146 229 160 223 169 215 c 1 176 207 176 207 184 180 c 0 192 149 245 124 300 124 c 0 365 124 413 157 413 200 c 0 413 235 389 254 333 265 c 2 259 280 l 2 160 300 107 354 107 435 c 0 107 513 166 577 252 592 c 1 252 618 l 2 252 645 254 653 261 664 c 1 271 676 286 684 302 684 c 0 319 684 335 675 344 660 c 0 350 651 351 644 351 618 c 2 EndSplineSet EndChar StartChar: percent Encoding: 37 37 Width: 600 Flags: HMW HStem: -15 65<348.5 389> 199 65<348 389> 338 65<208 248.5> 552 65<208 249> VStem: 89 65<457.5 498> 229 65<104.5 145> 303 65<457 498> 443 65<104 145> Fore 228 617 m 0 307 617 368 555 368 476 c 0 368 401 305 338 229 338 c 0 152 338 89 401 89 478 c 0 89 554 152 617 228 617 c 0 228 552 m 0 188 552 154 518 154 478 c 0 154 437 188 403 228 403 c 0 269 403 303 437 303 477 c 0 303 519 270 552 228 552 c 0 491 331 m 1 129 213 l 2 122 211 113 209 109 209 c 0 94 209 80 224 80 241 c 0 80 257 88 265 110 272 c 2 472 390 l 2 484 394 486 394 492 394 c 0 507 394 521 379 521 362 c 0 521 346 513 337 491 331 c 1 368 264 m 0 447 264 508 202 508 123 c 0 508 48 445 -15 368 -15 c 0 292 -15 229 48 229 125 c 0 229 201 292 264 368 264 c 0 368 199 m 0 328 199 294 165 294 125 c 0 294 84 328 50 369 50 c 0 409 50 443 84 443 124 c 0 443 166 410 199 368 199 c 0 EndSplineSet EndChar StartChar: ampersand Encoding: 38 38 Width: 600 Flags: W HStem: -14 100<237 267> 0 100<435 463> 0 280<388 434> 450 100<283 299> VStem: 75 100<131.728 146> 137 100<398 402> DStem: 228 220 265 343 312 100 365 198 Fore 365 198 m 1 388 280 l 1 441 280 l 2 468 280 477 278 487 270 c 0 500 260 507 246 507 229 c 0 507 203 488 182 464 180 c 1 453 139 446 121 434 100 c 1 442 100 l 2 469 100 477 98 487 91 c 0 500 81 508 66 508 50 c 0 508 33 499 16 484 7 c 0 476 2 463 0 442 0 c 2 381 0 l 1 370 15 l 1 340 -6 310 -14 257 -14 c 0 147 -14 75 48 75 144 c 0 75 211 109 267 171 303 c 1 144 349 137 368 137 399 c 0 137 480 208 550 289 550 c 0 313 550 333 545 359 533 c 1 371 537 380 540 387 540 c 0 412 540 435 515 435 490 c 0 435 467 426 456 394 438 c 2 353 416 l 1 324 442 310 450 290 450 c 0 261 450 237 428 237 400 c 0 237 389 246 370 265 343 c 2 365 198 l 1 312 100 m 1 228 220 l 1 193 204 175 177 175 144 c 0 175 105 202 86 257 86 c 0 282 86 293 89 312 100 c 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: quotesingle Encoding: 39 39 Width: 600 Flags: HMW HStem: 582 20<236 364 364 364> Fore 236 602 m 1 364 602 l 1 333 348 l 1 329 322 321 312 301 312 c 0 282 312 273 322 270 347 c 1 236 602 l 1 EndSplineSet EndChar StartChar: parenleft Encoding: 40 40 Width: 600 Flags: HMW VStem: 264 111<189 290.5> Fore 437 632 m 0 466 632 488 610 488 583 c 0 488 571 486 565 476 549 c 0 406 437 375 341 375 240 c 0 375 138 407 42 476 -70 c 0 486 -86 488 -92 488 -104 c 0 488 -131 466 -153 437 -153 c 0 413 -153 400 -142 371 -95 c 0 300 18 264 133 264 243 c 0 264 350 307 478 380 587 c 0 403 623 415 632 437 632 c 0 EndSplineSet EndChar StartChar: parenright Encoding: 41 41 Width: 600 Flags: HMW VStem: 230 111<188.5 290> Fore 168 632 m 0 192 632 205 621 234 574 c 0 305 461 341 346 341 236 c 0 341 129 298 1 225 -109 c 0 202 -144 190 -153 168 -153 c 0 139 -153 117 -131 117 -104 c 0 117 -92 119 -86 129 -70 c 0 199 42 230 138 230 239 c 0 230 341 198 437 129 549 c 0 119 565 117 571 117 583 c 0 117 610 139 632 168 632 c 0 EndSplineSet EndChar StartChar: asterisk Encoding: 42 42 Width: 600 Flags: HMW VStem: 250 100<467 556> Fore 219 372 m 1 133 400 l 2 96 411 83 425 83 452 c 0 83 479 105 502 130 502 c 0 140 502 143 501 164 495 c 2 250 467 l 1 250 556 l 2 250 581 252 592 259 601 c 0 269 614 284 622 300 622 c 0 317 622 334 613 343 598 c 0 348 589 350 580 350 556 c 2 350 467 l 1 436 495 l 2 457 501 460 502 469 502 c 0 494 502 517 478 517 452 c 0 517 426 503 411 467 400 c 2 381 372 l 1 433 301 l 2 448 280 452 271 452 258 c 0 452 231 429 208 402 208 c 0 381 208 373 214 352 242 c 2 300 314 l 1 248 242 l 2 228 214 218 208 198 208 c 0 171 208 148 231 148 258 c 0 148 271 152 279 167 301 c 1 219 372 l 1 EndSplineSet EndChar StartChar: plus Encoding: 43 43 Width: 600 Flags: HMW HStem: 0 20 230 100<108 250 350 491> VStem: 250 100<66 230 330 494> Fore 350 230 m 1 350 66 l 2 350 39 348 31 341 21 c 0 331 8 316 0 300 0 c 0 283 0 266 9 257 24 c 0 252 33 250 43 250 66 c 2 250 230 l 1 108 230 l 2 84 230 72 232 63 239 c 0 50 249 42 264 42 280 c 0 42 297 51 314 66 323 c 0 75 329 83 330 108 330 c 2 250 330 l 1 250 494 l 2 250 520 252 530 260 539 c 1 269 553 284 560 300 560 c 0 317 560 334 551 343 536 c 0 349 527 350 520 350 494 c 2 350 330 l 1 491 330 l 2 519 330 527 328 537 321 c 0 550 311 558 296 558 280 c 0 558 263 549 246 534 237 c 0 526 232 514 230 491 230 c 2 350 230 l 1 EndSplineSet EndChar StartChar: comma Encoding: 44 44 Width: 600 Flags: W Fore 219 134 m 1 351 134 l 1 210 -134 l 2 202 -150 190 -158 178 -158 c 0 161 -158 147 -145 147 -130 c 0 147 -124 147 -122 150 -111 c 2 219 134 l 1 EndSplineSet Kerns: 49 -128 8221 -137 8217 -166 EndChar StartChar: hyphen Encoding: 45 45 Width: 600 Flags: HMW HStem: 229 100<108 492> Fore 492 229 m 2 108 229 l 2 83 229 72 231 63 238 c 0 50 248 42 263 42 279 c 0 42 296 51 312 66 322 c 0 75 328 83 329 108 329 c 2 492 329 l 2 518 329 528 327 538 320 c 0 551 310 558 295 558 279 c 0 558 262 549 245 534 236 c 0 526 231 514 229 492 229 c 2 EndSplineSet Kerns: 65 -18 198 -14 193 -18 196 -18 197 -18 84 -90 86 -38 87 1 89 -81 EndChar StartChar: period Encoding: 46 46 Width: 600 Flags: HMW HStem: -15 20 Fore 309 -15 m 2 291 -15 l 2 255 -15 225 15 225 51 c 0 225 87 255 117 291 117 c 2 309 117 l 2 346 117 375 88 375 51 c 0 375 14 346 -15 309 -15 c 2 EndSplineSet Kerns: 49 -113 8221 -131 8217 -161 EndChar StartChar: slash Encoding: 47 47 Width: 600 Flags: W DStem: 416 651 505 610 95 -27 185 -69 Fore 505 610 m 1 185 -69 l 1 170 -103 157 -113 133 -113 c 0 107 -113 83 -90 83 -65 c 0 83 -55 86 -45 95 -27 c 2 416 651 l 1 431 685 444 695 467 695 c 0 494 695 517 672 517 647 c 0 517 636 515 630 505 610 c 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: zero Encoding: 48 48 Width: 600 Flags: HMW HStem: -15 100<271.5 328.5> 538 100<271.5 328.5> VStem: 83 100<264 359 359 366> 417 100<257 264 264 359> Fore 517 359 m 2 517 264 l 2 517 173 489 92 439 40 c 0 405 4 357 -15 300 -15 c 0 243 -15 195 4 161 40 c 0 111 92 83 173 83 264 c 2 83 359 l 2 83 450 111 531 161 583 c 0 195 619 243 638 300 638 c 0 357 638 405 619 439 583 c 0 489 531 517 450 517 359 c 2 183 366 m 2 183 257 l 2 183 153 229 85 300 85 c 0 371 85 417 153 417 257 c 2 417 366 l 2 417 470 371 538 300 538 c 0 229 538 183 470 183 366 c 2 EndSplineSet Kerns: 52 -59 49 -76 55 -68 EndChar StartChar: one Encoding: 49 49 Width: 600 Flags: HMW HStem: 0 100<149 250 350 451> VStem: 250 100<100 509 509 509> Fore 350 638 m 1 350 100 l 1 451 100 l 2 478 100 486 98 496 91 c 0 509 81 517 66 517 50 c 0 517 33 508 17 493 7 c 0 486 3 471 0 451 0 c 2 149 0 l 2 126 0 112 3 104 10 c 0 91 19 83 35 83 50 c 0 83 67 92 84 107 93 c 0 116 99 123 100 149 100 c 2 250 100 l 1 250 509 l 1 163 486 l 2 144 481 141 480 131 480 c 0 105 480 85 503 85 532 c 0 85 561 98 573 138 583 c 2 350 638 l 1 EndSplineSet Kerns: 44 -99 56 -74 53 -55 52 -87 57 -73 49 -62 46 -114 55 -141 54 -98 51 -53 50 -47 48 -86 EndChar StartChar: two Encoding: 50 50 Width: 600 Flags: HMW HStem: 0 100<207 408> 538 100<268 320.5> VStem: 403 100<431 473.5> Fore 207 100 m 1 408 100 l 1 411 136 427 154 458 154 c 0 475 154 492 145 501 130 c 0 506 121 508 112 508 88 c 2 508 0 l 1 54 0 l 1 54 105 l 1 222 244 241 260 286 301 c 0 386 392 403 414 403 448 c 0 403 499 353 538 288 538 c 0 248 538 213 523 191 497 c 0 181 485 180 483 169 451 c 0 164 434 145 422 124 422 c 0 97 422 74 444 74 470 c 0 74 502 100 551 134 582 c 0 174 618 231 638 290 638 c 0 412 638 503 555 503 444 c 0 503 379 479 341 380 251 c 0 353 226 295 176 207 100 c 1 EndSplineSet Kerns: 52 -67 49 -66 55 -68 EndChar StartChar: three Encoding: 51 51 Width: 600 Flags: W HStem: -15 100<242 302> 538 100<276 316> VStem: 407 100<450.768 466> 429 100<177 193> Fore 276 383 m 2 316 383 l 2 365 383 407 420 407 462 c 0 407 509 364 538 295 538 c 0 240 538 212 527 180 492 c 0 171 483 158 477 144 477 c 0 117 477 95 500 95 527 c 0 95 585 194 638 301 638 c 0 367 638 419 619 457 580 c 1 489 549 507 505 507 464 c 0 507 409 481 372 416 333 c 1 492 296 529 246 529 182 c 0 529 124 501 68 455 32 c 0 411 -1 358 -15 271 -15 c 0 148 -15 66 19 66 70 c 0 66 98 88 120 116 120 c 0 128 120 132 118 148 108 c 0 174 91 204 85 268 85 c 0 337 85 374 95 401 119 c 0 418 135 429 160 429 183 c 0 429 220 400 255 353 274 c 0 332 283 319 285 276 287 c 0 243 289 224 306 224 333 c 0 224 362 246 383 276 383 c 2 EndSplineSet MinimumDistance: x11,-1 Kerns: 52 -52 49 -71 55 -64 EndChar StartChar: four Encoding: 52 52 Width: 600 Flags: HMW HStem: 0 100<309 347> 138 100<197 347> VStem: 347 100<100 138 238 480 480 480> Fore 447 622 m 1 447 238 l 1 486 238 508 220 508 188 c 0 508 156 487 139 447 138 c 1 447 100 l 1 486 100 508 82 508 50 c 0 508 33 499 17 484 7 c 0 477 3 462 0 441 0 c 2 309 0 l 2 286 0 272 3 264 10 c 0 251 19 243 35 243 50 c 0 243 67 252 84 267 93 c 0 276 99 285 100 309 100 c 2 347 100 l 1 347 138 l 1 75 138 l 1 75 221 l 1 316 622 l 1 447 622 l 1 347 238 m 1 347 480 l 1 197 238 l 1 347 238 l 1 EndSplineSet Kerns: 52 -62 49 -66 55 -93 EndChar StartChar: five Encoding: 53 53 Width: 600 Flags: HMW HStem: -15 100<244.5 325> 324 100<303.5 350.5> 522 100<219 219 219 421> VStem: 119 100<407 522> 429 100<173 238> Fore 219 522 m 1 219 407 l 1 255 418 289 424 318 424 c 0 439 424 529 330 529 202 c 0 529 144 510 92 474 53 c 0 430 5 372 -15 278 -15 c 0 158 -15 66 28 66 84 c 0 66 111 89 133 116 133 c 0 130 133 137 130 152 118 c 0 182 93 212 85 277 85 c 0 381 85 429 122 429 201 c 0 429 275 384 324 317 324 c 0 284 324 240 312 197 290 c 0 184 284 178 282 169 282 c 0 140 282 119 306 119 338 c 2 119 622 l 1 421 622 l 2 448 622 456 620 467 613 c 1 479 603 487 588 487 572 c 0 487 555 478 538 463 529 c 0 456 524 442 522 421 522 c 2 219 522 l 1 EndSplineSet Kerns: 52 -52 49 -73 55 -73 EndChar StartChar: six Encoding: 54 54 Width: 600 Flags: HMW HStem: -15 100<301.5 364.5> 294 100<319.5 365> 535 103<377 433.5> VStem: 435 100<160.5 219> Fore 208 324 m 1 256 375 294 394 345 394 c 0 450 394 535 302 535 189 c 0 535 132 517 81 483 44 c 0 447 4 398 -15 331 -15 c 0 248 -15 187 19 149 87 c 0 123 135 105 213 105 285 c 0 105 374 131 450 182 514 c 0 249 596 331 638 423 638 c 0 493 638 540 612 540 573 c 0 540 545 517 522 489 522 c 0 480 522 470 524 454 530 c 0 443 534 438 535 429 535 c 0 323 535 231 447 208 324 c 1 218 209 m 1 233 122 269 85 334 85 c 0 397 85 435 125 435 190 c 0 435 248 392 294 338 294 c 0 295 294 245 258 218 209 c 1 EndSplineSet Kerns: 52 -49 49 -54 55 -46 EndChar StartChar: seven Encoding: 55 55 Width: 600 Flags: HMW HStem: -1 20 522 100<175 403 175 175> Fore 403 522 m 1 175 522 l 1 172 486 156 468 125 468 c 0 108 468 91 477 82 492 c 0 77 501 75 510 75 534 c 2 75 622 l 1 508 622 l 1 508 523 l 1 349 48 l 1 336 12 323 -1 297 -1 c 0 270 -1 246 21 246 47 c 0 246 56 248 64 253 81 c 1 403 522 l 1 EndSplineSet Kerns: 58 -156 44 -157 56 -74 53 -82 52 -101 49 -67 46 -176 55 -62 54 -93 51 -72 50 -64 EndChar StartChar: eight Encoding: 56 56 Width: 600 Flags: W HStem: -15 100<291 307> 263 101<291 307> 538 100<291 307> VStem: 83 100<161 177> 92 100<449 459> 408 100<449 459> 417 100<161 177> Fore 420 319 m 1 484 279 517 227 517 165 c 0 517 58 429 -15 299 -15 c 0 171 -15 83 58 83 165 c 0 83 227 116 279 180 319 c 1 120 359 92 402 92 455 c 0 92 557 184 638 300 638 c 0 415 638 508 557 508 457 c 0 508 402 480 359 420 319 c 1 300 538 m 0 236 538 192 502 192 451 c 0 192 400 237 364 300 364 c 0 363 364 408 400 408 450 c 0 408 502 364 538 300 538 c 0 300 263 m 0 236 263 183 223 183 173 c 0 183 122 232 85 300 85 c 0 368 85 417 122 417 172 c 0 417 223 366 263 300 263 c 0 EndSplineSet MinimumDistance: x1,-1 Kerns: 52 -58 49 -72 55 -65 EndChar StartChar: nine Encoding: 57 57 Width: 600 Flags: HMW HStem: -15 103<212.5 269> 229 100<281 327> 538 100<281.5 344.5> VStem: 111 100<404 462.5> Fore 438 299 m 1 390 248 352 229 302 229 c 0 196 229 111 321 111 434 c 0 111 491 129 542 163 579 c 0 199 619 248 638 315 638 c 0 398 638 459 604 497 536 c 0 523 489 541 409 541 338 c 0 541 250 515 173 464 109 c 0 397 27 315 -15 223 -15 c 0 153 -15 106 11 106 50 c 0 106 78 129 101 157 101 c 0 166 101 176 99 192 93 c 0 203 89 208 88 217 88 c 0 323 88 415 176 438 299 c 1 428 414 m 1 413 501 377 538 312 538 c 0 249 538 211 498 211 433 c 0 211 375 254 329 308 329 c 0 351 329 401 365 428 414 c 1 EndSplineSet Kerns: 52 -53 49 -66 55 -57 EndChar StartChar: colon Encoding: 58 58 Width: 600 Flags: HMW HStem: -15 20 417 20<291 309 309 327.5> Fore 309 -15 m 2 291 -15 l 2 255 -15 225 15 225 51 c 0 225 87 255 117 291 117 c 2 309 117 l 2 346 117 375 88 375 51 c 0 375 14 346 -15 309 -15 c 2 309 304 m 2 291 304 l 2 255 304 225 334 225 370 c 0 225 407 255 437 291 437 c 2 309 437 l 2 346 437 375 408 375 370 c 0 375 333 346 304 309 304 c 2 EndSplineSet EndChar StartChar: semicolon Encoding: 59 59 Width: 600 Flags: HMW HStem: 417 20<253.5 299> Fore 219 134 m 1 351 134 l 1 210 -134 l 2 202 -150 190 -158 178 -158 c 0 161 -158 147 -145 147 -130 c 0 147 -124 147 -122 150 -111 c 2 219 134 l 1 276 437 m 0 322 437 351 411 351 370 c 0 351 330 321 304 276 304 c 0 231 304 201 331 201 371 c 0 201 410 231 437 276 437 c 0 EndSplineSet EndChar StartChar: less Encoding: 60 60 Width: 600 Flags: W DStem: 42 280 251 279 472 63 512 143 472 492 512 412 42 280 251 279 Fore 251 279 m 1 512 143 l 2 535 131 544 119 544 100 c 0 544 95 542 88 539 81 c 2 538 79 l 2 532 65 516 54 502 54 c 0 494 54 483 57 472 63 c 2 42 280 l 1 472 492 l 2 484 498 494 501 502 501 c 0 516 501 532 490 538 476 c 2 539 474 l 2 542 468 544 461 544 455 c 0 544 436 535 424 512 412 c 2 251 279 l 1 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: equal Encoding: 61 61 Width: 600 Flags: HMW HStem: 138 100<108 492> 322 100<108 492> Fore 108 422 m 2 492 422 l 2 519 422 527 420 537 413 c 0 550 403 558 388 558 372 c 0 558 355 549 338 534 329 c 0 526 324 514 322 492 322 c 2 108 322 l 2 84 322 72 324 63 332 c 1 50 341 42 356 42 372 c 0 42 389 51 406 66 415 c 0 75 421 83 422 108 422 c 2 108 238 m 2 492 238 l 2 519 238 527 236 537 229 c 0 550 219 558 204 558 188 c 0 558 171 549 154 534 145 c 0 526 140 514 138 492 138 c 2 108 138 l 2 84 138 72 140 63 148 c 1 50 157 42 172 42 188 c 0 42 205 51 222 66 231 c 0 75 237 83 238 108 238 c 2 EndSplineSet EndChar StartChar: greater Encoding: 62 62 Width: 600 Flags: W DStem: 88 412 128 491 349 275 558 274 349 275 558 274 88 142 128 62 Fore 349 275 m 1 88 412 l 2 65 423 56 435 56 453 c 0 56 459 58 466 61 473 c 2 62 475 l 2 67 488 84 500 98 500 c 0 106 500 117 497 128 491 c 2 558 274 l 1 128 62 l 2 116 56 105 53 98 53 c 0 84 53 68 64 62 78 c 2 61 80 l 2 58 87 56 93 56 100 c 0 56 118 65 130 88 142 c 2 349 275 l 1 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: question Encoding: 63 63 Width: 600 Flags: HMW HStem: -15 20 498 100<290 341> VStem: 417 100<392.5 439> Fore 104 460 m 2 104 539 l 1 200 585 244 598 308 598 c 0 432 598 517 521 517 409 c 0 517 328 474 281 353 228 c 1 349 192 332 174 303 174 c 0 286 174 269 183 260 198 c 0 255 207 253 217 253 240 c 2 253 296 l 1 381 345 417 371 417 414 c 0 417 464 373 498 309 498 c 0 271 498 237 490 204 474 c 1 204 460 l 2 204 434 202 424 195 415 c 0 185 402 169 394 154 394 c 0 137 394 120 404 111 418 c 0 106 426 104 437 104 460 c 2 311 -15 m 2 294 -15 l 2 257 -15 227 15 227 51 c 0 227 87 257 117 294 117 c 2 311 117 l 2 348 117 377 88 377 51 c 0 377 14 348 -15 311 -15 c 2 EndSplineSet EndChar StartChar: at Encoding: 64 64 Width: 600 Flags: HMW HStem: -152 78<283 327> -25 20 72 81<357 378.5> 541 79<260 333> VStem: 76 79<154 161 161 317> 218 79<204.5 249.5> 407 79<155 316 316 316 397 429> Fore 407 397 m 1 407 429 l 2 407 495 364 541 302 541 c 0 218 541 155 445 155 317 c 2 155 161 l 2 155 85 172 23 206 -24 c 0 230 -59 261 -74 305 -74 c 0 349 -74 389 -62 408 -42 c 0 422 -28 427 -25 439 -25 c 0 461 -25 479 -43 479 -66 c 0 479 -113 397 -152 302 -152 c 0 220 -152 165 -119 123 -45 c 0 93 9 76 81 76 154 c 2 76 323 l 2 76 495 171 620 301 620 c 0 409 620 486 540 486 429 c 2 486 148 l 1 502 141 509 130 509 113 c 0 509 85 491 72 454 72 c 2 407 72 l 1 407 75 l 1 392 73 383 72 374 72 c 0 289 72 218 143 218 226 c 0 218 319 295 389 407 397 c 1 407 155 m 1 407 316 l 1 341 310 297 274 297 225 c 0 297 184 333 153 381 153 c 0 388 153 393 153 407 155 c 1 EndSplineSet EndChar StartChar: A Encoding: 65 65 Width: 600 Flags: HMW HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> Fore 416 158 m 1 178 158 l 1 155 100 l 1 178 100 l 2 205 100 213 98 223 91 c 0 236 81 244 66 244 50 c 0 244 33 235 16 220 7 c 0 212 2 199 0 178 0 c 2 45 0 l 2 1 0 -21 17 -21 50 c 0 -21 67 -12 84 3 93 c 0 12 99 21 100 46 100 c 1 201 483 l 1 138 483 l 2 112 483 102 485 92 492 c 0 79 502 71 517 71 533 c 0 71 550 80 566 95 576 c 0 104 582 111 583 138 583 c 2 354 583 l 1 553 100 l 1 581 100 590 98 600 90 c 0 613 81 621 66 621 50 c 0 621 33 612 16 597 7 c 0 589 2 576 0 555 0 c 2 416 0 l 2 392 0 380 3 371 10 c 0 358 19 350 34 350 50 c 0 350 67 359 84 374 93 c 0 383 99 390 100 416 100 c 2 439 100 l 1 416 158 l 1 375 258 m 1 297 450 l 1 218 258 l 1 375 258 l 1 EndSplineSet Kerns: 67 -14 199 -22 71 -10 79 -15 214 -15 81 -16 84 -27 85 -23 218 -23 219 -23 220 -23 217 -23 86 -59 87 -13 89 -27 97 15 98 45 99 -4 231 -8 44 -47 100 4 101 2 171 -40 8249 -40 45 -19 111 -3 46 -62 113 -4 8221 -84 8217 -113 116 -20 117 -12 118 -39 119 -13 121 -39 EndChar StartChar: B Encoding: 66 66 Width: 600 Flags: W HStem: 0 100<61 93 195 381> 242 100<195 328> 483 100<61 93 195 334> VStem: 94 100<101 241 343 482> 428 100<416 421> 471 100<144 162> Fore 94 100 m 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 518 13 533 c 0 13 550 23 567 37 576 c 0 46 582 55 583 79 583 c 2 332 583 l 2 445 583 528 513 528 418 c 0 528 372 509 339 465 305 c 1 537 269 571 223 571 160 c 0 571 64 492 0 374 0 c 2 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 35 13 50 c 0 13 67 22 84 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 194 342 m 1 307 342 l 2 379 342 428 373 428 419 c 0 428 459 390 483 327 483 c 2 194 483 l 1 194 342 l 1 194 100 m 1 369 100 l 2 437 100 471 118 471 154 c 0 471 178 454 204 428 220 c 0 403 235 371 242 329 242 c 2 194 242 l 1 194 100 l 1 EndSplineSet MinimumDistance: x10,-1 Kerns: 65 4 198 3 193 4 194 4 196 4 197 4 195 4 79 -9 338 11 211 -9 212 -9 214 -9 210 -9 216 -5 86 -18 87 -6 89 -39 EndChar StartChar: C Encoding: 67 67 Width: 600 Flags: W HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328> VStem: 33 100<242 322> Fore 447 563 m 2 457 559 l 1 470 577 482 583 499 583 c 0 517 583 533 574 542 559 c 0 548 550 549 542 549 517 c 2 549 433 l 2 549 408 547 397 540 388 c 0 530 375 515 367 499 367 c 0 486 367 472 373 464 381 c 0 456 389 454 396 450 420 c 0 445 444 435 457 406 473 c 0 379 488 343 497 309 497 c 0 207 497 133 420 133 315 c 2 133 251 l 2 133 151 210 86 330 86 c 0 375 86 415 94 440 109 c 0 451 115 451 115 478 143 c 0 489 154 501 159 514 159 c 0 541 159 564 136 564 109 c 0 564 86 545 60 511 36 c 0 467 4 399 -14 327 -14 c 0 157 -14 33 97 33 249 c 2 33 315 l 2 33 475 151 597 305 597 c 0 357 597 392 589 447 563 c 2 EndSplineSet MinimumDistance: x12,-1 Kerns: 65 8 198 7 193 8 196 8 197 8 72 -13 75 -8 79 -14 211 -14 214 -14 EndChar StartChar: D Encoding: 68 68 Width: 600 Flags: HMW HStem: 0 100<68 74 174 284> 483 100<174 174 174 284> VStem: 74 100<100 483> 450 100<261 305> Fore 74 100 m 1 74 483 l 1 35 483 13 501 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 80 583 c 2 292 583 l 2 438 583 550 462 550 305 c 2 550 258 l 2 550 185 526 123 480 75 c 0 431 23 371 0 284 0 c 2 80 0 l 2 56 0 43 3 34 10 c 0 21 19 13 35 13 50 c 0 13 82 36 100 74 100 c 1 174 100 m 1 285 100 l 2 345 100 378 112 409 144 c 1 437 175 450 210 450 261 c 2 450 307 l 2 450 354 434 398 405 432 c 0 375 467 337 483 284 483 c 2 174 483 l 1 174 100 l 1 EndSplineSet Kerns: 65 -25 193 -25 194 -25 196 -25 192 -25 197 -25 195 -25 74 -32 84 -27 86 -30 87 -13 88 -37 89 -51 EndChar StartChar: E Encoding: 69 69 Width: 600 Flags: W HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> Fore 194 243 m 1 194 100 l 1 450 100 l 1 450 152 l 2 450 180 452 188 459 198 c 0 469 212 484 219 500 219 c 0 517 219 533 210 543 195 c 0 548 186 550 177 550 152 c 2 550 0 l 1 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 34 13 50 c 0 13 67 22 83 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 528 583 l 1 528 433 l 2 528 405 526 397 519 387 c 0 509 374 494 366 478 366 c 0 461 366 445 375 435 390 c 0 430 399 428 409 428 433 c 2 428 483 l 1 194 483 l 1 194 342 l 1 279 342 l 1 279 349 l 2 279 376 281 385 288 395 c 0 298 408 313 416 328 416 c 0 355 416 373 398 377 370 c 0 378 361 378 358 378 349 c 2 378 236 l 2 378 210 376 200 369 191 c 0 359 178 344 170 329 170 c 0 312 170 295 179 286 194 c 0 281 203 279 212 279 236 c 2 279 243 l 1 194 243 l 1 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: F Encoding: 70 70 Width: 600 Flags: HMW HStem: 0 100<79 94 194 294> 243 99<194 279> 483 100<79 94 194 194 194 450> VStem: 94 100<100 243 342 483> 450 100<432 483 483 483> Fore 194 243 m 1 194 100 l 1 294 100 l 2 321 100 330 98 340 91 c 0 352 81 360 66 360 50 c 0 360 33 351 16 336 7 c 0 329 3 314 0 294 0 c 2 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 35 13 50 c 0 13 67 22 84 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 550 583 l 1 550 432 l 2 550 405 548 397 541 387 c 0 531 374 516 366 500 366 c 0 483 366 467 375 457 390 c 0 452 398 450 409 450 432 c 2 450 483 l 1 194 483 l 1 194 342 l 1 279 342 l 1 279 349 l 2 279 374 281 385 288 394 c 0 298 407 313 415 329 415 c 0 346 415 362 406 371 391 c 0 377 381 378 374 378 349 c 2 378 236 l 2 378 209 376 200 369 190 c 0 359 177 344 169 329 169 c 0 312 169 295 179 286 193 c 0 281 202 279 213 279 236 c 2 279 243 l 1 194 243 l 1 EndSplineSet Kerns: 65 -39 193 -39 194 -39 196 -39 192 -39 197 -39 195 -39 74 -78 79 -24 214 -24 97 -40 225 -40 228 -40 230 -18 229 -40 44 -168 101 -47 233 -47 45 -55 105 -46 106 -54 111 -51 243 -51 246 -51 339 -16 248 -51 46 -187 114 -32 117 -1 EndChar StartChar: G Encoding: 71 71 Width: 600 Flags: HMW HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344> VStem: 33 100<246 253 253 317> 450 100<111 180> Fore 550 180 m 1 550 48 l 1 461 1 409 -14 331 -14 c 0 233 -14 148 15 99 65 c 0 58 108 33 176 33 246 c 2 33 317 l 2 33 393 64 467 117 520 c 0 170 572 235 597 317 597 c 0 371 597 420 586 462 565 c 1 474 589 484 597 503 597 c 0 520 597 536 588 543 573 c 0 549 563 550 555 550 531 c 2 550 453 l 2 550 425 549 418 541 408 c 0 531 395 516 387 500 387 c 0 487 387 473 393 465 402 c 0 459 409 459 409 451 440 c 0 441 475 391 497 318 497 c 0 262 497 217 481 186 450 c 0 153 417 133 367 133 317 c 2 133 253 l 2 133 195 147 156 178 130 c 0 212 101 262 86 325 86 c 0 373 86 412 94 450 111 c 1 450 180 l 1 350 180 l 2 325 180 314 182 305 190 c 1 292 199 284 214 284 230 c 0 284 247 293 264 308 273 c 0 317 279 325 280 350 280 c 2 525 280 l 2 552 280 561 278 571 271 c 0 585 261 592 246 592 230 c 0 592 205 578 188 550 180 c 1 EndSplineSet Kerns: 65 6 198 5 193 6 194 6 196 6 192 6 197 6 195 6 84 -25 86 6 87 6 89 -14 EndChar StartChar: H Encoding: 72 72 Width: 600 Flags: HMW HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5> VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483> Fore 409 241 m 1 195 241 l 1 195 100 l 1 210 100 l 2 236 100 246 98 255 91 c 0 268 81 276 66 276 50 c 0 276 33 267 16 252 7 c 0 244 2 231 0 210 0 c 2 89 0 l 2 65 0 52 3 43 9 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 99 64 100 89 100 c 2 95 100 l 1 95 483 l 1 62 486 43 504 43 533 c 0 43 550 52 567 67 576 c 0 76 582 84 583 109 583 c 2 210 583 l 2 237 583 246 581 255 574 c 0 268 564 276 549 276 533 c 0 276 516 267 499 252 490 c 0 243 485 234 483 210 483 c 2 195 483 l 1 195 341 l 1 409 341 l 1 409 483 l 1 394 483 l 2 368 483 359 485 349 492 c 0 336 502 328 517 328 533 c 0 328 550 337 567 352 576 c 0 361 582 369 583 394 583 c 2 495 583 l 2 522 583 531 581 541 574 c 0 553 564 561 549 561 533 c 0 561 504 542 486 509 483 c 1 509 100 l 1 515 100 l 2 542 100 551 98 560 91 c 0 573 81 581 66 581 50 c 0 581 33 572 16 557 7 c 0 549 2 536 0 515 0 c 2 394 0 l 2 370 0 358 3 349 9 c 0 336 19 328 35 328 50 c 0 328 67 337 84 352 93 c 0 361 99 370 100 394 100 c 2 409 100 l 1 409 241 l 1 EndSplineSet EndChar StartChar: I Encoding: 73 73 Width: 600 Flags: HMW HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> VStem: 250 100<100 483> Fore 350 483 m 1 350 100 l 1 451 100 l 2 478 100 486 98 496 91 c 0 510 81 517 66 517 50 c 0 517 17 495 0 451 0 c 2 149 0 l 2 125 0 113 3 104 10 c 0 91 19 83 35 83 50 c 0 83 67 92 84 107 93 c 0 116 99 123 100 149 100 c 2 250 100 l 1 250 483 l 1 149 483 l 2 124 483 113 485 104 492 c 0 91 502 83 517 83 533 c 0 83 550 92 567 107 576 c 0 116 582 123 583 149 583 c 2 451 583 l 2 478 583 486 581 496 574 c 0 510 564 517 549 517 533 c 0 517 516 508 499 493 490 c 0 485 485 474 483 451 483 c 2 350 483 l 1 EndSplineSet EndChar StartChar: J Encoding: 74 74 Width: 600 Flags: HMW HStem: -14 100<254 289> 483 100<271 390 490 547 490 490> VStem: 54 100<117 213> 390 100<198 483> Fore 490 483 m 1 490 187 l 2 490 121 473 83 426 42 c 0 384 6 328 -14 269 -14 c 0 212 -14 145 6 54 51 c 1 54 213 l 2 54 239 56 250 63 259 c 0 73 272 88 280 104 280 c 0 121 280 138 271 147 256 c 0 153 247 154 238 154 213 c 2 154 117 l 1 203 95 237 86 271 86 c 0 307 86 343 100 366 122 c 0 387 143 390 152 390 198 c 2 390 483 l 1 271 483 l 2 246 483 235 485 226 492 c 0 213 502 205 517 205 533 c 0 205 550 214 567 229 576 c 0 238 582 245 583 271 583 c 2 547 583 l 2 574 583 583 581 592 574 c 0 605 564 613 549 613 533 c 0 613 516 604 499 589 490 c 0 581 485 570 483 547 483 c 2 490 483 l 1 EndSplineSet Kerns: 65 -8 198 -16 196 -8 197 -8 EndChar StartChar: K Encoding: 75 75 Width: 600 Flags: HMW HStem: 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5> VStem: 94 100<100 208 334 483> Fore 194 208 m 1 194 100 l 1 229 100 l 2 256 100 264 98 274 91 c 0 287 81 295 66 295 50 c 0 295 33 286 16 271 7 c 0 264 3 249 0 229 0 c 2 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 35 13 50 c 0 13 67 22 84 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 229 583 l 2 256 583 265 581 274 574 c 0 287 564 295 549 295 533 c 0 295 516 286 499 271 490 c 0 263 485 252 483 229 483 c 2 194 483 l 1 194 334 l 1 372 487 l 1 351 495 341 509 341 532 c 0 341 560 357 578 386 581 c 0 398 583 399 583 407 583 c 2 507 583 l 2 534 583 543 581 553 574 c 0 565 564 573 549 573 533 c 0 573 500 552 483 511 483 c 1 335 330 l 1 396 298 458 215 504 100 c 1 536 100 l 2 563 100 571 98 581 91 c 0 594 81 602 66 602 50 c 0 602 33 593 16 578 7 c 0 571 3 556 0 536 0 c 2 426 0 l 1 379 143 315 240 254 259 c 1 194 208 l 1 EndSplineSet Kerns: 67 -24 71 -19 79 -25 338 -4 211 -25 214 -25 83 -9 84 -13 97 6 228 6 230 31 229 6 101 -6 45 -44 111 -12 243 -12 246 -12 117 -22 252 -22 121 -50 EndChar StartChar: L Encoding: 76 76 Width: 600 Flags: HMW HStem: 0 100<99 156 256 471> 483 100<99 156 256 313 256 256> VStem: 156 100<100 483> 471 100<100 192> Fore 256 483 m 5 256 100 l 5 471 100 l 5 471 192 l 6 471 219 473 228 480 238 c 4 490 252 505 259 521 259 c 4 538 259 554 250 564 235 c 4 570 226 571 217 571 192 c 6 571 0 l 5 99 0 l 6 76 0 62 3 54 10 c 4 41 19 33 34 33 50 c 4 33 67 42 84 57 93 c 4 66 99 73 100 99 100 c 6 156 100 l 5 156 483 l 5 99 483 l 6 74 483 63 485 54 492 c 4 41 502 33 517 33 533 c 4 33 550 42 567 57 576 c 4 66 582 73 583 99 583 c 6 313 583 l 6 340 583 348 581 358 574 c 4 371 564 379 549 379 533 c 4 379 516 370 499 355 490 c 4 347 485 336 483 313 483 c 6 256 483 l 5 EndSplineSet Kerns: 65 16 198 16 193 16 196 16 197 16 67 -10 199 -11 71 -10 79 -7 211 -7 212 -7 214 -7 210 -7 213 -7 83 -24 84 -52 85 -29 220 -29 86 -57 87 -22 89 -52 45 9 8221 -72 8217 -99 117 -10 252 -11 121 -33 EndChar StartChar: M Encoding: 77 77 Width: 600 Flags: W HStem: 0 100<29 41 143 189 413 461 563 573> 563 20G<438 548> VStem: -19 262<48 52> 42 100<100 388> 361 262<48 52> 462 100<100 388> DStem: 142 389 165 583 260 138 303 286 438 583 462 389 303 286 351 138 Fore 142 389 m 1 142 100 l 1 177 100 l 2 204 100 212 98 223 91 c 0 236 81 243 66 243 50 c 0 243 33 234 17 219 7 c 0 212 3 197 0 177 0 c 2 48 0 l 2 24 0 11 3 2 10 c 0 -11 19 -19 34 -19 50 c 4 -19 82 3 100 42 100 c 1 42 483 l 1 9 486 -10 504 -10 534 c 0 -10 550 -1 567 14 577 c 0 19 580 40 584 52 584 c 0 54 584 55 584 56 583 c 2 165 583 l 1 303 286 l 1 438 583 l 1 548 583 l 2 575 583 584 581 594 574 c 0 606 564 614 549 614 533 c 0 614 504 595 486 562 483 c 1 562 100 l 1 601 100 623 82 623 50 c 0 623 33 614 17 599 7 c 0 592 3 577 0 557 0 c 2 427 0 l 2 404 0 390 3 382 10 c 0 369 19 361 35 361 50 c 0 361 67 370 84 385 93 c 0 394 99 401 100 427 100 c 2 462 100 l 1 462 389 l 1 351 138 l 1 260 138 l 1 142 389 l 1 EndSplineSet MinimumDistance: x22,-1 EndChar StartChar: N Encoding: 78 78 Width: 600 Flags: HMW HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5> VStem: 73 100<100 394> 431 100<191 483> Fore 173 394 m 1 173 100 l 1 208 100 l 2 235 100 244 98 254 91 c 0 267 81 274 66 274 50 c 0 274 33 265 17 250 7 c 0 243 3 228 0 208 0 c 2 79 0 l 2 55 0 42 3 33 10 c 0 20 19 12 34 12 50 c 0 12 82 34 100 73 100 c 1 73 483 l 1 58 483 l 2 33 483 22 485 13 492 c 0 0 502 -8 517 -8 533 c 0 -8 550 1 567 16 576 c 0 25 582 32 583 58 583 c 2 173 583 l 1 431 191 l 1 431 483 l 1 396 483 l 2 371 483 360 485 351 492 c 0 338 502 330 517 330 533 c 0 330 550 339 567 354 576 c 0 363 582 370 583 396 583 c 2 526 583 l 2 553 583 561 581 571 574 c 0 584 564 592 549 592 533 c 0 592 501 571 483 531 483 c 1 531 0 l 1 432 0 l 1 173 394 l 1 EndSplineSet Kerns: 65 -3 198 -3 193 -3 196 -3 197 -3 67 -7 199 -6 71 -6 79 -5 211 -5 214 -5 97 -11 225 -11 228 -11 230 18 229 -11 44 -75 101 -3 233 -3 111 -8 243 -8 246 -8 248 -3 46 -93 117 -8 252 -8 EndChar StartChar: O Encoding: 79 79 Width: 600 Flags: HMW HStem: -14 100<251 348.5> 497 100<251 333.5> VStem: 21 100<235.5 348> 479 100<234 335> Fore 300 597 m 0 367 597 432 570 485 520 c 0 548 460 579 383 579 287 c 0 579 123 452 -14 300 -14 c 0 146 -14 21 123 21 292 c 0 21 460 146 597 300 597 c 0 300 497 m 0 202 497 121 404 121 292 c 0 121 179 202 86 300 86 c 0 397 86 479 179 479 289 c 0 479 404 399 497 300 497 c 0 EndSplineSet Kerns: 65 -14 198 -14 193 -14 196 -14 197 -14 84 -15 86 -23 87 -2 88 -26 89 -43 EndChar StartChar: P Encoding: 80 80 Width: 600 Flags: HMW HStem: 0 100<79 94 194 293> 200 100<194 292> 483 100<79 94 194 312 194 194> VStem: 94 100<100 200 300 483> 423 106<371 419.5> Fore 194 200 m 1 194 100 l 1 293 100 l 2 320 100 328 98 338 91 c 0 351 81 359 66 359 50 c 0 359 33 350 16 335 7 c 0 328 3 313 0 293 0 c 2 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 35 13 50 c 0 13 67 22 84 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 518 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 312 583 l 2 439 583 529 505 529 394 c 0 529 348 511 301 479 266 c 0 435 217 385 200 292 200 c 2 194 200 l 1 194 483 m 1 194 300 l 1 312 300 l 2 381 300 423 335 423 391 c 0 423 448 381 483 312 483 c 2 194 483 l 1 EndSplineSet Kerns: 65 -61 198 -59 193 -61 196 -61 197 -61 74 -73 97 -49 225 -49 228 -49 230 -27 229 -49 44 -160 101 -38 233 -38 45 -33 111 -42 243 -42 246 -42 339 -13 248 -42 46 -178 EndChar StartChar: Q Encoding: 81 81 Width: 600 Flags: W HStem: -145 100<429 453> -117 92<309 325> -7 92<288 317> 497 100<288 317> VStem: 21 100<271 303> 117 460<-91 -63> 479 100<271 303> Fore 271 -6 m 1 267 -30 l 1 291 -26 303 -25 318 -25 c 0 344 -25 370 -29 402 -38 c 0 425 -44 432 -45 443 -45 c 0 458 -45 467 -42 486 -30 c 0 509 -15 515 -13 526 -13 c 0 555 -13 577 -35 577 -63 c 0 577 -84 567 -98 539 -114 c 0 503 -136 475 -145 444 -145 c 0 419 -145 415 -144 367 -125 c 0 356 -121 333 -117 319 -117 c 0 298 -117 236 -127 193 -138 c 0 181 -141 171 -143 165 -143 c 0 139 -143 117 -119 117 -91 c 0 117 -76 121 -68 137 -53 c 2 199 7 l 1 124 50 93 77 65 124 c 0 37 173 21 231 21 292 c 0 21 460 146 597 300 597 c 0 453 597 579 460 579 294 c 0 579 183 524 84 429 27 c 0 391 4 345 -7 289 -7 c 0 287 -7 279 -7 271 -6 c 1 300 497 m 0 202 497 121 404 121 291 c 0 121 179 202 85 300 85 c 0 397 85 479 178 479 288 c 0 479 404 399 497 300 497 c 0 EndSplineSet MinimumDistance: x20,-1 EndChar StartChar: R Encoding: 82 82 Width: 600 Flags: HMW HStem: 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306> VStem: 94 100<100 222 322 483> 416 106<383 429.5> Fore 194 222 m 1 194 100 l 1 229 100 l 2 256 100 265 98 275 91 c 0 287 81 295 66 295 50 c 0 295 33 286 16 271 7 c 0 264 3 249 0 229 0 c 2 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 35 13 50 c 0 13 67 22 84 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 302 583 l 2 432 583 522 510 522 405 c 0 522 342 487 294 414 254 c 1 461 213 498 167 540 100 c 1 553 100 l 2 578 100 589 98 599 91 c 0 611 82 619 66 619 50 c 0 619 33 610 16 595 7 c 0 588 3 573 0 553 0 c 2 474 0 l 1 424 97 332 207 290 222 c 1 194 222 l 1 194 322 m 1 270 322 l 2 354 322 416 358 416 408 c 0 416 451 370 483 306 483 c 2 194 483 l 1 194 322 l 1 EndSplineSet Kerns: 67 -14 199 -17 71 -10 79 -14 338 5 211 -14 214 -14 84 -28 85 -16 220 -17 86 -24 87 -8 89 -28 97 14 225 14 228 14 230 40 229 14 101 2 233 2 45 -25 111 -3 243 -3 246 -3 339 29 117 -7 250 -8 252 -8 121 -18 EndChar StartChar: S Encoding: 83 83 Width: 600 Flags: HMW HStem: -14 100<282 339> 497 100<267.5 324.5> VStem: 82 104<410.5 442.5> 434 104<140.5 172.5> Fore 517 531 m 2 517 443 l 2 517 415 515 407 508 397 c 0 498 384 483 376 468 376 c 0 454 376 440 382 432 390 c 0 425 398 425 398 418 430 c 0 409 470 361 497 299 497 c 0 236 497 186 464 186 421 c 0 186 400 201 377 223 366 c 0 243 356 248 354 323 340 c 0 410 324 448 310 479 285 c 0 519 253 538 212 538 160 c 0 538 56 446 -14 309 -14 c 0 255 -14 202 -1 153 25 c 1 136 5 129 1 113 1 c 0 78 1 62 22 62 67 c 2 62 133 l 2 62 158 64 169 71 179 c 0 81 192 96 199 112 199 c 0 126 199 139 194 148 185 c 0 155 178 155 178 163 151 c 0 173 115 236 86 302 86 c 0 376 86 434 119 434 162 c 0 434 183 420 203 398 215 c 0 377 226 361 230 293 242 c 0 228 253 196 263 164 281 c 0 113 310 82 363 82 420 c 0 82 521 175 597 299 597 c 0 350 597 394 586 429 564 c 1 439 589 448 597 468 597 c 0 485 597 502 588 510 574 c 0 516 565 517 557 517 531 c 2 EndSplineSet Kerns: 65 -10 198 -10 193 -10 196 -10 197 -10 84 -41 86 -10 87 -12 89 -31 116 -17 EndChar StartChar: T Encoding: 84 84 Width: 600 Flags: HMW HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349> VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483> Fore 349 483 m 1 349 100 l 1 415 100 l 2 442 100 450 98 460 91 c 0 473 81 481 66 481 50 c 0 481 33 472 16 457 7 c 0 450 3 435 0 415 0 c 2 184 0 l 2 161 0 148 3 139 10 c 0 126 19 118 35 118 50 c 0 118 67 127 84 142 93 c 0 151 99 158 100 184 100 c 2 249 100 l 1 249 483 l 1 142 483 l 1 142 390 l 2 142 363 140 355 133 345 c 0 123 332 108 324 92 324 c 0 75 324 58 333 49 348 c 0 44 357 42 367 42 390 c 2 42 583 l 1 558 583 l 1 558 390 l 2 558 362 557 355 549 345 c 0 539 332 524 324 508 324 c 0 491 324 474 334 465 348 c 0 460 357 458 367 458 390 c 2 458 483 l 1 349 483 l 1 EndSplineSet Kerns: 65 -28 198 -28 193 -28 194 -28 196 -28 192 -28 197 -28 195 -28 67 -19 71 -19 74 -65 79 -14 338 6 211 -14 212 -14 214 -14 210 -14 216 -14 213 -14 83 -41 86 10 87 4 89 -10 97 -34 230 -12 99 -37 58 -112 44 -130 101 -26 103 -24 171 -73 8249 -73 45 -91 105 -42 106 -49 111 -31 248 -31 46 -148 114 -28 115 -39 59 -100 117 4 118 10 119 10 EndChar StartChar: U Encoding: 85 85 Width: 600 Flags: HMW HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> VStem: 71 100<205 483> 429 100<196 205 205 483> Fore 529 483 m 1 529 205 l 2 529 134 502 78 445 35 c 0 402 2 355 -14 300 -14 c 0 246 -14 198 2 155 35 c 0 99 78 71 134 71 205 c 2 71 483 l 1 31 484 10 501 10 533 c 0 10 550 19 567 34 576 c 0 43 582 51 583 76 583 c 2 206 583 l 2 234 583 241 582 252 574 c 0 264 564 272 549 272 533 c 0 272 516 263 499 248 490 c 0 240 485 229 483 206 483 c 2 171 483 l 1 171 196 l 2 171 135 229 86 300 86 c 0 371 86 429 135 429 196 c 2 429 483 l 1 394 483 l 2 368 483 358 485 349 492 c 0 336 502 328 517 328 533 c 0 328 550 337 567 352 576 c 0 361 582 368 583 394 583 c 2 524 583 l 2 551 583 559 581 570 574 c 0 583 564 590 549 590 533 c 0 590 501 569 483 529 483 c 1 EndSplineSet Kerns: 65 -19 198 -18 193 -19 194 -19 196 -19 197 -19 195 -19 44 -95 109 16 110 -8 46 -114 114 -34 EndChar StartChar: V Encoding: 86 86 Width: 600 Flags: HMW HStem: 0 20 483 100<45 47 159 159 159 178 423 447 553 555 555 563.5> Fore 303 144 m 1 447 483 l 1 423 483 l 2 396 483 388 485 377 492 c 1 365 502 357 517 357 533 c 0 357 550 366 567 381 576 c 0 390 582 397 583 423 583 c 2 555 583 l 2 581 583 591 581 600 574 c 0 613 564 621 549 621 533 c 0 621 513 607 493 590 487 c 0 581 484 574 483 553 483 c 1 348 0 l 1 249 0 l 1 47 483 l 1 27 483 19 484 10 487 c 0 -7 493 -21 513 -21 533 c 0 -21 550 -12 567 3 576 c 0 12 582 19 583 45 583 c 2 178 583 l 2 204 583 214 581 224 574 c 0 236 564 244 549 244 533 c 0 244 516 235 499 220 490 c 0 211 485 202 483 178 483 c 2 159 483 l 1 303 144 l 1 EndSplineSet Kerns: 65 -4 198 -12 193 -4 194 -4 196 -4 192 -4 197 -4 195 -4 67 -24 71 -24 79 -23 211 -23 212 -23 214 -23 210 -23 216 -23 213 -23 83 -27 84 10 97 -54 230 -27 58 -132 44 -146 101 -47 103 -46 171 -75 8249 -75 45 -39 105 -59 111 -52 248 -48 46 -164 114 -45 59 -120 117 -15 121 -17 EndChar StartChar: W Encoding: 87 87 Width: 600 Flags: HMW HStem: 0 20 483 100<139 139 139 187 413 466> Fore 300 277 m 1 209 0 l 1 98 0 l 1 36 483 l 1 6 487 -10 503 -10 531 c 0 -10 550 -1 566 14 576 c 0 23 582 30 583 56 583 c 2 187 583 l 2 215 583 223 581 233 574 c 0 246 564 254 549 254 533 c 0 254 516 245 499 230 490 c 0 221 485 211 483 187 483 c 2 139 483 l 1 175 211 l 1 251 437 l 1 355 437 l 1 431 211 l 1 466 483 l 1 413 483 l 2 388 483 377 485 368 492 c 0 355 502 347 517 347 533 c 0 347 550 356 567 371 576 c 0 380 582 387 583 413 583 c 2 544 583 l 2 571 583 580 581 590 574 c 0 602 564 610 549 610 533 c 0 610 506 593 488 563 483 c 1 503 0 l 1 393 0 l 1 300 277 l 1 EndSplineSet Kerns: 65 -9 198 -9 193 -9 194 -9 196 -9 192 -9 197 -9 195 -9 67 -4 71 -3 79 -2 211 -2 212 -2 214 -2 210 -2 216 2 213 -2 83 -17 84 4 97 -11 230 17 58 -99 44 -83 101 -3 103 -3 171 -31 8249 -31 45 1 105 -38 111 -8 248 -4 46 -101 114 -25 59 -82 117 1 121 -2 EndChar StartChar: X Encoding: 88 88 Width: 600 Flags: W HStem: 0 21G<76 187 413 524> 0.749951 99.25<58 69> 563 20G<85 176 422 512> VStem: 10 243<48 52> 19 224<528 535> 347 243<48 52> 355 223<528 535> DStem: 77 483 205 484 235 298 300 375 235 298 301 220 69 100 199 100 301 220 364 297 402 100 531 100 393 484 521 483 300 375 364 297 Fore 364 297 m 1 531 100 l 1 569 99 590 81 590 50 c 0 590 33 581 16 566 7 c 0 558 2 545 0 524 0 c 2 413 0 l 2 369 0 347 17 347 50 c 0 347 80 367 98 402 100 c 1 301 220 l 1 199 100 l 1 233 98 253 80 253 50 c 0 253 33 244 16 229 7 c 0 221 2 208 0 187 0 c 2 76 0 l 2 52 0 40 3 31 9 c 0 18 19 10 34 10 50 c 0 10 81 32 100 69 100 c 1 235 298 l 1 77 483 l 1 40 485 19 503 19 533 c 0 19 560 36 578 65 581 c 0 77 583 78 583 85 583 c 2 176 583 l 2 204 583 212 581 222 574 c 0 235 564 243 549 243 533 c 0 243 511 234 498 205 484 c 1 300 375 l 1 393 484 l 1 365 498 355 511 355 533 c 0 355 548 363 564 376 573 c 0 384 580 400 583 422 583 c 2 512 583 l 6 539 583 547 581 557 574 c 0 571 564 578 549 578 533 c 0 578 502 556 484 521 483 c 1 364 297 l 1 EndSplineSet MinimumDistance: x2,-1 x28,33 x19,24 x6,2 x15,10 Kerns: 67 -28 79 -26 214 -26 81 -26 101 -12 45 -50 111 -18 117 -28 121 -43 EndChar StartChar: Y Encoding: 89 89 Width: 600 Flags: HMW HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> VStem: 250 100<100 245> Fore 350 245 m 1 350 100 l 1 415 100 l 2 443 100 451 98 461 91 c 0 474 81 482 66 482 50 c 0 482 33 473 16 458 7 c 0 451 3 436 0 415 0 c 2 185 0 l 2 161 0 148 3 139 10 c 0 126 19 118 34 118 50 c 0 118 67 127 84 142 93 c 0 151 99 158 100 185 100 c 2 250 100 l 1 250 245 l 1 85 483 l 1 44 483 21 501 21 533 c 0 21 560 38 578 67 581 c 0 79 583 80 583 88 583 c 2 177 583 l 2 204 583 213 581 223 574 c 0 235 564 243 549 243 533 c 0 243 510 231 495 205 484 c 1 300 348 l 1 394 484 l 1 367 494 354 510 354 533 c 0 354 550 363 567 378 576 c 0 387 582 396 583 421 583 c 2 513 583 l 2 540 583 549 581 558 574 c 0 572 564 579 549 579 533 c 0 579 502 551 479 516 483 c 2 514 483 l 1 350 245 l 1 EndSplineSet Kerns: 65 -25 198 -28 193 -25 194 -25 196 -25 192 -25 197 -25 195 -25 67 -45 71 -45 79 -44 211 -44 212 -44 214 -44 210 -44 216 -43 213 -44 83 -48 84 -10 97 -53 230 -28 58 -150 44 -118 101 -59 103 -59 171 -94 8249 -94 45 -81 105 -58 111 -64 248 -51 112 -30 46 -136 59 -133 117 -43 118 -33 EndChar StartChar: Z Encoding: 90 90 Width: 600 Flags: HMW HStem: 0 100<201 427> 483 100<196 375 196 196> VStem: 96 100<413 483> 427 100<100 172> Fore 201 100 m 1 427 100 l 1 427 172 l 2 427 197 429 208 436 218 c 0 446 230 461 238 477 238 c 0 494 238 511 229 520 214 c 0 526 205 527 198 527 172 c 2 527 0 l 1 73 0 l 1 73 100 l 1 375 483 l 1 196 483 l 1 196 413 l 2 196 386 194 377 187 368 c 0 177 355 162 347 146 347 c 0 129 347 113 356 103 371 c 0 98 380 96 388 96 413 c 2 96 583 l 1 504 583 l 1 504 486 l 1 201 100 l 1 EndSplineSet Kerns: 118 -41 121 -52 EndChar StartChar: bracketleft Encoding: 91 91 Width: 600 Flags: HMW HStem: -148 100<350 409> 527 100<350 350 350 408> VStem: 250 100<-48 527> Fore 350 527 m 1 350 -48 l 1 409 -48 l 2 436 -48 444 -50 454 -57 c 0 467 -67 475 -82 475 -98 c 0 475 -115 466 -131 451 -141 c 0 443 -146 431 -148 409 -148 c 2 250 -148 l 1 250 627 l 1 408 627 l 2 435 627 443 625 454 618 c 0 467 608 474 593 474 577 c 0 474 560 465 543 450 534 c 0 442 529 430 527 408 527 c 2 350 527 l 1 EndSplineSet EndChar StartChar: backslash Encoding: 92 92 Width: 600 Flags: W DStem: 95 610 184 651 415 -69 505 -27 Fore 184 651 m 1 505 -27 l 2 514 -45 517 -55 517 -65 c 0 517 -90 493 -113 467 -113 c 0 443 -113 431 -103 415 -69 c 2 95 610 l 1 85 630 83 636 83 647 c 0 83 672 106 695 133 695 c 0 156 695 169 685 184 651 c 1 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: bracketright Encoding: 93 93 Width: 600 Flags: HMW HStem: -148 100<192 250> 527 100<191 250> VStem: 250 100<-48 527 527 527> Fore 250 -48 m 1 250 527 l 1 191 527 l 2 164 527 156 529 146 536 c 0 133 546 125 561 125 577 c 0 125 594 134 610 149 620 c 0 157 625 169 627 191 627 c 2 350 627 l 1 350 -148 l 1 192 -148 l 2 165 -148 157 -146 146 -139 c 0 133 -129 126 -114 126 -98 c 0 126 -81 135 -64 150 -55 c 0 158 -50 170 -48 192 -48 c 2 250 -48 l 1 EndSplineSet EndChar StartChar: asciicircum Encoding: 94 94 Width: 600 Flags: W DStem: 299 494 299 652 418 355 495 419 299 652 299 494 105 419 182 356 299 494 299 652 418 355 495 419 299 652 299 494 105 419 182 356 299 494 299 652 418 355 495 419 299 652 299 494 105 419 182 356 299 494 299 652 418 355 495 419 299 652 299 494 105 419 182 356 299 494 299 652 418 355 495 419 299 652 299 494 105 419 182 356 299 494 299 652 418 355 495 419 299 652 299 494 105 419 182 356 299 494 299 652 418 355 495 419 299 652 299 494 105 419 182 356 299 494 299 652 418 355 495 419 Fore 299 494 m 1 182 356 l 2 160 330 153 325 133 325 c 0 106 325 83 348 83 375 c 0 83 390 87 398 105 419 c 2 299 652 l 1 495 419 l 2 513 398 517 390 517 375 c 0 517 348 494 325 467 325 c 0 448 325 439 330 418 355 c 2 299 494 l 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: underscore Encoding: 95 95 Width: 600 Flags: HMW HStem: -125 50<-12 612> Fore 612 -75 m 1 612 -125 l 1 -12 -125 l 1 -12 -75 l 1 612 -75 l 1 EndSplineSet EndChar StartChar: grave Encoding: 96 96 Width: 600 Flags: W DStem: 148 624 194 680 281 512 327 569 Fore 194 680 m 2 327 569 l 2 343 556 350 545 350 532 c 0 350 513 333 496 313 496 c 0 303 496 296 500 281 512 c 2 148 624 l 1 131 637 125 647 125 660 c 0 125 680 141 696 162 696 c 0 173 696 178 693 194 680 c 2 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: a Encoding: 97 97 Width: 600 Flags: W HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> VStem: 42 106<118 128> 389 100<135 185 279 304> Fore 388 0 m 1 388 23 l 1 340 -2 281 -16 222 -16 c 0 123 -16 42 45 42 119 c 0 42 150 57 185 81 212 c 0 126 262 195 288 284 288 c 0 316 288 347 285 388 278 c 1 388 301 l 2 388 335 359 350 295 350 c 0 262 350 225 345 179 333 c 0 162 329 148 327 139 327 c 0 111 327 90 349 90 378 c 0 90 399 100 413 120 420 c 0 168 437 242 450 292 450 c 0 415 450 489 395 489 302 c 2 489 100 l 1 505 100 l 2 532 100 541 98 551 91 c 0 563 81 571 66 571 50 c 0 571 33 562 16 547 7 c 0 540 2 526 0 505 0 c 2 388 0 l 1 389 135 m 1 389 185 l 1 349 192 312 196 278 196 c 0 210 196 148 161 148 123 c 0 148 101 181 84 224 84 c 0 278 84 334 101 389 135 c 1 EndSplineSet MinimumDistance: x14,-1 Kerns: 106 -81 8217 -78 118 -21 119 -12 121 -31 EndChar StartChar: b Encoding: 98 98 Width: 600 Flags: HMW HStem: -14 100<295.5 346.5> 351 100<298.5 347> VStem: 74 100<180.5 236.5 401 524 524 524> 471 100<202 235.5> Fore 174 624 m 1 174 401 l 1 217 435 264 451 324 451 c 0 399 451 455 430 501 386 c 0 547 342 571 284 571 218 c 0 571 153 547 96 501 51 c 0 455 7 399 -14 325 -14 c 0 266 -14 226 -1 174 35 c 1 174 0 l 1 58 0 l 2 34 0 21 3 12 9 c 0 0 19 -8 34 -8 50 c 0 -8 67 1 84 16 93 c 0 25 99 33 100 58 100 c 2 74 100 l 1 74 524 l 1 58 524 l 2 32 524 22 526 12 533 c 0 0 543 -8 558 -8 574 c 0 -8 591 1 608 16 617 c 0 25 623 34 624 58 624 c 2 174 624 l 1 323 351 m 0 274 351 241 339 213 311 c 0 188 286 174 253 174 220 c 0 174 141 235 86 323 86 c 0 370 86 404 99 432 126 c 0 457 151 471 185 471 219 c 0 471 252 456 286 432 311 c 1 403 339 371 351 323 351 c 0 EndSplineSet Kerns: 119 4 121 -10 EndChar StartChar: c Encoding: 99 99 Width: 600 Flags: HMW HStem: -16 100<274.5 350> 350 100<284.5 332> VStem: 54 100<176.5 226> Fore 540 384 m 2 540 307 l 2 540 281 538 271 531 262 c 0 521 249 506 241 490 241 c 0 477 241 462 247 454 255 c 1 446 261 444 267 439 289 c 0 435 307 429 316 416 325 c 0 390 341 354 350 310 350 c 0 259 350 222 336 194 307 c 0 168 281 154 245 154 207 c 0 154 125 213 84 330 84 c 0 370 84 411 89 435 97 c 0 454 103 459 107 485 128 c 0 494 136 503 140 515 140 c 0 542 140 565 117 565 89 c 0 565 63 542 37 501 16 c 0 460 -4 396 -16 323 -16 c 0 226 -16 164 5 115 53 c 0 75 93 54 146 54 207 c 0 54 350 159 450 310 450 c 0 367 450 415 440 454 420 c 1 460 441 471 450 492 450 c 0 525 450 540 430 540 384 c 2 EndSplineSet Kerns: 104 11 107 6 EndChar StartChar: d Encoding: 100 100 Width: 600 Flags: HMW HStem: -14 100<258 306> 351 100<257 306> VStem: 33 100<202 235.5> 431 100<201 235 401 525 525 525> Fore 531 624 m 1 531 100 l 1 547 100 l 2 574 100 583 98 593 91 c 0 605 81 613 66 613 50 c 0 613 33 604 16 589 7 c 0 581 2 570 0 547 0 c 2 431 0 l 1 431 35 l 1 378 -1 339 -14 280 -14 c 0 205 -14 149 7 103 51 c 0 57 96 33 153 33 219 c 0 33 284 57 342 103 386 c 0 149 430 205 451 281 451 c 0 341 451 388 435 431 401 c 1 431 525 l 1 415 525 l 2 389 525 379 527 369 534 c 0 357 544 349 559 349 575 c 0 349 591 358 608 373 617 c 0 382 623 389 624 415 624 c 2 531 624 l 1 281 351 m 0 233 351 200 339 172 311 c 0 147 286 133 252 133 219 c 0 133 185 147 152 172 126 c 1 200 99 234 86 282 86 c 0 330 86 364 99 392 126 c 0 417 151 431 185 431 217 c 0 431 253 417 286 392 311 c 0 363 339 331 351 281 351 c 0 EndSplineSet EndChar StartChar: e Encoding: 101 101 Width: 600 Flags: HMW HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> Fore 550 172 m 1 142 172 l 1 165 112 218 84 306 84 c 0 352 84 377 88 469 112 c 0 481 115 493 117 502 117 c 0 529 117 550 95 550 67 c 0 550 47 539 33 515 22 c 0 470 2 368 -16 297 -16 c 0 142 -16 33 80 33 216 c 0 33 348 145 450 291 450 c 0 440 450 550 349 550 211 c 2 550 172 l 1 145 260 m 1 439 260 l 1 423 315 365 350 292 350 c 0 219 350 160 314 145 260 c 1 EndSplineSet Kerns: 8217 -65 116 -16 118 -9 119 -3 120 6 121 -20 EndChar StartChar: f Encoding: 102 102 Width: 600 Flags: HMW HStem: 0 100<141 199 299 438> 337 100<153 199 299 450> 523 100<354.5 398.5> VStem: 199 100<100 337 437 474> Fore 299 337 m 1 299 100 l 1 438 100 l 2 465 100 474 98 484 91 c 0 496 81 504 66 504 50 c 0 504 33 495 17 480 7 c 0 473 3 458 0 438 0 c 2 141 0 l 2 118 0 104 3 95 10 c 0 83 19 75 35 75 50 c 0 75 67 84 84 99 93 c 0 108 99 115 100 141 100 c 2 199 100 l 1 199 337 l 1 152 337 l 2 128 337 116 339 107 347 c 1 94 356 86 371 86 387 c 0 86 404 95 421 110 430 c 0 119 436 126 437 153 437 c 2 199 437 l 1 199 474 l 2 199 566 273 623 392 623 c 4 434 623 497 616 529 607 c 0 556 600 571 583 571 560 c 0 571 531 550 509 524 509 c 0 518 509 508 510 496 512 c 0 462 518 414 523 383 523 c 0 326 523 299 507 299 474 c 2 299 437 l 1 450 437 l 2 477 437 485 435 495 428 c 0 508 418 516 403 516 387 c 0 516 370 507 354 492 344 c 0 484 339 472 337 450 337 c 2 299 337 l 1 EndSplineSet Kerns: 97 -32 225 -32 228 -32 230 -7 229 -32 101 -43 233 -43 102 -43 105 -37 106 -60 108 -25 111 -47 243 -47 246 -42 339 -15 248 -29 8217 -73 115 -42 116 -6 EndChar StartChar: g Encoding: 103 103 Width: 600 Flags: HMW HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296> VStem: 33 100<182 255.5> 410 100<-20 35 35 35 181 254.5> Fore 410 401 m 1 410 437 l 1 526 437 l 2 553 437 562 435 572 428 c 0 584 418 592 403 592 387 c 0 592 370 583 353 568 344 c 0 560 339 549 337 526 337 c 2 510 337 l 1 510 -20 l 2 510 -126 428 -205 319 -205 c 2 207 -205 l 2 182 -205 171 -203 162 -195 c 1 149 -186 141 -171 141 -155 c 0 141 -138 150 -121 165 -112 c 0 174 -106 181 -105 207 -105 c 2 316 -105 l 2 373 -105 410 -72 410 -20 c 2 410 35 l 1 364 1 321 -14 269 -14 c 0 135 -14 33 86 33 218 c 0 33 351 135 451 269 451 c 0 323 451 371 434 410 401 c 1 271 351 m 0 195 351 133 292 133 219 c 0 133 145 195 86 271 86 c 0 347 86 410 145 410 217 c 0 410 292 349 351 271 351 c 0 EndSplineSet Kerns: 97 -4 228 -4 230 23 229 -4 101 1 233 1 108 -34 243 -3 246 -3 EndChar StartChar: h Encoding: 104 104 Width: 600 Flags: HMW HStem: 0 20 350 100<306 336.5> VStem: 95 100<100 283 389 524 524 524> 409 100<100 271 271 284> Fore 195 624 m 1 195 389 l 1 235 430 280 450 332 450 c 0 438 450 509 384 509 284 c 2 509 100 l 1 515 100 l 2 542 100 551 98 561 91 c 0 573 81 581 66 581 50 c 0 581 33 572 16 557 7 c 0 549 2 536 0 515 0 c 2 403 0 l 2 379 0 366 3 357 9 c 0 344 19 336 34 336 50 c 0 336 67 345 83 360 93 c 0 369 98 378 100 403 100 c 2 409 100 l 1 409 271 l 2 409 305 405 317 388 331 c 0 371 345 352 350 321 350 c 0 274 350 252 338 195 283 c 1 195 100 l 1 201 100 l 2 229 100 237 98 247 91 c 0 260 81 268 66 268 50 c 0 268 33 259 17 244 7 c 0 236 2 222 0 201 0 c 2 89 0 l 2 65 0 53 3 44 9 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 98 64 100 89 100 c 2 95 100 l 1 95 524 l 1 79 524 l 2 53 524 43 526 33 533 c 0 21 543 13 559 13 574 c 0 13 591 22 608 37 617 c 0 46 622 55 624 79 624 c 2 195 624 l 1 EndSplineSet Kerns: 8217 -69 121 -23 EndChar StartChar: i Encoding: 105 105 Width: 600 Flags: W HStem: 0 100<110 249 350 478> 337 100<158 249> 518 105<219 335> VStem: 218 118<519 622> 250 100<100 337> Fore 350 437 m 1 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 530 81 538 66 538 50 c 0 538 33 529 17 514 7 c 0 507 3 492 0 472 0 c 2 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 34 62 50 c 0 62 67 71 84 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 337 l 1 172 337 l 2 147 337 135 339 126 347 c 1 113 356 105 371 105 387 c 0 105 404 114 421 129 430 c 0 138 436 146 437 172 437 c 2 350 437 l 1 336 623 m 1 336 518 l 1 218 518 l 1 218 623 l 1 336 623 l 1 EndSplineSet MinimumDistance: x0,-1 x18,1 y1,18 y1,0 Kerns: 84 -58 106 -143 EndChar StartChar: j Encoding: 106 106 Width: 600 Flags: W HStem: -205 100<165 310> 337 100<165 387> 518 105<312 429> VStem: 311 119<519 622> 388 100<-29 337> Fore 388 337 m 1 186 337 l 2 161 337 150 339 141 347 c 1 128 356 120 372 120 387 c 0 120 404 129 421 144 430 c 0 153 436 160 437 186 437 c 2 488 437 l 1 488 -20 l 2 488 -125 406 -205 297 -205 c 2 183 -205 l 2 158 -205 147 -203 138 -195 c 1 125 -186 117 -170 117 -155 c 0 117 -138 127 -121 141 -112 c 0 150 -106 158 -105 183 -105 c 2 294 -105 l 2 351 -105 388 -72 388 -20 c 2 388 337 l 1 430 623 m 1 430 518 l 1 311 518 l 1 311 623 l 1 430 623 l 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: k Encoding: 107 107 Width: 600 Flags: W HStem: 0 100<81.7263 114 471 525> 337 100<429 473> 524 100<81 114> VStem: 115 100<100 164 288 524> 278 245<384 389> 320 251<48 52> DStem: 233 178 311 241 336 87 471 100 294 350 429 337 215 287 311 241 Fore 215 164 m 1 215 0 l 1 99 0 l 2 55 0 33 17 33 50 c 0 33 67 42 84 57 93 c 0 66 99 74 100 99 100 c 2 115 100 l 1 115 524 l 5 99 524 l 6 73 524 63 526 53 533 c 4 41 543 33 558 33 574 c 4 33 591 42 608 57 617 c 4 66 623 75 624 99 624 c 6 215 624 l 5 215 287 l 1 294 350 l 1 282 364 278 373 278 387 c 0 278 404 287 420 302 430 c 0 310 435 321 437 345 437 c 2 457 437 l 2 482 437 493 435 503 428 c 0 516 418 523 403 523 387 c 0 523 370 514 354 499 344 c 0 491 339 480 337 457 337 c 2 429 337 l 1 311 241 l 1 471 100 l 1 504 100 l 2 532 100 540 98 550 91 c 0 563 81 571 66 571 50 c 0 571 33 562 17 547 7 c 0 539 2 526 0 504 0 c 2 386 0 l 2 342 0 320 17 320 50 c 0 320 64 324 74 336 87 c 1 233 178 l 1 215 164 l 1 EndSplineSet MinimumDistance: x29,-1 Kerns: 97 1 225 1 228 1 230 26 229 1 44 -63 101 -11 233 -11 103 -14 45 -50 111 -17 243 -17 246 -17 46 -75 115 -9 117 -3 252 -3 EndChar StartChar: l Encoding: 108 108 Width: 600 Flags: HMW HStem: 0 100<128 250 350 472> 524 100<172 250> VStem: 250 100<100 524 524 524> Fore 350 624 m 1 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 530 81 538 66 538 50 c 0 538 33 529 17 514 7 c 0 507 3 492 0 472 0 c 2 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 35 62 50 c 0 62 67 71 84 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 524 l 1 172 524 l 2 147 524 135 526 126 534 c 1 112 543 105 558 105 574 c 0 105 592 114 608 129 617 c 0 138 623 147 624 172 624 c 2 350 624 l 1 EndSplineSet Kerns: 118 -77 121 -77 EndChar StartChar: m Encoding: 109 109 Width: 600 Flags: W HStem: 0 21G<48 136 252 346 463 557> 0.967046 99.033<28 40 141.031 156.045 352.031 366.367 563 573> 350 100<216 228 427 434> 417 20G<48 141> VStem: 41 100<100 305> 252 100<100 305> 252 160<48 52> 463 100<100 321> 463 160<48 52> Fore 141 437 m 1 141 413 l 1 176 441 196 450 226 450 c 0 265 450 298 434 328 401 c 1 359 435 391 450 432 450 c 0 507 450 563 394 563 319 c 2 563 100 l 1 601 100 623 82 623 50 c 0 623 17 601 0 557 0 c 2 463 0 l 1 463 311 l 2 463 340 454 350 428 350 c 0 402 350 386 341 352 305 c 1 352 100 l 1 390 100 412 81 412 50 c 0 412 33 403 17 388 7 c 0 380 2 367 0 346 0 c 2 252 0 l 1 252 311 l 2 252 339 242 350 217 350 c 0 190 350 171 339 141 305 c 1 141 100 l 1 180 100 202 82 202 50 c 0 202 33 193 17 178 7 c 0 170 2 157 0 136 0 c 2 48 0 l 2 24 0 11 3 2 10 c 0 -11 19 -19 35 -19 50 c 0 -19 82 3 100 41 100 c 1 41 337 l 1 3 338 -19 356 -19 387 c 0 -19 413 -2 432 27 435 c 0 38 437 40 437 48 437 c 2 141 437 l 1 EndSplineSet Kerns: 112 32 118 18 119 22 121 8 EndChar StartChar: n Encoding: 110 110 Width: 600 Flags: W HStem: 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20G<101 195> VStem: 95 100<100 282> 410 100<100 288> Fore 195 437 m 1 195 389 l 1 243 435 277 450 332 450 c 0 377 450 418 437 451 413 c 0 491 383 510 341 510 282 c 2 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 16 547 7 c 0 539 2 526 0 505 0 c 2 416 0 l 2 371 0 349 17 349 50 c 0 349 82 371 100 410 100 c 1 410 278 l 2 410 327 382 350 320 350 c 0 274 350 242 333 195 282 c 1 195 100 l 1 201 100 l 2 228 100 236 98 246 91 c 0 259 81 267 66 267 50 c 0 267 33 258 17 243 7 c 0 235 2 222 0 201 0 c 2 89 0 l 2 65 0 53 3 43 10 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 98 64 100 89 100 c 2 95 100 l 1 95 337 l 1 56 338 34 355 34 387 c 0 34 414 51 432 80 435 c 0 91 437 93 437 101 437 c 2 195 437 l 1 EndSplineSet MinimumDistance: x4,-1 Kerns: 84 -40 112 4 8217 -68 118 -12 119 -5 121 -22 EndChar StartChar: o Encoding: 111 111 Width: 600 Flags: HMW HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> VStem: 42 100<179.5 255> 458 100<179.5 254> Fore 303 450 m 0 444 450 558 346 558 217 c 0 558 87 444 -16 300 -16 c 0 156 -16 42 87 42 217 c 0 42 349 155 450 303 450 c 0 302 350 m 0 211 350 142 293 142 217 c 0 142 142 211 84 300 84 c 0 389 84 458 142 458 217 c 0 458 291 389 350 302 350 c 0 EndSplineSet Kerns: 84 -31 8217 -62 116 -13 118 -6 119 -3 120 -10 121 -17 EndChar StartChar: p Encoding: 112 112 Width: 600 Flags: HMW HStem: -205 100<58 74 174 232> 10 100<299.5 366> 350 100<302 343.5> VStem: 74 100<-105 66 195.5 247> 471 100<195 246.5> Fore 174 66 m 1 174 -105 l 1 232 -105 l 2 258 -105 268 -107 278 -114 c 0 291 -124 298 -139 298 -155 c 0 298 -172 289 -188 274 -198 c 0 266 -203 254 -205 232 -205 c 2 58 -205 l 2 33 -205 22 -203 12 -195 c 0 0 -186 -8 -171 -8 -155 c 0 -8 -138 1 -121 16 -112 c 0 25 -106 34 -105 58 -105 c 2 74 -105 l 1 74 337 l 1 58 337 l 2 32 337 22 339 12 346 c 0 0 356 -8 371 -8 387 c 0 -8 404 1 421 16 430 c 0 25 435 34 437 58 437 c 2 174 437 l 1 174 392 l 1 223 434 265 450 327 450 c 0 467 450 571 353 571 224 c 0 571 101 468 10 329 10 c 0 270 10 226 26 174 66 c 1 323 350 m 0 281 350 248 341 222 321 c 0 193 300 174 263 174 231 c 0 174 160 235 110 323 110 c 0 409 110 471 160 471 230 c 0 471 263 452 300 423 321 c 0 397 341 364 350 323 350 c 0 EndSplineSet Kerns: 116 -3 121 -6 EndChar StartChar: q Encoding: 113 113 Width: 600 Flags: HMW HStem: -205 100<373 431 531 547> 10 100<261 303> 350 100<260.5 308.5> VStem: 33 100<213.5 246.5> 431 100<-105 66 66 66 213 264.5> Fore 431 -105 m 1 431 66 l 1 379 26 334 10 275 10 c 0 136 10 33 101 33 224 c 0 33 354 137 450 277 450 c 0 340 450 382 434 431 392 c 1 431 437 l 1 547 437 l 2 574 437 583 435 593 428 c 0 605 418 613 403 613 387 c 0 613 370 604 353 589 344 c 0 581 339 570 337 547 337 c 2 531 337 l 1 531 -105 l 1 547 -105 l 2 574 -105 583 -107 593 -114 c 0 605 -124 613 -139 613 -155 c 0 613 -172 604 -188 589 -198 c 0 581 -203 569 -205 547 -205 c 2 373 -205 l 2 348 -205 337 -203 327 -195 c 0 314 -185 307 -171 307 -155 c 0 307 -138 316 -121 331 -112 c 0 339 -107 349 -105 373 -105 c 2 431 -105 l 1 281 350 m 0 240 350 207 340 181 321 c 0 152 299 133 263 133 230 c 0 133 197 152 161 181 139 c 0 206 120 240 110 282 110 c 0 324 110 358 120 383 139 c 0 412 161 431 197 431 229 c 0 431 300 370 350 281 350 c 0 EndSplineSet Kerns: 99 2 117 41 EndChar StartChar: r Encoding: 114 114 Width: 600 Flags: W HStem: 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447> VStem: 178 100<100 247> Fore 278 437 m 1 278 372 l 1 358 432 396 449 445 449 c 0 480 449 512 437 543 411 c 0 564 394 571 382 571 364 c 0 571 336 548 313 521 313 c 0 507 313 497 318 482 331 c 0 467 344 457 349 443 349 c 0 411 349 373 325 278 247 c 1 278 100 l 1 417 100 l 2 445 100 453 98 463 91 c 0 476 81 484 66 484 50 c 0 484 33 475 16 460 7 c 0 453 3 438 0 417 0 c 2 120 0 l 2 97 0 83 3 74 10 c 0 62 19 54 35 54 50 c 0 54 67 63 84 78 93 c 0 87 99 94 100 120 100 c 2 178 100 l 1 178 337 l 1 143 337 l 2 118 337 107 339 98 347 c 1 85 356 77 371 77 387 c 0 77 404 86 420 101 429 c 1 107 434 126 437 143 437 c 2 278 437 l 1 EndSplineSet MinimumDistance: x0,-1 Kerns: 97 -17 225 -17 226 -17 228 -17 230 4 224 -17 229 -17 99 -18 231 -15 58 -95 44 -108 100 -8 101 -7 233 -7 234 -7 232 -7 102 -16 103 -5 104 -20 45 -41 105 -25 106 -33 107 -30 108 -47 109 36 110 10 111 -12 243 -12 244 -12 246 -12 339 18 242 -12 248 -12 112 30 46 -122 113 -4 8217 -41 114 -11 115 -21 59 -83 116 20 117 20 118 26 119 26 120 7 121 16 122 -21 EndChar StartChar: s Encoding: 115 115 Width: 600 Flags: HMW HStem: -16 100<275.5 332> 350 100<275.5 322> VStem: 92 110<310.5 324> 417 110<115.5 133.5> Fore 409 312 m 2 404 321 l 1 376 341 343 350 301 350 c 0 250 350 202 333 202 315 c 0 202 306 212 297 228 291 c 0 242 286 248 285 312 276 c 0 387 266 427 255 457 238 c 0 501 214 527 171 527 125 c 0 527 43 433 -16 304 -16 c 0 247 -16 196 -6 156 13 c 1 145 4 137 1 124 1 c 0 106 1 90 9 80 25 c 0 75 34 73 43 73 67 c 2 73 100 l 2 73 127 75 136 83 146 c 0 93 160 107 167 124 167 c 0 150 167 166 153 175 123 c 1 204 97 246 84 300 84 c 0 364 84 417 104 417 127 c 0 417 140 404 154 383 162 c 0 366 169 345 173 291 179 c 0 151 194 92 234 92 313 c 0 92 393 178 450 298 450 c 0 347 450 388 442 427 424 c 1 435 443 444 450 459 450 c 0 491 450 506 430 506 384 c 2 506 347 l 2 506 321 504 311 497 301 c 0 487 289 471 281 456 281 c 0 435 281 421 290 409 312 c 2 EndSplineSet Kerns: 8217 -60 116 -11 EndChar StartChar: t Encoding: 116 116 Width: 600 Flags: HMW HStem: -16 100<281 325> 337 100<79 114 214 395> 571 20<156 172.5> VStem: 114 100<130.5 141 141 337 437 525> Fore 214 337 m 1 214 141 l 2 214 120 216 111 222 104 c 0 234 91 262 84 300 84 c 0 353 84 401 95 446 118 c 0 463 127 470 129 481 129 c 0 508 129 529 106 529 78 c 0 529 54 517 41 479 24 c 0 430 1 351 -16 299 -16 c 0 185 -16 114 37 114 122 c 2 114 337 l 1 79 337 l 2 54 337 43 339 33 347 c 0 21 356 13 372 13 387 c 0 13 404 22 421 37 430 c 0 46 436 53 437 79 437 c 2 114 437 l 1 114 525 l 2 114 551 116 561 124 571 c 0 133 583 148 591 164 591 c 0 181 591 198 582 207 567 c 0 213 558 214 551 214 525 c 2 214 437 l 1 395 437 l 2 422 437 430 435 441 428 c 1 453 418 461 403 461 387 c 0 461 370 452 353 437 344 c 0 429 339 417 337 395 337 c 2 214 337 l 1 EndSplineSet Kerns: 83 -35 97 -16 225 -16 228 -16 230 9 229 -16 58 -117 101 -24 233 -24 104 -5 111 -30 243 -30 246 -30 8217 -102 59 -103 EndChar StartChar: u Encoding: 117 117 Width: 600 Flags: HMW HStem: -13 100<253 300.5> 337 100<375 410> VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337> Fore 510 437 m 1 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 17 547 7 c 0 539 2 526 0 505 0 c 2 410 0 l 1 410 48 l 1 360 1 328 -13 273 -13 c 0 228 -13 186 0 154 24 c 0 114 54 95 97 95 156 c 2 95 337 l 1 68 337 l 2 35 337 13 358 13 387 c 0 13 404 22 421 37 430 c 0 46 436 54 437 79 437 c 2 195 437 l 1 195 159 l 2 195 110 223 87 283 87 c 0 333 87 358 100 410 155 c 1 410 337 l 1 375 337 l 2 350 337 345 336 330 347 c 24 316 358 309 372 309 387 c 0 309 404 318 421 333 430 c 0 342 436 351 437 375 437 c 2 510 437 l 1 EndSplineSet Kerns: 8217 -56 EndChar StartChar: v Encoding: 118 118 Width: 600 Flags: HMW HStem: 0 20 417 20<66 198 198 211 399 534 534 547> Fore 302 122 m 1 409 337 l 1 399 337 l 2 374 337 363 339 354 346 c 0 341 356 333 371 333 387 c 0 333 404 342 421 357 430 c 0 366 435 375 437 399 437 c 2 534 437 l 2 560 437 570 435 580 428 c 0 592 418 600 403 600 387 c 0 600 370 591 353 576 344 c 0 568 339 557 337 534 337 c 2 518 337 l 1 351 0 l 1 247 0 l 1 80 337 l 1 66 337 l 2 41 337 30 339 21 346 c 0 8 356 0 371 0 387 c 0 0 404 9 421 24 430 c 0 33 435 42 437 66 437 c 2 198 437 l 2 224 437 234 435 244 428 c 0 256 418 264 403 264 387 c 0 264 370 255 353 240 344 c 0 232 339 221 337 198 337 c 2 193 337 l 1 302 122 l 1 EndSplineSet Kerns: 97 -3 225 -3 226 -3 228 -3 230 18 224 -3 229 -3 227 -3 99 -11 58 -81 44 -136 103 1 45 -23 108 -77 111 -5 243 -5 246 -5 242 -5 248 -5 46 -156 115 -11 59 -69 EndChar StartChar: w Encoding: 119 119 Width: 600 Flags: HMW HStem: 0 20 417 20<66 158 158 171 441 534 534 547> Fore 301 181 m 1 233 0 l 1 139 0 l 1 54 338 l 1 20 340 0 358 0 387 c 0 0 414 17 432 45 435 c 0 57 437 58 437 66 437 c 2 158 437 l 2 184 437 194 435 204 428 c 0 216 418 224 403 224 387 c 0 224 370 215 354 201 345 c 0 193 340 185 338 160 338 c 1 199 185 l 1 259 343 l 1 347 343 l 1 408 185 l 1 448 338 l 1 441 338 l 2 415 338 405 340 396 347 c 0 383 356 375 372 375 387 c 0 375 402 383 418 396 427 c 0 404 434 420 437 441 437 c 2 534 437 l 2 560 437 570 435 579 428 c 0 592 418 600 403 600 387 c 0 600 358 581 340 548 338 c 1 464 0 l 1 372 0 l 1 301 181 l 1 EndSplineSet Kerns: 97 -3 225 -3 226 -3 228 -3 230 23 224 -3 229 -3 227 -3 99 -6 58 -81 44 -90 101 2 233 2 234 2 232 2 103 3 45 3 108 -48 111 -2 243 -2 246 -2 242 -2 248 2 46 -109 115 -11 59 -69 EndChar StartChar: x Encoding: 120 120 Width: 600 Flags: HMW HStem: 0 20 417 20<106 198 198 211 400 491 491 504> Fore 373 227 m 1 525 100 l 1 559 98 579 80 579 50 c 0 579 33 569 16 555 7 c 0 547 2 534 0 513 0 c 2 401 0 l 2 376 0 364 3 354 10 c 0 341 20 334 34 334 51 c 0 334 74 349 93 374 100 c 1 299 161 l 1 226 100 l 1 254 88 264 75 264 51 c 0 264 17 242 0 198 0 c 2 87 0 l 2 43 0 21 17 21 50 c 0 21 80 41 98 75 100 c 1 220 228 l 1 92 337 l 1 59 340 40 358 40 387 c 0 40 414 57 432 85 435 c 0 97 437 98 437 106 437 c 2 198 437 l 2 224 437 234 435 244 427 c 0 256 418 264 403 264 388 c 0 264 370 255 353 238 342 c 1 299 293 l 1 360 343 l 1 341 356 334 369 334 386 c 0 334 414 351 432 379 435 c 0 391 437 392 437 400 437 c 2 491 437 l 2 517 437 527 435 537 428 c 0 550 418 558 403 558 387 c 0 558 358 539 340 505 337 c 1 373 227 l 1 EndSplineSet Kerns: 97 5 99 -14 101 -5 233 -5 111 -10 113 -8 EndChar StartChar: y Encoding: 121 121 Width: 600 Flags: HMW HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> Fore 242 3 m 5 70 337 l 1 39 341 21 359 21 387 c 0 21 414 38 432 67 435 c 0 78 437 80 437 87 437 c 2 177 437 l 2 203 437 213 435 223 428 c 0 235 418 243 403 243 387 c 0 243 356 222 338 184 337 c 1 298 114 l 1 418 337 l 1 377 337 354 355 354 387 c 0 354 414 371 432 400 435 c 0 411 437 413 437 421 437 c 2 513 437 l 2 539 437 549 435 558 428 c 0 572 418 579 403 579 387 c 0 579 358 560 340 527 337 c 1 297 -105 l 1 302 -105 l 2 328 -105 338 -107 348 -114 c 0 360 -124 368 -139 368 -155 c 0 368 -172 359 -188 344 -198 c 0 336 -203 324 -205 302 -205 c 2 87 -205 l 2 62 -205 57 -206 42 -195 c 24 28 -184 21 -171 21 -155 c 0 21 -138 30 -121 45 -112 c 0 54 -107 63 -105 87 -105 c 2 187 -105 l 1 242 3 l 5 EndSplineSet Kerns: 97 -13 225 -13 226 -13 228 -13 230 8 224 -13 229 -13 227 -13 99 -21 58 -91 44 -134 101 -11 233 -11 234 -11 232 -11 103 -9 45 -19 108 -78 111 -15 243 -15 246 -15 242 -15 248 -15 46 -155 115 -21 59 -79 EndChar StartChar: z Encoding: 122 122 Width: 600 Flags: HMW HStem: 0 100<244 419> 337 100<197 346 197 197> Fore 244 100 m 1 419 100 l 1 421 135 439 154 469 154 c 0 486 154 503 145 512 130 c 0 518 121 519 114 519 88 c 2 519 0 l 1 85 0 l 1 85 83 l 1 346 337 l 1 197 337 l 1 197 328 l 2 197 301 195 293 188 283 c 0 178 270 163 262 147 262 c 0 130 262 113 271 104 286 c 0 99 295 97 305 97 328 c 2 97 437 l 1 506 437 l 1 506 356 l 1 244 100 l 1 EndSplineSet EndChar StartChar: braceleft Encoding: 123 123 Width: 600 Flags: HMW VStem: 248 100<-22 -15 -15 142 328 485> Fore 348 485 m 2 348 328 l 2 348 285 342 268 319 240 c 1 343 211 348 194 348 142 c 2 348 -15 l 2 348 -42 356 -50 384 -52 c 0 413 -54 433 -75 433 -103 c 0 433 -133 411 -153 378 -153 c 0 308 -153 248 -93 248 -22 c 2 248 151 l 2 248 179 242 186 216 189 c 0 184 193 167 210 167 240 c 0 167 269 184 287 216 290 c 0 242 293 248 301 248 328 c 2 248 492 l 2 248 563 308 623 377 623 c 0 411 623 433 603 433 573 c 0 433 545 413 524 384 522 c 0 356 521 348 512 348 485 c 2 EndSplineSet EndChar StartChar: bar Encoding: 124 124 Width: 600 Flags: HMW VStem: 250 100<-87 556> Fore 350 556 m 2 350 -87 l 2 350 -112 348 -122 341 -132 c 0 331 -145 316 -153 300 -153 c 0 283 -153 267 -144 257 -129 c 0 252 -121 250 -110 250 -87 c 2 250 556 l 2 250 582 252 592 259 602 c 0 269 614 284 622 300 622 c 0 317 622 334 613 343 598 c 0 348 589 350 580 350 556 c 2 EndSplineSet EndChar StartChar: braceright Encoding: 125 125 Width: 600 Flags: HMW VStem: 252 100<-15 142 328 485 485 492> Fore 252 -15 m 2 252 142 l 2 252 185 258 202 281 230 c 1 257 259 252 276 252 328 c 2 252 485 l 2 252 512 244 520 216 522 c 0 187 524 167 545 167 573 c 0 167 603 189 623 222 623 c 0 292 623 352 563 352 492 c 2 352 319 l 2 352 291 358 284 384 281 c 0 416 277 433 260 433 230 c 0 433 201 416 183 384 180 c 0 358 177 352 169 352 142 c 2 352 -22 l 2 352 -93 292 -153 223 -153 c 0 189 -153 167 -133 167 -103 c 0 167 -75 187 -54 216 -52 c 0 244 -51 252 -42 252 -15 c 2 EndSplineSet EndChar StartChar: asciitilde Encoding: 126 126 Width: 600 Flags: W HStem: 179 105<388 393> 281 104<211 215> Fore 488 364 m 0 515 364 538 341 538 314 c 0 538 294 530 280 497 241 c 0 460 197 430 179 391 179 c 0 352 179 314 200 254 254 c 0 233 272 220 281 212 281 c 0 202 281 192 272 165 239 c 0 139 207 131 201 113 201 c 0 86 201 62 225 62 252 c 0 62 271 72 290 101 322 c 0 140 367 172 385 213 385 c 0 255 385 282 370 350 307 c 1 368 292 380 284 389 284 c 0 400 284 413 297 438 330 c 0 458 357 468 364 488 364 c 0 EndSplineSet EndChar StartChar: nonbreakingspace Encoding: 160 160 Width: 600 Flags: W Ref: 32 N 1 0 0 1 0 0 EndChar StartChar: exclamdown Encoding: 161 161 Width: 600 Flags: HMW HStem: -227 20 Fore 222 -114 m 1 251 183 l 2 254 214 272 232 300 232 c 0 328 232 347 213 350 183 c 2 379 -114 l 1 380 -127 381 -141 381 -147 c 0 381 -193 347 -227 300 -227 c 0 254 -227 220 -193 220 -147 c 0 220 -140 221 -126 222 -114 c 1 292 426 m 2 309 426 l 2 346 426 375 397 375 360 c 0 375 323 346 294 309 294 c 2 292 294 l 2 255 294 225 323 225 360 c 0 225 397 255 426 292 426 c 2 EndSplineSet EndChar StartChar: cent Encoding: 162 162 Width: 600 Flags: HMW HStem: -44 241<292.5 309> 427 234<293 309.5> VStem: 83 100<278.5 343.5> 251 100<22 99 527 594> Fore 351 99 m 1 351 22 l 2 351 -5 349 -13 342 -23 c 0 332 -36 317 -44 301 -44 c 0 284 -44 268 -35 258 -20 c 0 253 -12 251 -1 251 22 c 2 251 103 l 1 148 128 83 209 83 312 c 0 83 409 152 493 251 517 c 1 251 594 l 2 251 621 253 630 261 640 c 0 271 654 285 661 301 661 c 0 318 661 335 652 344 637 c 0 350 628 351 620 351 594 c 2 351 527 l 1 382 522 404 515 424 503 c 1 433 506 438 507 444 507 c 0 462 507 478 498 488 483 c 0 494 474 495 467 495 441 c 2 495 399 l 2 495 372 493 364 486 354 c 0 476 341 461 333 445 333 c 0 433 333 418 339 410 346 c 1 403 354 403 354 395 384 c 0 388 414 365 427 320 427 c 0 241 427 183 377 183 310 c 0 183 247 238 197 310 197 c 0 347 197 381 208 415 233 c 0 427 241 437 245 449 245 c 0 475 245 499 221 499 194 c 0 499 152 439 114 351 99 c 1 EndSplineSet EndChar StartChar: sterling Encoding: 163 163 Width: 600 Flags: W HStem: 0 100<248 450> 243 100<77 142 270 321> 498 100<289 313> VStem: 33 348<288 295> 55 495<51 90> 126 100<416.987 445> 169 101<208 242> Fore 314 243 m 2 269 243 l 1 270 231 270 221 270 216 c 0 270 172 264 142 247 100 c 1 450 100 l 1 454 130 471 146 499 146 c 0 530 146 550 124 550 90 c 0 550 32 512 0 442 0 c 2 121 0 l 2 98 0 85 3 76 10 c 0 63 19 55 35 55 51 c 0 55 78 70 93 105 100 c 0 130 105 141 113 150 132 c 0 163 157 169 188 169 224 c 0 169 227 169 235 168 243 c 1 99 243 l 2 74 243 63 245 54 252 c 0 41 262 33 277 33 293 c 0 33 310 42 327 57 336 c 0 66 342 74 343 99 343 c 2 143 343 l 1 131 379 126 403 126 432 c 0 126 529 198 598 299 598 c 0 377 598 457 546 457 495 c 0 457 467 435 444 408 444 c 0 389 444 384 447 361 472 c 0 345 490 325 498 298 498 c 0 257 498 226 472 226 437 c 0 226 416 226 414 246 343 c 1 314 343 l 2 341 343 350 341 360 334 c 0 373 324 381 309 381 293 c 4 381 276 372 260 357 250 c 0 348 245 338 243 314 243 c 2 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: currency Encoding: 164 164 Width: 600 Flags: HMW HStem: 97 100<282 317.5> 388 100<282 318> VStem: 106 100<274.5 310> 394 100<274.5 309.5> Fore 131 388 m 1 98 420 l 2 83 435 73 455 73 469 c 0 73 496 96 519 124 519 c 0 141 519 148 515 171 493 c 2 203 462 l 1 240 482 264 488 300 488 c 0 336 488 360 481 397 461 c 1 428 491 l 2 450 513 458 517 475 517 c 0 503 517 526 494 526 466 c 0 526 449 522 442 500 420 c 2 469 388 l 1 488 351 494 327 494 292 c 0 494 257 488 233 468 196 c 1 501 162 l 2 522 141 527 132 527 116 c 0 527 88 503 64 475 64 c 0 458 64 451 68 429 90 c 2 395 122 l 1 359 103 335 97 300 97 c 0 264 97 241 103 204 123 c 1 171 91 l 2 148 68 141 64 124 64 c 0 96 64 73 87 73 115 c 0 73 132 77 139 99 162 c 2 131 196 l 1 112 233 106 257 106 292 c 0 106 328 112 352 131 388 c 1 300 388 m 0 248 388 206 346 206 293 c 0 206 241 249 197 300 197 c 0 351 197 394 241 394 292 c 0 394 346 353 388 300 388 c 0 EndSplineSet EndChar StartChar: yen Encoding: 165 165 Width: 600 Flags: HMW HStem: 0 100<204 250 350 397> 135 56<153 250 350 447> 225 56<153 225 375 447> VStem: 250 100<100 135 191 225> Fore 301 348 m 1 396 481 l 1 370 488 355 506 355 530 c 0 355 547 364 564 379 573 c 0 388 579 396 580 422 580 c 2 513 580 l 2 541 580 548 578 558 571 c 0 571 561 579 546 579 530 c 0 579 513 570 497 555 487 c 0 550 484 521 478 515 480 c 2 514 480 l 1 375 281 l 1 447 281 l 2 467 281 478 271 478 253 c 0 478 235 467 225 447 225 c 2 350 225 l 1 350 191 l 1 447 191 l 2 467 191 478 181 478 163 c 0 478 145 467 135 447 135 c 2 350 135 l 1 350 100 l 1 397 100 l 2 424 100 432 98 442 91 c 0 456 81 463 66 463 50 c 0 463 17 441 0 397 0 c 2 203 0 l 2 180 0 166 3 158 10 c 0 145 19 137 35 137 50 c 0 137 67 146 84 161 93 c 0 170 99 178 100 204 100 c 2 250 100 l 1 250 135 l 1 153 135 l 2 133 135 122 145 122 163 c 0 122 181 133 191 153 191 c 2 250 191 l 1 250 225 l 1 153 225 l 2 133 225 122 235 122 253 c 0 122 271 132 281 153 281 c 2 225 281 l 1 87 481 l 1 85 480 83 480 82 480 c 0 48 477 21 499 21 530 c 0 21 547 30 564 45 573 c 0 54 579 61 580 87 580 c 2 179 580 l 2 208 580 215 578 226 570 c 0 239 560 246 546 246 530 c 0 246 506 230 486 207 482 c 1 301 348 l 1 EndSplineSet EndChar StartChar: brokenbar Encoding: 166 166 Width: 600 Flags: HMW VStem: 250 100<-87 116 353 556> Fore 350 556 m 2 350 353 l 2 350 326 348 318 341 308 c 0 331 295 316 287 300 287 c 0 283 287 266 296 257 311 c 0 252 319 250 330 250 353 c 2 250 556 l 2 250 581 252 592 259 601 c 0 269 614 284 622 300 622 c 0 327 622 345 605 349 577 c 0 350 566 350 564 350 556 c 2 350 116 m 2 350 -87 l 2 350 -112 348 -122 341 -132 c 0 331 -145 316 -153 300 -153 c 0 283 -153 267 -144 257 -129 c 0 252 -121 250 -110 250 -87 c 2 250 116 l 2 250 142 252 152 259 162 c 0 269 174 284 182 300 182 c 0 317 182 334 173 343 158 c 0 348 149 350 140 350 116 c 2 EndSplineSet EndChar StartChar: section Encoding: 167 167 Width: 600 Flags: W HStem: -170 88<169 326> -170 182<116 133> 493 90<274 431> VStem: 36 96<284 294> 81 88<-81 -28> 132 85<433 442> 381 86<-30 -26> 431 88<438 492> 468 96<118 128> Fore 431 493 m 1 287 493 l 2 248 493 217 469 217 440 c 0 217 415 252 383 324 342 c 2 416 291 l 2 533 226 564 191 564 129 c 0 564 68 527 25 462 10 c 1 466 -7 467 -16 467 -28 c 0 467 -63 454 -94 429 -123 c 0 399 -156 365 -170 312 -170 c 2 81 -170 l 1 81 -43 l 2 81 -6 95 12 125 12 c 0 141 12 155 4 163 -9 c 0 168 -16 169 -22 169 -43 c 2 169 -82 l 1 314 -82 l 2 350 -82 381 -57 381 -29 c 0 381 -3 347 29 276 69 c 2 170 130 l 2 71 187 36 226 36 283 c 0 36 342 72 384 137 402 c 1 133 414 132 420 132 432 c 0 132 469 147 507 174 535 c 0 205 569 241 583 294 583 c 2 519 583 l 1 519 456 l 2 519 433 518 427 511 419 c 0 503 408 489 401 475 401 c 0 460 401 445 409 437 421 c 0 433 428 431 437 431 456 c 2 431 493 l 1 371 214 m 2 272 271 l 2 238 290 228 297 192 326 c 1 153 326 132 314 132 292 c 0 132 266 159 239 218 205 c 2 321 147 l 1 374 114 390 103 407 88 c 1 413 88 l 1 424 88 l 2 449 89 468 102 468 121 c 0 468 144 433 178 371 214 c 2 EndSplineSet MinimumDistance: x5,-1 EndChar StartChar: dieresis Encoding: 168 168 Width: 600 Flags: HMW VStem: 136 120<577.5 610> 344 120<577.5 610> Fore 196 654 m 0 230 654 256 627 256 593 c 0 256 561 229 534 196 534 c 0 163 534 136 561 136 594 c 0 136 627 163 654 196 654 c 0 404 654 m 0 438 654 464 627 464 593 c 0 464 561 437 534 404 534 c 0 371 534 344 561 344 594 c 0 344 627 371 654 404 654 c 0 EndSplineSet EndChar StartChar: copyright Encoding: 169 169 Width: 600 Flags: W HStem: -15 73<281 313> 118 71<290 313> 395 71<281 305> 525 73<281 313> VStem: -7 73<271 307> 135 71<257 307> 533 73<270 307> Fore 135 269 m 2 135 305 l 2 135 397 202 466 291 466 c 0 319 466 342 461 370 447 c 1 375 459 384 466 398 466 c 0 418 466 431 451 431 428 c 2 431 422 l 1 431 368 l 2 431 340 418 324 396 324 c 0 375 324 365 335 360 360 c 0 357 379 327 395 293 395 c 0 242 395 206 357 206 304 c 2 206 270 l 2 206 221 244 189 303 189 c 0 342 189 355 194 378 218 c 0 385 225 394 229 403 229 c 0 422 229 439 212 439 193 c 0 439 154 373 118 302 118 c 0 206 118 135 182 135 269 c 2 299 598 m 0 469 598 606 461 606 292 c 0 606 121 469 -15 296 -15 c 0 131 -15 -7 124 -7 292 c 0 -7 461 130 598 299 598 c 0 300 525 m 0 170 525 66 421 66 292 c 0 66 164 171 58 297 58 c 0 429 58 533 161 533 292 c 0 533 421 428 525 300 525 c 0 EndSplineSet EndChar StartChar: ordfeminine Encoding: 170 170 Width: 600 Flags: HMW HStem: 182 77<176 431 431 432> 273 79<239.5 265.5> 417 70<267 297.5> 517 78<284.5 316.5> VStem: 118 91<367.5 379.5> 354 78<383 410 410 410 482 490> Fore 354 284 m 1 354 295 l 1 314 279 285 273 246 273 c 0 175 273 118 316 118 369 c 0 118 390 129 415 146 434 c 0 178 470 225 487 292 487 c 0 312 487 325 486 354 482 c 1 354 490 l 2 354 509 337 517 296 517 c 0 273 517 249 514 217 506 c 0 206 503 195 501 189 501 c 0 168 501 151 519 151 541 c 0 151 557 160 569 175 575 c 0 209 587 257 595 292 595 c 0 381 595 432 557 432 490 c 2 432 362 l 1 438 362 l 2 473 362 489 350 489 323 c 0 489 298 472 284 439 284 c 2 354 284 l 1 354 383 m 1 354 410 l 1 322 416 307 417 288 417 c 0 246 417 209 397 209 374 c 0 209 361 227 352 252 352 c 0 284 352 328 365 354 383 c 1 432 182 m 2 176 182 l 2 132 182 124 189 124 227 c 0 124 252 135 259 176 259 c 2 431 259 l 2 467 259 483 247 483 221 c 0 483 195 466 182 432 182 c 2 EndSplineSet EndChar StartChar: guillemotleft Encoding: 171 171 Width: 600 Flags: HMW HStem: 0 20<304.5 318 533.5 547> Fore 175 218 m 1 326 77 l 2 337 67 342 59 342 50 c 0 342 34 327 20 309 20 c 0 300 20 295 22 281 33 c 2 33 218 l 1 281 402 l 2 295 413 300 415 310 415 c 0 327 415 342 401 342 385 c 0 342 376 338 368 326 358 c 1 175 218 l 1 404 218 m 1 555 77 l 2 566 67 571 59 571 50 c 0 571 34 556 20 538 20 c 0 529 20 524 22 510 33 c 2 262 218 l 1 510 402 l 2 524 413 529 415 539 415 c 0 556 415 571 401 571 385 c 0 571 376 567 368 555 358 c 1 404 218 l 1 EndSplineSet EndChar StartChar: logicalnot Encoding: 172 172 Width: 600 Flags: HMW HStem: 345 100<108 365> VStem: 365 100<181 345 345 345> Fore 465 445 m 1 465 181 l 2 465 154 463 146 456 136 c 0 446 123 431 115 415 115 c 0 398 115 381 124 372 139 c 0 367 148 365 158 365 181 c 2 365 345 l 1 108 345 l 2 84 345 72 347 63 355 c 1 50 364 42 380 42 395 c 0 42 412 51 429 66 438 c 0 75 444 82 445 108 445 c 2 465 445 l 1 EndSplineSet EndChar StartChar: softhyphen Encoding: 173 173 Width: 600 Flags: W HStem: 229 100<108 492> Ref: 45 N 1 0 0 1 0 0 EndChar StartChar: registered Encoding: 174 174 Width: 600 Flags: HMW HStem: -15 73<234 363> 246 70<269 284> 387 71<269 269 269 292 292 294> 525 73<235.5 364> VStem: -7 73<228 356> 197 72<197 246 316 387> 348 71<344 364.5> 533 73<226.5 356> Fore 269 246 m 1 269 197 l 1 295 197 311 184 311 162 c 0 311 139 295 126 267 126 c 2 199 126 l 2 170 126 154 139 154 162 c 0 154 184 169 197 197 197 c 1 197 387 l 1 169 388 154 401 154 423 c 0 154 446 170 458 199 458 c 2 292 458 l 2 367 458 419 415 419 354 c 0 419 317 395 283 358 266 c 1 382 244 389 235 411 197 c 1 434 195 447 182 447 162 c 0 447 139 431 126 403 126 c 2 363 126 l 1 351 175 312 233 284 246 c 1 269 246 l 1 269 316 m 1 294 316 l 2 325 316 348 333 348 355 c 0 348 374 327 387 294 387 c 2 269 387 l 1 269 316 l 1 300 598 m 0 468 598 606 461 606 292 c 0 606 121 469 -15 296 -15 c 0 131 -15 -7 124 -7 292 c 0 -7 460 131 598 300 598 c 0 300 525 m 0 171 525 66 420 66 292 c 0 66 164 171 58 297 58 c 0 429 58 533 161 533 292 c 0 533 420 428 525 300 525 c 0 EndSplineSet EndChar StartChar: macron Encoding: 175 175 Width: 600 Flags: HMW HStem: 546 80<178 422> Fore 178 626 m 2 422 626 l 2 445 626 457 623 464 615 c 0 470 608 475 594 475 586 c 0 475 561 455 546 422 546 c 2 178 546 l 2 153 546 145 548 136 558 c 0 130 566 125 578 125 586 c 0 125 611 144 626 178 626 c 2 EndSplineSet EndChar StartChar: degree Encoding: 176 176 Width: 600 Flags: HMW HStem: 243 61<268.5 331> 535 61<268.5 331.5> VStem: 125 61<388.5 451.5> 414 61<388 451.5> Fore 300 596 m 0 397 596 475 517 475 420 c 0 475 321 397 243 298 243 c 0 204 243 125 323 125 420 c 0 125 517 203 596 300 596 c 0 300 535 m 0 237 535 186 483 186 420 c 0 186 357 238 304 299 304 c 0 363 304 414 356 414 420 c 0 414 483 363 535 300 535 c 0 EndSplineSet EndChar StartChar: plusminus Encoding: 177 177 Width: 600 Flags: HMW HStem: 0 100<108 492> 330 100<108 250 350 491> VStem: 250 100<230 330 430 558> Fore 350 330 m 1 350 230 l 2 350 203 348 195 341 185 c 0 331 172 316 164 300 164 c 0 283 164 266 174 257 188 c 0 252 197 250 207 250 230 c 2 250 330 l 1 108 330 l 2 84 330 72 332 63 340 c 1 50 349 42 365 42 380 c 0 42 397 52 414 66 423 c 0 75 429 83 430 108 430 c 2 250 430 l 1 250 558 l 2 250 584 252 594 260 603 c 1 269 616 284 624 300 624 c 0 317 624 334 615 343 600 c 0 349 591 350 584 350 558 c 2 350 430 l 1 491 430 l 2 519 430 527 428 537 421 c 0 550 411 558 396 558 380 c 0 558 363 549 346 534 337 c 0 526 332 514 330 491 330 c 2 350 330 l 1 108 100 m 2 492 100 l 2 519 100 527 98 537 91 c 0 550 81 558 66 558 50 c 0 558 33 549 16 534 7 c 0 526 2 514 0 492 0 c 2 108 0 l 2 84 0 72 2 63 10 c 1 50 19 42 35 42 50 c 0 42 67 52 84 66 93 c 0 75 99 83 100 108 100 c 2 EndSplineSet EndChar StartChar: twosuperior Encoding: 178 178 Width: 600 Flags: HMW HStem: 247 67<253 362> 570 67<281.5 311.5> VStem: 358 67<506 534> Fore 253 314 m 1 362 314 l 1 365 335 376 346 395 346 c 0 418 346 429 332 429 303 c 2 429 247 l 1 149 247 l 1 149 315 l 1 335 469 358 492 358 520 c 0 358 548 330 570 293 570 c 0 270 570 250 562 237 546 c 0 232 540 231 539 225 520 c 0 221 508 208 500 195 500 c 0 176 500 161 515 161 533 c 0 161 553 177 583 198 602 c 0 223 624 258 637 294 637 c 0 369 637 425 586 425 517 c 0 425 466 402 439 253 314 c 1 EndSplineSet EndChar StartChar: threesuperior Encoding: 179 179 Width: 600 Flags: W HStem: 238 67<269 304> 570 67<283 313> VStem: 362 67<526 534> 375 67<350 359> Fore 286 484 m 2 311 484 l 2 338 484 362 505 362 528 c 0 362 554 337 570 299 570 c 0 266 570 251 564 232 543 c 0 226 537 217 533 208 533 c 0 190 533 175 549 175 567 c 0 175 604 236 637 302 637 c 0 375 637 429 591 429 529 c 0 429 498 411 469 381 450 c 2 381 450 379 449 378 448 c 1 419 427 442 393 442 355 c 0 442 322 424 287 396 266 c 0 370 247 335 238 285 238 c 0 207 238 157 259 157 292 c 0 157 311 172 326 190 326 c 0 198 326 202 325 212 318 c 0 227 308 245 305 283 305 c 0 343 305 375 323 375 357 c 0 375 378 357 399 331 411 c 0 319 416 314 417 286 418 c 0 265 420 252 432 252 451 c 0 252 470 267 484 286 484 c 2 EndSplineSet MinimumDistance: x11,-1 EndChar StartChar: acute Encoding: 180 180 Width: 600 Flags: W DStem: 406 680 452 624 273 569 319 512 Fore 452 624 m 1 319 512 l 2 304 500 297 496 287 496 c 0 267 496 250 513 250 532 c 0 250 545 257 556 273 569 c 2 406 680 l 2 422 693 427 696 438 696 c 0 459 696 475 680 475 659 c 0 475 647 469 637 452 624 c 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: mu Encoding: 181 181 Width: 600 Flags: W HStem: -16 100<252 269> 0 21G<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 95 365 409> VStem: 95 100<-105 -8 135 337> 410 100<138 337> Fore 195 -7 m 1 195 -87 l 2 195 -113 193 -122 186 -132 c 0 176 -145 161 -153 145 -153 c 0 128 -153 112 -144 102 -129 c 0 97 -121 95 -110 95 -87 c 2 95 337 l 1 79 337 l 2 54 337 43 339 33 347 c 0 21 356 13 372 13 387 c 0 13 404 22 421 37 430 c 0 47 436 52 437 79 437 c 2 195 437 l 1 195 144 l 2 195 101 214 84 260 84 c 0 304 84 346 99 410 138 c 1 410 337 l 1 375 337 l 2 350 337 339 339 330 347 c 1 317 356 309 372 309 387 c 0 309 404 318 421 333 430 c 0 342 436 351 437 375 437 c 2 510 437 l 1 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 17 547 7 c 0 539 2 526 0 505 0 c 2 410 0 l 1 410 22 l 1 356 -4 305 -16 253 -16 c 0 232 -16 215 -13 195 -7 c 1 EndSplineSet MinimumDistance: x22,-1 EndChar StartChar: paragraph Encoding: 182 182 Width: 600 Flags: HMW HStem: -174 78<191 270 468 504> 505 78<348 392 348 348 468 468 468 502> VStem: 49 113<361 405> 270 78<-96 185 185 185 266 500 500 500> 392 76<-96 505> Fore 468 505 m 1 468 -96 l 1 504 -96 l 2 541 -96 558 -109 558 -135 c 0 558 -161 540 -174 504 -174 c 2 411 -174 l 2 390 -174 380 -165 371 -140 c 1 360 -168 352 -174 328 -174 c 2 191 -174 l 2 156 -174 138 -161 138 -135 c 0 138 -122 146 -109 157 -102 c 0 165 -97 170 -96 191 -96 c 2 270 -96 l 1 270 185 l 1 141 198 49 272 49 361 c 2 49 407 l 2 49 504 163 583 305 583 c 2 502 583 l 2 538 583 556 570 556 544 c 0 556 518 539 505 502 505 c 2 468 505 l 1 270 266 m 1 270 500 l 1 203 486 162 450 162 405 c 2 162 361 l 2 162 316 203 280 270 266 c 1 392 505 m 1 348 505 l 1 348 -96 l 1 361 -102 366 -108 371 -124 c 1 375 -109 381 -102 392 -96 c 1 392 505 l 1 EndSplineSet EndChar StartChar: periodcentered Encoding: 183 183 Width: 600 Flags: W HStem: 214 132<289 311> VStem: 225 150<278 282> Fore 309 214 m 2 291 214 l 2 255 214 225 244 225 280 c 0 225 316 255 346 291 346 c 2 309 346 l 2 346 346 375 317 375 280 c 0 375 243 346 214 309 214 c 2 EndSplineSet MinimumDistance: x5,-1 EndChar StartChar: cedilla Encoding: 184 184 Width: 600 Flags: HMW HStem: -229 70<292.5 312.5> -100 100<281.5 301> VStem: 262 70<-41 0> 337 70<-142 -123.5> Fore 262 0 m 1 332 0 l 1 332 -41 l 1 383 -52 407 -81 407 -132 c 0 407 -189 362 -229 300 -229 c 0 273 -229 232 -218 208 -205 c 0 189 -194 180 -182 180 -166 c 0 180 -147 196 -131 215 -131 c 0 223 -131 226 -132 244 -142 c 0 262 -152 284 -159 301 -159 c 0 324 -159 337 -150 337 -134 c 0 337 -113 318 -100 284 -100 c 0 279 -100 275 -100 262 -102 c 1 262 0 l 1 EndSplineSet EndChar StartChar: onesuperior Encoding: 185 185 Width: 600 Flags: HMW HStem: 247 67<210 267 334 391> VStem: 267 67<314 551 551 551> Fore 334 638 m 1 334 314 l 1 391 314 l 2 420 314 434 303 434 281 c 0 434 259 419 247 391 247 c 2 210 247 l 2 182 247 166 259 166 281 c 0 166 303 180 314 210 314 c 2 267 314 l 1 267 551 l 1 219 539 l 2 208 536 205 535 199 535 c 0 182 535 168 551 168 570 c 0 168 589 177 597 202 604 c 2 334 638 l 1 EndSplineSet EndChar StartChar: ordmasculine Encoding: 186 186 Width: 600 Flags: HMW HStem: 182 77<174 428> 273 78<277 325> 517 78<276.5 325.5> VStem: 131 79<409 453.5> 392 79<409 453.5> Fore 301 595 m 0 396 595 471 521 471 428 c 0 471 343 394 273 301 273 c 0 207 273 131 343 131 430 c 0 131 520 208 595 301 595 c 0 301 517 m 0 252 517 210 477 210 430 c 0 210 388 253 351 301 351 c 0 349 351 392 388 392 430 c 0 392 477 350 517 301 517 c 0 428 182 m 2 174 182 l 2 139 182 122 195 122 221 c 0 122 233 129 246 140 253 c 0 148 258 153 259 174 259 c 2 428 259 l 2 464 259 480 247 480 221 c 0 480 195 463 182 428 182 c 2 EndSplineSet EndChar StartChar: guillemotright Encoding: 187 187 Width: 600 Flags: HMW HStem: 0 20<56.5 70 286.5 300> Fore 430 217 m 1 279 358 l 2 268 368 263 376 263 385 c 0 263 401 278 415 296 415 c 0 305 415 310 413 324 402 c 2 571 217 l 1 324 33 l 2 310 22 305 20 295 20 c 0 278 20 263 34 263 50 c 0 263 59 267 67 279 77 c 1 430 217 l 1 200 217 m 1 49 358 l 2 38 368 33 376 33 385 c 0 33 401 48 415 66 415 c 0 75 415 80 413 94 402 c 2 341 217 l 1 94 33 l 2 80 22 75 20 65 20 c 0 48 20 33 34 33 50 c 0 33 59 37 67 49 77 c 1 200 217 l 1 EndSplineSet Kerns: 65 -37 198 -34 193 -37 196 -37 197 -37 84 -71 86 -72 87 -29 89 -92 EndChar StartChar: onequarter Encoding: 188 188 Width: 600 Flags: HMW HStem: 0 67<506 525> 83 67<446 525> 247 67<10 67 134 191> VStem: 67 67<314 551 551 551> 525 67<67 83 150 279 279 279> Fore 134 638 m 1 134 314 l 1 191 314 l 2 220 314 234 303 234 281 c 0 234 259 219 247 191 247 c 2 10 247 l 2 -18 247 -34 259 -34 281 c 0 -34 303 -20 314 10 314 c 2 67 314 l 1 67 551 l 1 19 539 l 2 8 536 5 535 -1 535 c 0 -18 535 -32 551 -32 570 c 0 -32 589 -23 597 2 604 c 2 134 638 l 1 473 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 67 145 84 c 0 145 90 148 99 155 110 c 1 415 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 548 481 541 473 528 c 2 592 380 m 5 592 150 l 5 615 149 629 137 629 117 c 4 629 97 616 84 592 83 c 5 592 67 l 5 615 66 629 54 629 34 c 4 629 12 613 0 585 0 c 6 506 0 l 6 478 0 463 12 463 34 c 4 463 56 477 67 506 67 c 6 525 67 l 5 525 83 l 5 362 83 l 5 362 138 l 5 508 380 l 5 592 380 l 5 525 150 m 5 525 279 l 5 446 150 l 5 525 150 l 5 EndSplineSet EndChar StartChar: onehalf Encoding: 189 189 Width: 600 Flags: HMW HStem: 0 67<453 562> 247 67<10 67 134 191> 323 67<481.5 511.5> VStem: 67 67<314 551 551 551> 558 67<259 287> Fore 134 638 m 1 134 314 l 1 191 314 l 2 220 314 234 303 234 281 c 0 234 259 219 247 191 247 c 2 10 247 l 2 -18 247 -34 259 -34 281 c 0 -34 303 -20 314 10 314 c 2 67 314 l 1 67 551 l 1 19 539 l 2 8 536 5 535 -1 535 c 0 -18 535 -32 551 -32 570 c 0 -32 589 -23 597 2 604 c 2 134 638 l 1 473 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 67 145 84 c 0 145 90 148 99 155 110 c 1 415 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 548 481 541 473 528 c 2 453 67 m 1 562 67 l 1 565 88 576 99 595 99 c 0 618 99 629 85 629 56 c 2 629 0 l 1 349 0 l 1 349 68 l 1 535 222 558 245 558 273 c 0 558 301 530 323 493 323 c 0 470 323 450 315 437 299 c 0 432 293 431 292 425 273 c 0 421 261 408 253 395 253 c 0 376 253 361 268 361 286 c 0 361 306 377 336 398 355 c 0 423 377 458 390 494 390 c 0 569 390 625 339 625 270 c 0 625 219 602 192 453 67 c 1 EndSplineSet EndChar StartChar: threequarters Encoding: 190 190 Width: 600 Flags: W HStem: 0 67<501 525> 0 380<526 593> 83 67<447 525> 238 67<69 104> 570 67<83 113> VStem: 162 67<527 534> 175 67<352 359> 362 268<109 119> 463 167<32 36> 526 67<67 83 151 278> DStem: 416 561 474 528 155 110 213 77 509 380 526 279 362 138 446 150 Fore 86 484 m 2 111 484 l 2 138 484 162 505 162 528 c 0 162 554 137 570 99 570 c 0 66 570 51 564 32 543 c 0 26 537 17 533 8 533 c 0 -10 533 -25 549 -25 567 c 0 -25 604 36 637 102 637 c 4 175 637 229 591 229 529 c 0 229 498 211 469 181 450 c 2 181 450 179 449 178 448 c 1 219 427 242 393 242 355 c 0 242 322 224 287 196 266 c 0 170 247 135 238 85 238 c 0 7 238 -43 259 -43 292 c 0 -43 311 -28 326 -10 326 c 0 -2 326 2 325 12 318 c 0 27 308 45 305 83 305 c 0 143 305 175 323 175 357 c 0 175 378 157 399 131 411 c 0 119 416 114 417 86 418 c 0 65 420 52 432 52 451 c 0 52 470 67 484 86 484 c 2 474 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 66 145 84 c 0 145 91 147 97 155 110 c 2 416 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 549 480 539 474 528 c 2 593 380 m 1 593 150 l 1 616 149 630 137 630 117 c 0 630 97 617 84 593 83 c 1 593 67 l 1 616 66 630 54 630 34 c 0 630 12 614 0 586 0 c 2 507 0 l 2 479 0 463 12 463 34 c 0 463 56 477 67 507 67 c 2 526 67 l 1 526 83 l 1 362 83 l 1 362 138 l 1 509 380 l 1 593 380 l 1 526 150 m 1 526 279 l 1 446 150 l 1 526 150 l 1 EndSplineSet MinimumDistance: x30,-1 y43,41 x41,43 x41,42 x40,37 x40,39 EndChar StartChar: questiondown Encoding: 191 191 Width: 600 Flags: HMW HStem: -227 100<259 310> -23 20 VStem: 83 100<-68 -21.5> Fore 496 -89 m 2 496 -168 l 1 399 -215 356 -227 292 -227 c 0 168 -227 83 -150 83 -38 c 0 83 43 126 90 247 143 c 1 251 179 268 197 297 197 c 0 314 197 331 188 340 173 c 0 345 164 347 154 347 131 c 2 347 75 l 1 219 26 183 0 183 -43 c 0 183 -93 227 -127 291 -127 c 0 329 -127 363 -119 396 -103 c 1 396 -89 l 2 396 -62 398 -54 405 -44 c 0 415 -31 431 -23 446 -23 c 0 463 -23 480 -33 489 -47 c 0 494 -55 496 -66 496 -89 c 2 289 386 m 2 306 386 l 2 343 386 373 356 373 320 c 0 373 284 343 254 306 254 c 2 289 254 l 2 252 254 223 283 223 320 c 0 223 357 252 386 289 386 c 2 EndSplineSet EndChar StartChar: Agrave Encoding: 192 192 Width: 600 Flags: HMW HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> Fore 416 158 m 1 178 158 l 1 155 100 l 1 178 100 l 2 205 100 213 98 223 91 c 0 236 81 244 66 244 50 c 0 244 33 235 16 220 7 c 0 212 2 199 0 178 0 c 2 45 0 l 2 1 0 -21 17 -21 50 c 0 -21 67 -12 84 3 93 c 0 12 99 21 100 46 100 c 1 201 483 l 1 138 483 l 2 112 483 102 485 92 492 c 0 79 502 71 517 71 533 c 0 71 550 80 566 95 576 c 0 104 582 111 583 138 583 c 2 354 583 l 1 553 100 l 1 581 100 590 98 600 90 c 0 613 81 621 66 621 50 c 0 621 33 612 16 597 7 c 0 589 2 576 0 555 0 c 2 416 0 l 2 392 0 380 3 371 10 c 0 358 19 350 34 350 50 c 0 350 67 359 84 374 93 c 0 383 99 390 100 416 100 c 2 439 100 l 1 416 158 l 1 375 258 m 1 297 450 l 1 218 258 l 1 375 258 l 1 210 824 m 2 343 712 l 2 359 699 366 688 366 676 c 0 366 657 349 640 329 640 c 0 320 640 310 645 297 656 c 2 164 767 l 2 147 781 141 790 141 803 c 0 141 823 157 839 178 839 c 0 188 839 196 835 210 824 c 2 EndSplineSet Kerns: 67 -14 71 -10 79 -15 81 -16 84 -27 85 -23 86 -59 87 -13 89 -27 44 -47 46 -62 EndChar StartChar: Aacute Encoding: 193 193 Width: 600 Flags: HMW HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> Fore 416 158 m 1 178 158 l 1 155 100 l 1 178 100 l 2 205 100 213 98 223 91 c 0 236 81 244 66 244 50 c 0 244 33 235 16 220 7 c 0 212 2 199 0 178 0 c 2 45 0 l 2 1 0 -21 17 -21 50 c 0 -21 67 -12 84 3 93 c 0 12 99 21 100 46 100 c 1 201 483 l 1 138 483 l 2 112 483 102 485 92 492 c 0 79 502 71 517 71 533 c 0 71 550 80 566 95 576 c 0 104 582 111 583 138 583 c 2 354 583 l 1 553 100 l 1 581 100 590 98 600 90 c 0 613 81 621 66 621 50 c 0 621 33 612 16 597 7 c 0 589 2 576 0 555 0 c 2 416 0 l 2 392 0 380 3 371 10 c 0 358 19 350 34 350 50 c 0 350 67 359 84 374 93 c 0 383 99 390 100 416 100 c 2 439 100 l 1 416 158 l 1 375 258 m 1 297 450 l 1 218 258 l 1 375 258 l 1 410 767 m 1 277 656 l 2 264 645 254 640 245 640 c 0 225 640 208 657 208 676 c 0 208 688 215 700 231 712 c 1 364 824 l 2 378 835 386 839 396 839 c 0 417 839 433 823 433 803 c 0 433 790 427 780 410 767 c 1 EndSplineSet Kerns: 67 -14 71 -10 79 -15 81 -16 84 -27 85 -23 86 -59 87 -13 89 -27 97 15 98 45 99 -4 44 -47 100 4 101 2 171 -40 8249 -40 45 -19 111 -3 46 -62 113 -4 8217 -113 116 -20 117 -12 118 -39 119 -13 121 -39 EndChar StartChar: Acircumflex Encoding: 194 194 Width: 600 Flags: HMW HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> Fore 416 158 m 1 178 158 l 1 155 100 l 1 178 100 l 2 205 100 213 98 223 91 c 0 236 81 244 66 244 50 c 0 244 33 235 16 220 7 c 0 212 2 199 0 178 0 c 2 45 0 l 2 1 0 -21 17 -21 50 c 0 -21 67 -12 84 3 93 c 0 12 99 21 100 46 100 c 1 201 483 l 1 138 483 l 2 112 483 102 485 92 492 c 0 79 502 71 517 71 533 c 0 71 550 80 566 95 576 c 0 104 582 111 583 138 583 c 2 354 583 l 1 553 100 l 1 581 100 590 98 600 90 c 0 613 81 621 66 621 50 c 0 621 33 612 16 597 7 c 0 589 2 576 0 555 0 c 2 416 0 l 2 392 0 380 3 371 10 c 0 358 19 350 34 350 50 c 0 350 67 359 84 374 93 c 0 383 99 390 100 416 100 c 2 439 100 l 1 416 158 l 1 375 258 m 1 297 450 l 1 218 258 l 1 375 258 l 1 284 750 m 1 171 653 l 2 159 643 152 640 143 640 c 0 124 640 108 657 108 675 c 0 108 689 110 692 132 711 c 2 284 839 l 1 435 711 l 1 444 703 l 2 455 694 459 687 459 675 c 0 459 657 443 640 425 640 c 0 415 640 407 644 396 653 c 2 284 750 l 1 EndSplineSet Kerns: 67 -14 71 -10 79 -15 81 -16 84 -27 85 -23 86 -59 87 -13 89 -27 44 -47 46 -62 EndChar StartChar: Atilde Encoding: 195 195 Width: 600 Flags: HMW HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 730 69<201 217> Fore 416 158 m 1 178 158 l 1 155 100 l 1 178 100 l 2 205 100 213 98 223 91 c 0 236 81 244 66 244 50 c 0 244 33 235 16 220 7 c 0 212 2 199 0 178 0 c 2 45 0 l 2 1 0 -21 17 -21 50 c 0 -21 67 -12 84 3 93 c 0 12 99 21 100 46 100 c 1 201 483 l 1 138 483 l 2 112 483 102 485 92 492 c 0 79 502 71 517 71 533 c 0 71 550 80 566 95 576 c 0 104 582 111 583 138 583 c 2 354 583 l 1 553 100 l 1 581 100 590 98 600 90 c 0 613 81 621 66 621 50 c 0 621 33 612 16 597 7 c 0 589 2 576 0 555 0 c 2 416 0 l 2 392 0 380 3 371 10 c 0 358 19 350 34 350 50 c 0 350 67 359 84 374 93 c 0 383 99 390 100 416 100 c 2 439 100 l 1 416 158 l 1 375 258 m 1 297 450 l 1 218 258 l 1 375 258 l 1 436 799 m 0 453 799 468 785 468 771 c 0 468 756 460 741 439 715 c 0 412 681 388 667 359 667 c 0 337 667 304 681 260 709 c 0 233 726 224 730 210 730 c 0 192 730 184 723 155 685 c 0 147 675 139 670 129 670 c 0 112 670 98 683 98 700 c 0 98 714 108 733 125 754 c 0 150 783 179 799 208 799 c 0 231 799 249 792 298 762 c 0 331 742 345 736 356 736 c 0 371 736 375 739 397 769 c 0 411 789 424 799 436 799 c 0 EndSplineSet Kerns: 67 -14 71 -10 79 -15 81 -16 84 -27 85 -23 86 -59 87 -13 89 -27 44 -47 46 -62 EndChar StartChar: Adieresis Encoding: 196 196 Width: 600 Flags: HMW HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> VStem: -21 120 187 120 Fore 416 158 m 1 178 158 l 1 155 100 l 1 178 100 l 2 205 100 213 98 223 91 c 0 236 81 244 66 244 50 c 0 244 33 235 16 220 7 c 0 212 2 199 0 178 0 c 2 45 0 l 2 1 0 -21 17 -21 50 c 0 -21 67 -12 84 3 93 c 0 12 99 21 100 46 100 c 1 201 483 l 1 138 483 l 2 112 483 102 485 92 492 c 0 79 502 71 517 71 533 c 0 71 550 80 566 95 576 c 0 104 582 111 583 138 583 c 2 354 583 l 1 553 100 l 1 581 100 590 98 600 90 c 0 613 81 621 66 621 50 c 0 621 33 612 16 597 7 c 0 589 2 576 0 555 0 c 2 416 0 l 2 392 0 380 3 371 10 c 0 358 19 350 34 350 50 c 0 350 67 359 84 374 93 c 0 383 99 390 100 416 100 c 2 439 100 l 1 416 158 l 1 375 258 m 1 297 450 l 1 218 258 l 1 375 258 l 1 179 798 m 0 213 798 239 771 239 737 c 0 239 705 212 678 179 678 c 0 146 678 119 705 119 738 c 0 119 771 146 798 179 798 c 0 387 798 m 0 421 798 447 771 447 737 c 0 447 705 420 678 387 678 c 0 354 678 327 705 327 738 c 0 327 771 354 798 387 798 c 0 EndSplineSet Kerns: 67 -14 71 -10 79 -15 81 -16 84 -27 85 -23 86 -59 87 -13 89 -27 97 15 98 45 99 -4 44 -47 100 4 171 -40 8249 -40 45 -19 111 -3 46 -62 113 -4 8221 -84 8217 -113 116 -20 117 -12 118 -39 119 -13 121 -39 EndChar StartChar: Aring Encoding: 197 197 Width: 600 Flags: HMW HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 630 54<264 301.5> 818 53<264 302> VStem: -21 53 172 53 Fore 416 158 m 1 178 158 l 1 155 100 l 1 178 100 l 2 205 100 213 98 223 91 c 0 236 81 244 66 244 50 c 0 244 33 235 16 220 7 c 0 212 2 199 0 178 0 c 2 45 0 l 2 1 0 -21 17 -21 50 c 0 -21 67 -12 84 3 93 c 0 12 99 21 100 46 100 c 1 201 483 l 1 138 483 l 2 112 483 102 485 92 492 c 0 79 502 71 517 71 533 c 0 71 550 80 566 95 576 c 0 104 582 111 583 138 583 c 2 354 583 l 1 553 100 l 1 581 100 590 98 600 90 c 0 613 81 621 66 621 50 c 0 621 33 612 16 597 7 c 0 589 2 576 0 555 0 c 2 416 0 l 2 392 0 380 3 371 10 c 0 358 19 350 34 350 50 c 0 350 67 359 84 374 93 c 0 383 99 390 100 416 100 c 2 439 100 l 1 416 158 l 1 375 258 m 1 297 450 l 1 218 258 l 1 375 258 l 1 283 871 m 0 351 871 406 816 406 749 c 0 406 685 349 630 283 630 c 0 216 630 160 685 160 751 c 0 160 816 216 871 283 871 c 0 283 818 m 0 245 818 213 787 213 751 c 0 213 715 245 684 283 684 c 0 320 684 353 715 353 750 c 0 353 787 321 818 283 818 c 0 EndSplineSet Kerns: 67 -14 71 -10 79 -15 81 -16 84 -27 85 -23 86 -59 87 -13 89 -27 97 15 98 45 99 -4 44 -47 100 4 101 2 171 -40 8249 -40 45 -19 111 -3 46 -62 113 -4 8221 -84 8217 -113 116 -20 117 -12 118 -39 119 -13 121 -39 EndChar StartChar: AE Encoding: 198 198 Width: 600 Flags: W HStem: 0 100<28.7264 53 258 266 368 514> 0 189<556 572> 158 101<204 266> 187 210<428 444> 243 99<368 386> 483 100<140 167 368 493> VStem: -20 218<48 55> 267 100<101 157 343 470> 267 219<260 342> 493 100<396 482> 514 100<100 144> DStem: 168 483 267 471 53 100 203 259 Fore 53 100 m 1 168 483 l 1 154 483 l 2 129 483 118 485 109 492 c 0 96 502 88 518 88 533 c 0 88 550 97 567 112 576 c 0 121 582 128 583 154 583 c 2 593 583 l 1 593 418 l 2 593 391 591 383 584 373 c 0 574 360 559 352 543 352 c 0 526 352 510 361 500 376 c 0 495 384 493 395 493 418 c 2 493 483 l 1 367 483 l 1 367 342 l 1 386 342 l 1 388 377 406 397 436 397 c 0 453 397 470 388 479 373 c 0 485 364 486 357 486 331 c 2 486 253 l 2 486 226 484 218 477 208 c 0 467 195 452 187 436 187 c 0 406 187 387 208 386 243 c 1 367 243 l 1 367 100 l 1 514 100 l 1 514 123 l 2 514 148 516 158 523 168 c 0 533 181 548 189 564 189 c 0 581 189 598 180 607 165 c 0 613 156 614 148 614 123 c 2 614 0 l 1 265 0 l 2 231 0 209 20 209 52 c 0 209 79 231 100 259 100 c 2 267 100 l 1 267 158 l 1 174 158 l 1 157 100 l 1 183 96 198 79 198 53 c 0 198 19 177 0 141 0 c 2 46 0 l 2 2 0 -20 17 -20 50 c 0 -20 67 -11 84 4 93 c 0 13 99 22 100 46 100 c 2 53 100 l 1 267 259 m 1 267 471 l 1 203 259 l 1 267 259 l 1 EndSplineSet EndChar StartChar: Ccedilla Encoding: 199 199 Width: 600 Flags: W HStem: -229 70<294 311> -100 186<292 329> 367 216<490 501> 497 100<289 328> VStem: 33 100<235 331> 267 70<-42 -14> 342 70<-141 -129> Fore 337 -14 m 1 337 -42 l 1 388 -52 412 -81 412 -132 c 0 412 -188 367 -229 307 -229 c 0 272 -229 230 -217 203 -199 c 0 192 -191 185 -179 185 -166 c 0 185 -147 201 -131 220 -131 c 0 228 -131 230 -132 249 -142 c 0 267 -153 289 -159 306 -159 c 0 329 -159 342 -150 342 -134 c 0 342 -113 323 -100 292 -100 c 0 288 -100 284 -100 267 -102 c 1 267 -9 l 1 208 3 174 16 137 43 c 0 71 92 33 167 33 249 c 2 33 315 l 2 33 475 150 597 305 597 c 0 357 597 392 589 447 563 c 2 457 559 l 1 470 577 482 583 499 583 c 0 517 583 533 574 542 559 c 0 548 550 549 542 549 517 c 2 549 433 l 2 549 408 547 397 540 388 c 0 530 375 515 367 499 367 c 0 486 367 472 373 464 381 c 0 456 389 454 396 449 420 c 0 445 444 435 457 406 473 c 0 379 488 343 497 309 497 c 0 207 497 133 421 133 315 c 2 133 251 l 2 133 151 210 86 329 86 c 0 375 86 415 94 440 109 c 0 451 115 451 115 478 143 c 0 489 154 501 159 514 159 c 0 541 159 564 136 564 108 c 0 564 82 535 48 491 23 c 0 451 1 406 -10 337 -14 c 1 EndSplineSet MinimumDistance: x2,-1 Kerns: 65 3 EndChar StartChar: Egrave Encoding: 200 200 Width: 600 Flags: W HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> DStem: 165 767 211 824 298 656 344 712 Fore 194 243 m 1 194 100 l 1 450 100 l 1 450 152 l 2 450 180 452 188 459 198 c 0 469 212 484 219 500 219 c 0 517 219 533 210 543 195 c 0 548 186 550 177 550 152 c 2 550 0 l 1 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 34 13 50 c 0 13 67 22 83 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 528 583 l 1 528 433 l 2 528 405 526 397 519 387 c 0 509 374 494 366 478 366 c 0 461 366 445 375 435 390 c 0 430 399 428 409 428 433 c 2 428 483 l 1 194 483 l 1 194 342 l 1 279 342 l 1 279 349 l 2 279 376 281 385 288 395 c 0 298 408 313 416 328 416 c 0 355 416 373 398 377 370 c 0 378 361 378 358 378 349 c 2 378 236 l 2 378 210 376 200 369 191 c 0 359 178 344 170 329 170 c 0 312 170 295 179 286 194 c 0 281 203 279 212 279 236 c 2 279 243 l 1 194 243 l 1 211 824 m 2 344 712 l 2 360 699 367 688 367 676 c 0 367 657 350 640 330 640 c 0 321 640 311 645 298 656 c 2 165 767 l 2 148 781 142 790 142 803 c 0 142 823 158 839 179 839 c 0 189 839 197 835 211 824 c 2 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: Eacute Encoding: 201 201 Width: 600 Flags: W HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> DStem: 371 824 417 767 238 712 284 656 Fore 194 243 m 1 194 100 l 1 450 100 l 1 450 152 l 2 450 180 452 188 459 198 c 0 469 212 484 219 500 219 c 0 517 219 533 210 543 195 c 0 548 186 550 177 550 152 c 2 550 0 l 1 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 34 13 50 c 0 13 67 22 83 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 528 583 l 1 528 433 l 2 528 405 526 397 519 387 c 0 509 374 494 366 478 366 c 0 461 366 445 375 435 390 c 0 430 399 428 409 428 433 c 2 428 483 l 1 194 483 l 1 194 342 l 1 279 342 l 1 279 349 l 2 279 376 281 385 288 395 c 0 298 408 313 416 328 416 c 0 355 416 373 398 377 370 c 0 378 361 378 358 378 349 c 2 378 236 l 2 378 210 376 200 369 191 c 0 359 178 344 170 329 170 c 0 312 170 295 179 286 194 c 0 281 203 279 212 279 236 c 2 279 243 l 1 194 243 l 1 417 767 m 1 284 656 l 2 271 645 261 640 252 640 c 0 232 640 215 657 215 676 c 0 215 688 222 700 238 712 c 1 371 824 l 2 385 835 393 839 403 839 c 0 424 839 440 823 440 803 c 0 440 790 434 780 417 767 c 1 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: Ecircumflex Encoding: 202 202 Width: 600 Flags: W HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> DStem: 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 Fore 194 243 m 1 194 100 l 1 450 100 l 1 450 152 l 2 450 180 452 188 459 198 c 0 469 212 484 219 500 219 c 0 517 219 533 210 543 195 c 0 548 186 550 177 550 152 c 2 550 0 l 1 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 34 13 50 c 0 13 67 22 83 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 528 583 l 1 528 433 l 2 528 405 526 397 519 387 c 0 509 374 494 366 478 366 c 0 461 366 445 375 435 390 c 0 430 399 428 409 428 433 c 2 428 483 l 1 194 483 l 1 194 342 l 1 279 342 l 1 279 349 l 2 279 376 281 385 288 395 c 0 298 408 313 416 328 416 c 0 355 416 373 398 377 370 c 0 378 361 378 358 378 349 c 2 378 236 l 2 378 210 376 200 369 191 c 0 359 178 344 170 329 170 c 0 312 170 295 179 286 194 c 0 281 203 279 212 279 236 c 2 279 243 l 1 194 243 l 1 292 750 m 1 179 653 l 2 167 643 160 640 151 640 c 0 132 640 116 657 116 675 c 0 116 689 118 692 140 711 c 2 292 839 l 1 443 711 l 1 452 703 l 2 463 694 467 687 467 675 c 0 467 657 451 640 433 640 c 0 423 640 415 644 404 653 c 2 292 750 l 1 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: Edieresis Encoding: 203 203 Width: 600 Flags: W HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 678 120<176.067 195 384.067 397> VStem: 94 100<101 242 343 482> 127 120<736 740> 279 99<218 242 343 369> 335 120<736 740> 428 100<415 483> 450 100<100 171> Fore 194 243 m 1 194 100 l 1 450 100 l 1 450 152 l 2 450 180 452 188 459 198 c 0 469 212 484 219 500 219 c 0 517 219 533 210 543 195 c 0 548 186 550 177 550 152 c 2 550 0 l 1 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 34 13 50 c 0 13 67 22 83 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 528 583 l 1 528 433 l 2 528 405 526 397 519 387 c 0 509 374 494 366 478 366 c 0 461 366 445 375 435 390 c 0 430 399 428 409 428 433 c 2 428 483 l 1 194 483 l 1 194 342 l 1 279 342 l 1 279 349 l 2 279 376 281 385 288 395 c 0 298 408 313 416 328 416 c 0 355 416 373 398 377 370 c 0 378 361 378 358 378 349 c 2 378 236 l 2 378 210 376 200 369 191 c 0 359 178 344 170 329 170 c 0 312 170 295 179 286 194 c 0 281 203 279 212 279 236 c 2 279 243 l 1 194 243 l 1 187 798 m 0 221 798 247 771 247 737 c 0 247 705 220 678 187 678 c 0 154 678 127 705 127 738 c 0 127 771 154 798 187 798 c 0 395 798 m 0 429 798 455 771 455 737 c 0 455 705 428 678 395 678 c 0 362 678 335 705 335 738 c 0 335 771 362 798 395 798 c 0 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: Igrave Encoding: 204 204 Width: 600 Flags: HMW HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> VStem: 250 100<100 483> Fore 350 483 m 1 350 100 l 1 451 100 l 2 478 100 486 98 496 91 c 0 510 81 517 66 517 50 c 0 517 17 495 0 451 0 c 2 149 0 l 2 125 0 113 3 104 10 c 0 91 19 83 35 83 50 c 0 83 67 92 84 107 93 c 0 116 99 123 100 149 100 c 2 250 100 l 1 250 483 l 1 149 483 l 2 124 483 113 485 104 492 c 0 91 502 83 517 83 533 c 0 83 550 92 567 107 576 c 0 116 582 123 583 149 583 c 2 451 583 l 2 478 583 486 581 496 574 c 0 510 564 517 549 517 533 c 0 517 516 508 499 493 490 c 0 485 485 474 483 451 483 c 2 350 483 l 1 220 824 m 2 353 712 l 2 369 699 376 688 376 676 c 0 376 657 359 640 339 640 c 0 330 640 320 645 307 656 c 2 174 767 l 2 157 781 151 790 151 803 c 0 151 823 167 839 188 839 c 0 198 839 206 835 220 824 c 2 EndSplineSet EndChar StartChar: Iacute Encoding: 205 205 Width: 600 Flags: HMW HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> VStem: 250 100<100 483> Fore 350 483 m 1 350 100 l 1 451 100 l 2 478 100 486 98 496 91 c 0 510 81 517 66 517 50 c 0 517 17 495 0 451 0 c 2 149 0 l 2 125 0 113 3 104 10 c 0 91 19 83 35 83 50 c 0 83 67 92 84 107 93 c 0 116 99 123 100 149 100 c 2 250 100 l 1 250 483 l 1 149 483 l 2 124 483 113 485 104 492 c 0 91 502 83 517 83 533 c 0 83 550 92 567 107 576 c 0 116 582 123 583 149 583 c 2 451 583 l 2 478 583 486 581 496 574 c 0 510 564 517 549 517 533 c 0 517 516 508 499 493 490 c 0 485 485 474 483 451 483 c 2 350 483 l 1 452 767 m 1 319 656 l 2 306 645 296 640 287 640 c 0 267 640 250 657 250 676 c 0 250 688 257 700 273 712 c 1 406 824 l 2 420 835 428 839 438 839 c 0 459 839 475 823 475 803 c 0 475 790 469 780 452 767 c 1 EndSplineSet EndChar StartChar: Icircumflex Encoding: 206 206 Width: 600 Flags: HMW HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> VStem: 250 100<100 483> Fore 350 483 m 1 350 100 l 1 451 100 l 2 478 100 486 98 496 91 c 0 510 81 517 66 517 50 c 0 517 17 495 0 451 0 c 2 149 0 l 2 125 0 113 3 104 10 c 0 91 19 83 35 83 50 c 0 83 67 92 84 107 93 c 0 116 99 123 100 149 100 c 2 250 100 l 1 250 483 l 1 149 483 l 2 124 483 113 485 104 492 c 0 91 502 83 517 83 533 c 0 83 550 92 567 107 576 c 0 116 582 123 583 149 583 c 2 451 583 l 2 478 583 486 581 496 574 c 0 510 564 517 549 517 533 c 0 517 516 508 499 493 490 c 0 485 485 474 483 451 483 c 2 350 483 l 1 300 750 m 1 187 653 l 2 175 643 168 640 159 640 c 0 140 640 124 657 124 675 c 0 124 689 126 692 148 711 c 2 300 839 l 1 451 711 l 1 460 703 l 2 471 694 475 687 475 675 c 0 475 657 459 640 441 640 c 0 431 640 423 644 412 653 c 2 300 750 l 1 EndSplineSet EndChar StartChar: Idieresis Encoding: 207 207 Width: 600 Flags: W HStem: 0 100<131 249 351 467> 483 100<131 249 351 467> 678 120<185.067 198 393.067 406> VStem: 136 120<736 740> 250 100<100 483> 344 120<736 740> Fore 350 483 m 1 350 100 l 1 451 100 l 2 478 100 486 98 496 91 c 0 510 81 517 66 517 50 c 0 517 17 495 0 451 0 c 2 149 0 l 2 125 0 113 3 104 10 c 0 91 19 83 35 83 50 c 0 83 67 92 84 107 93 c 0 116 99 123 100 149 100 c 2 250 100 l 1 250 483 l 1 149 483 l 2 124 483 113 485 104 492 c 0 91 502 83 517 83 533 c 0 83 550 92 567 107 576 c 0 116 582 123 583 149 583 c 2 451 583 l 2 478 583 486 581 496 574 c 0 510 564 517 549 517 533 c 0 517 516 508 499 493 490 c 0 485 485 474 483 451 483 c 2 350 483 l 1 196 798 m 0 230 798 256 771 256 737 c 0 256 705 229 678 196 678 c 0 163 678 136 705 136 738 c 0 136 771 163 798 196 798 c 0 404 798 m 0 438 798 464 771 464 737 c 0 464 705 437 678 404 678 c 0 371 678 344 705 344 738 c 0 344 771 371 798 404 798 c 0 EndSplineSet MinimumDistance: x28,-1 EndChar StartChar: Eth Encoding: 208 208 Width: 600 Flags: HMW HStem: 0 100<67.5 74 174 284> 243 100<67 74 174 248> 483 100<174 174 174 284> VStem: 74 100<100 243 343 483> 450 100<261 305> Fore 74 243 m 1 66 243 l 2 43 243 30 246 21 253 c 0 8 262 0 277 0 293 c 0 0 310 9 327 24 336 c 0 33 342 40 343 67 343 c 2 74 343 l 1 74 483 l 1 35 483 13 501 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 80 583 c 2 292 583 l 2 438 583 550 462 550 305 c 2 550 258 l 2 550 185 526 123 480 75 c 0 431 23 371 0 284 0 c 2 79 0 l 2 56 0 43 3 34 10 c 0 21 19 13 35 13 50 c 0 13 82 36 100 74 100 c 1 74 243 l 1 174 243 m 1 174 100 l 1 285 100 l 2 345 100 378 112 409 144 c 1 437 175 450 210 450 261 c 2 450 307 l 2 450 354 434 398 405 432 c 0 375 467 337 483 284 483 c 2 174 483 l 1 174 343 l 1 248 343 l 2 275 343 283 341 293 334 c 0 307 324 314 309 314 293 c 0 314 260 292 243 248 243 c 2 174 243 l 1 EndSplineSet EndChar StartChar: Ntilde Encoding: 209 209 Width: 600 Flags: HMW HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5> 730 69<217 233> VStem: 73 100<100 394> 431 100<191 483> Fore 173 394 m 1 173 100 l 1 208 100 l 2 235 100 244 98 254 91 c 0 267 81 274 66 274 50 c 0 274 33 265 17 250 7 c 0 243 3 228 0 208 0 c 2 79 0 l 2 55 0 42 3 33 10 c 0 20 19 12 34 12 50 c 0 12 82 34 100 73 100 c 1 73 483 l 1 58 483 l 2 33 483 22 485 13 492 c 0 0 502 -8 517 -8 533 c 0 -8 550 1 567 16 576 c 0 25 582 32 583 58 583 c 2 173 583 l 1 431 191 l 1 431 483 l 1 396 483 l 2 371 483 360 485 351 492 c 0 338 502 330 517 330 533 c 0 330 550 339 567 354 576 c 0 363 582 370 583 396 583 c 2 526 583 l 2 553 583 561 581 571 574 c 0 584 564 592 549 592 533 c 0 592 501 571 483 531 483 c 1 531 0 l 1 432 0 l 1 173 394 l 1 451 799 m 1 471 797 484 786 484 771 c 0 484 756 476 741 455 715 c 0 428 681 404 667 375 667 c 0 353 667 320 681 276 709 c 0 249 727 240 730 226 730 c 0 208 730 200 724 170 684 c 0 163 675 155 670 145 670 c 0 128 670 114 683 114 700 c 0 114 714 123 732 140 753 c 0 165 783 194 799 223 799 c 0 247 799 264 792 314 762 c 0 346 743 361 736 372 736 c 0 387 736 391 740 413 770 c 0 426 789 438 798 451 799 c 1 EndSplineSet EndChar StartChar: Ograve Encoding: 210 210 Width: 600 Flags: HMW HStem: -14 100<251 348.5> 497 100<251 333.5> VStem: 21 100<235.5 348> 479 100<234 335> Fore 300 597 m 0 367 597 432 570 485 520 c 0 548 460 579 383 579 287 c 0 579 123 452 -14 300 -14 c 0 146 -14 21 123 21 292 c 0 21 460 146 597 300 597 c 0 300 497 m 0 202 497 121 404 121 292 c 0 121 179 202 86 300 86 c 0 397 86 479 179 479 289 c 0 479 404 399 497 300 497 c 0 223 824 m 2 356 712 l 2 372 699 379 688 379 676 c 0 379 657 362 640 342 640 c 0 333 640 323 645 310 656 c 2 177 767 l 2 160 781 154 790 154 803 c 0 154 823 170 839 191 839 c 0 201 839 209 835 223 824 c 2 EndSplineSet Kerns: 84 -15 86 -23 89 -43 EndChar StartChar: Oacute Encoding: 211 211 Width: 600 Flags: HMW HStem: -14 100<251 348.5> 497 100<251 333.5> VStem: 21 100<235.5 348> 479 100<234 335> Fore 300 597 m 0 367 597 432 570 485 520 c 0 548 460 579 383 579 287 c 0 579 123 452 -14 300 -14 c 0 146 -14 21 123 21 292 c 0 21 460 146 597 300 597 c 0 300 497 m 0 202 497 121 404 121 292 c 0 121 179 202 86 300 86 c 0 397 86 479 179 479 289 c 0 479 404 399 497 300 497 c 0 423 767 m 1 290 656 l 2 277 645 267 640 258 640 c 0 238 640 221 657 221 676 c 0 221 688 228 700 244 712 c 1 377 824 l 2 391 835 399 839 409 839 c 0 430 839 446 823 446 803 c 0 446 790 440 780 423 767 c 1 EndSplineSet Kerns: 65 -14 84 -15 86 -23 87 -2 89 -43 EndChar StartChar: Ocircumflex Encoding: 212 212 Width: 600 Flags: HMW HStem: -14 100<251 348.5> 497 100<251 333.5> VStem: 21 100<235.5 348> 479 100<234 335> Fore 300 597 m 0 367 597 432 570 485 520 c 0 548 460 579 383 579 287 c 0 579 123 452 -14 300 -14 c 0 146 -14 21 123 21 292 c 0 21 460 146 597 300 597 c 0 300 497 m 0 202 497 121 404 121 292 c 0 121 179 202 86 300 86 c 0 397 86 479 179 479 289 c 0 479 404 399 497 300 497 c 0 300 750 m 1 187 653 l 2 175 643 168 640 159 640 c 0 140 640 124 657 124 675 c 0 124 689 126 692 148 711 c 2 300 839 l 1 451 711 l 1 460 703 l 2 471 694 475 687 475 675 c 0 475 657 459 640 441 640 c 0 431 640 423 644 412 653 c 2 300 750 l 1 EndSplineSet Kerns: 84 -15 86 -23 89 -43 EndChar StartChar: Otilde Encoding: 213 213 Width: 600 Flags: HMW HStem: -14 100<251 348.5> 497 100<251 333.5> 730 69<225 241> VStem: 21 100<235.5 348> 479 100<234 335> Fore 300 597 m 0 367 597 432 570 485 520 c 0 548 460 579 383 579 287 c 0 579 123 452 -14 300 -14 c 0 146 -14 21 123 21 292 c 0 21 460 146 597 300 597 c 0 300 497 m 0 202 497 121 404 121 292 c 0 121 179 202 86 300 86 c 0 397 86 479 179 479 289 c 0 479 404 399 497 300 497 c 0 460 799 m 0 477 799 492 785 492 771 c 0 492 756 484 741 463 715 c 0 436 681 412 667 383 667 c 0 361 667 328 681 284 709 c 0 257 726 248 730 234 730 c 0 216 730 208 723 179 685 c 0 171 675 163 670 153 670 c 0 136 670 122 683 122 700 c 0 122 714 132 733 149 754 c 0 174 783 203 799 232 799 c 0 255 799 273 792 322 762 c 0 355 742 369 736 380 736 c 0 395 736 399 739 421 769 c 0 435 789 448 799 460 799 c 0 EndSplineSet Kerns: 84 -15 86 -23 89 -43 EndChar StartChar: Odieresis Encoding: 214 214 Width: 600 Flags: HMW HStem: -14 100<251 348.5> 497 100<251 333.5> VStem: 21 100<235.5 348> 229 120 479 100<234 335> Fore 300 597 m 0 367 597 432 570 485 520 c 0 548 460 579 383 579 287 c 0 579 123 452 -14 300 -14 c 0 146 -14 21 123 21 292 c 0 21 460 146 597 300 597 c 0 300 497 m 0 202 497 121 404 121 292 c 0 121 179 202 86 300 86 c 0 397 86 479 179 479 289 c 0 479 404 399 497 300 497 c 0 196 798 m 0 230 798 256 771 256 737 c 0 256 705 229 678 196 678 c 0 163 678 136 705 136 738 c 0 136 771 163 798 196 798 c 0 404 798 m 0 438 798 464 771 464 737 c 0 464 705 437 678 404 678 c 0 371 678 344 705 344 738 c 0 344 771 371 798 404 798 c 0 EndSplineSet Kerns: 65 -14 84 -15 86 -23 87 -2 88 -26 89 -43 EndChar StartChar: multiply Encoding: 215 215 Width: 600 Flags: W DStem: 126 383 197 454 229 280 300 351 229 280 300 209 126 177 197 106 300 209 371 280 403 106 474 177 403 454 474 383 300 351 371 280 Fore 300 209 m 1 197 106 l 2 176 86 166 80 150 80 c 0 123 80 100 103 100 131 c 0 100 147 105 156 126 177 c 2 229 280 l 1 126 383 l 2 105 405 100 413 100 430 c 0 100 457 123 480 150 480 c 0 166 480 176 474 197 454 c 2 300 351 l 1 403 454 l 2 425 475 433 480 450 480 c 0 477 480 500 457 500 430 c 0 500 414 494 404 474 383 c 2 371 280 l 1 474 177 l 2 494 157 500 146 500 130 c 0 500 103 477 80 450 80 c 0 433 80 424 85 403 106 c 2 300 209 l 1 EndSplineSet MinimumDistance: x14,-1 EndChar StartChar: Oslash Encoding: 216 216 Width: 600 Flags: HMW HStem: -14 100<286.5 348.5> 497 100<250 314.5> VStem: 20 100<270 348> 479 100<234.5 309> Fore 159 28 m 1 105 -40 l 2 85 -65 77 -70 58 -70 c 0 31 -70 9 -49 9 -23 c 0 9 -10 13 -2 30 19 c 2 87 92 l 1 42 151 20 214 20 292 c 0 20 460 145 597 300 597 c 0 352 597 401 581 449 549 c 1 495 607 l 2 514 632 523 638 542 638 c 0 568 638 590 616 590 590 c 0 590 577 586 569 570 548 c 2 518 483 l 1 559 429 579 364 579 291 c 0 579 123 454 -14 300 -14 c 0 251 -14 202 1 159 28 c 1 452 400 m 1 221 107 l 1 246 93 273 86 300 86 c 0 397 86 479 179 479 290 c 0 479 328 469 369 452 400 c 1 152 174 m 1 387 471 l 1 358 488 330 497 299 497 c 0 201 497 120 404 120 292 c 0 120 248 130 211 152 174 c 1 EndSplineSet Kerns: 65 -10 EndChar StartChar: Ugrave Encoding: 217 217 Width: 600 Flags: HMW HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> VStem: 71 100<205 483> 429 100<196 205 205 483> Fore 529 483 m 1 529 205 l 2 529 134 502 78 445 35 c 0 402 2 355 -14 300 -14 c 0 246 -14 198 2 155 35 c 0 99 78 71 134 71 205 c 2 71 483 l 1 31 484 10 501 10 533 c 0 10 550 19 567 34 576 c 0 43 582 51 583 76 583 c 2 206 583 l 2 234 583 241 582 252 574 c 0 264 564 272 549 272 533 c 0 272 516 263 499 248 490 c 0 240 485 229 483 206 483 c 2 171 483 l 1 171 196 l 2 171 135 229 86 300 86 c 0 371 86 429 135 429 196 c 2 429 483 l 1 394 483 l 2 368 483 358 485 349 492 c 0 336 502 328 517 328 533 c 0 328 550 337 567 352 576 c 0 361 582 368 583 394 583 c 2 524 583 l 2 551 583 559 581 570 574 c 0 583 564 590 549 590 533 c 0 590 501 569 483 529 483 c 1 223 824 m 2 356 712 l 2 372 699 379 688 379 676 c 0 379 657 362 640 342 640 c 0 333 640 323 645 310 656 c 2 177 767 l 2 160 781 154 790 154 803 c 0 154 823 170 839 191 839 c 0 201 839 209 835 223 824 c 2 EndSplineSet Kerns: 65 -19 EndChar StartChar: Uacute Encoding: 218 218 Width: 600 Flags: HMW HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> VStem: 71 100<205 483> 429 100<196 205 205 483> Fore 529 483 m 1 529 205 l 2 529 134 502 78 445 35 c 0 402 2 355 -14 300 -14 c 0 246 -14 198 2 155 35 c 0 99 78 71 134 71 205 c 2 71 483 l 1 31 484 10 501 10 533 c 0 10 550 19 567 34 576 c 0 43 582 51 583 76 583 c 2 206 583 l 2 234 583 241 582 252 574 c 0 264 564 272 549 272 533 c 0 272 516 263 499 248 490 c 0 240 485 229 483 206 483 c 2 171 483 l 1 171 196 l 2 171 135 229 86 300 86 c 0 371 86 429 135 429 196 c 2 429 483 l 1 394 483 l 2 368 483 358 485 349 492 c 0 336 502 328 517 328 533 c 0 328 550 337 567 352 576 c 0 361 582 368 583 394 583 c 2 524 583 l 2 551 583 559 581 570 574 c 0 583 564 590 549 590 533 c 0 590 501 569 483 529 483 c 1 423 767 m 1 290 656 l 2 277 645 267 640 258 640 c 0 238 640 221 657 221 676 c 0 221 688 228 700 244 712 c 1 377 824 l 2 391 835 399 839 409 839 c 0 430 839 446 823 446 803 c 0 446 790 440 780 423 767 c 1 EndSplineSet Kerns: 65 -19 44 -95 109 16 110 -8 46 -114 114 -34 EndChar StartChar: Ucircumflex Encoding: 219 219 Width: 600 Flags: HMW HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> VStem: 71 100<205 483> 429 100<196 205 205 483> Fore 529 483 m 1 529 205 l 2 529 134 502 78 445 35 c 0 402 2 355 -14 300 -14 c 0 246 -14 198 2 155 35 c 0 99 78 71 134 71 205 c 2 71 483 l 1 31 484 10 501 10 533 c 0 10 550 19 567 34 576 c 0 43 582 51 583 76 583 c 2 206 583 l 2 234 583 241 582 252 574 c 0 264 564 272 549 272 533 c 0 272 516 263 499 248 490 c 0 240 485 229 483 206 483 c 2 171 483 l 1 171 196 l 2 171 135 229 86 300 86 c 0 371 86 429 135 429 196 c 2 429 483 l 1 394 483 l 2 368 483 358 485 349 492 c 0 336 502 328 517 328 533 c 0 328 550 337 567 352 576 c 0 361 582 368 583 394 583 c 2 524 583 l 2 551 583 559 581 570 574 c 0 583 564 590 549 590 533 c 0 590 501 569 483 529 483 c 1 300 750 m 1 187 653 l 2 175 643 168 640 159 640 c 0 140 640 124 657 124 675 c 0 124 689 126 692 148 711 c 2 300 839 l 1 451 711 l 1 460 703 l 2 471 694 475 687 475 675 c 0 475 657 459 640 441 640 c 0 431 640 423 644 412 653 c 2 300 750 l 1 EndSplineSet Kerns: 65 -19 EndChar StartChar: Udieresis Encoding: 220 220 Width: 600 Flags: W HStem: -14 100<282.431 314> 483 100<172 218 378 428 529.031 544.331> 678 120<186 206 394 410> VStem: 10 262<530 535> 71 100<194 483> 136 120<736 740> 328 262<530 535> 344 120<736 740> 429 100<194 483> Fore 529 483 m 1 529 205 l 2 529 134 502 78 445 35 c 0 402 2 355 -14 300 -14 c 0 246 -14 198 2 155 35 c 0 99 78 71 134 71 205 c 2 71 483 l 1 31 484 10 501 10 533 c 0 10 550 19 567 34 576 c 0 43 582 51 583 76 583 c 2 206 583 l 2 234 583 241 582 252 574 c 0 264 564 272 549 272 533 c 0 272 516 263 499 248 490 c 0 240 485 229 483 206 483 c 2 171 483 l 1 171 196 l 2 171 135 229 86 300 86 c 0 371 86 429 135 429 196 c 2 429 483 l 1 394 483 l 2 368 483 358 485 349 492 c 0 336 502 328 517 328 533 c 0 328 550 337 567 352 576 c 0 361 582 368 583 394 583 c 2 524 583 l 2 551 583 559 581 570 574 c 0 583 564 590 549 590 533 c 0 590 501 569 483 529 483 c 1 196 798 m 0 230 798 256 771 256 737 c 0 256 705 229 678 196 678 c 0 163 678 136 705 136 738 c 0 136 771 163 798 196 798 c 0 404 798 m 0 438 798 464 771 464 737 c 0 464 705 437 678 404 678 c 0 371 678 344 705 344 738 c 0 344 771 371 798 404 798 c 0 EndSplineSet MinimumDistance: x0,-1 Kerns: 65 -19 98 27 44 -95 109 16 110 -8 46 -114 114 -34 EndChar StartChar: Yacute Encoding: 221 221 Width: 600 Flags: HMW HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> VStem: 250 100<100 245> Fore 350 245 m 1 350 100 l 1 415 100 l 2 443 100 451 98 461 91 c 0 474 81 482 66 482 50 c 0 482 33 473 16 458 7 c 0 451 3 436 0 415 0 c 2 185 0 l 2 161 0 148 3 139 10 c 0 126 19 118 34 118 50 c 0 118 67 127 84 142 93 c 0 151 99 158 100 185 100 c 2 250 100 l 1 250 245 l 1 85 483 l 1 44 483 21 501 21 533 c 0 21 560 38 578 67 581 c 0 79 583 80 583 88 583 c 2 177 583 l 2 204 583 213 581 223 574 c 0 235 564 243 549 243 533 c 0 243 510 231 495 205 484 c 1 300 348 l 1 394 484 l 1 367 494 354 510 354 533 c 0 354 550 363 567 378 576 c 0 387 582 396 583 421 583 c 2 513 583 l 2 540 583 549 581 558 574 c 0 572 564 579 549 579 533 c 0 579 502 551 479 516 483 c 2 514 483 l 1 350 245 l 1 426 767 m 1 293 656 l 2 280 645 270 640 261 640 c 0 241 640 224 657 224 676 c 0 224 688 231 700 247 712 c 1 380 824 l 2 394 835 402 839 412 839 c 0 433 839 449 823 449 803 c 0 449 790 443 780 426 767 c 1 EndSplineSet EndChar StartChar: Thorn Encoding: 222 222 Width: 600 Flags: HMW HStem: 0 100<80 95 195 294> 140 100<195 293> 343 100<195 293 293 326> 483 100<80 95 195 195 195 294> VStem: 95 100<100 140 240 343 443 483> 421 102<275.5 308.5> Fore 195 140 m 1 195 100 l 1 294 100 l 2 321 100 329 98 339 91 c 0 352 81 360 66 360 50 c 0 360 33 351 16 336 7 c 0 329 3 314 0 294 0 c 2 80 0 l 2 57 0 43 3 35 10 c 0 22 19 14 35 14 50 c 0 14 67 23 84 38 93 c 0 47 99 56 100 80 100 c 2 95 100 l 1 95 483 l 1 80 483 l 2 53 483 45 485 35 492 c 0 22 502 14 517 14 533 c 0 14 550 23 567 38 576 c 0 46 581 59 583 80 583 c 2 294 583 l 2 318 583 330 580 339 574 c 0 352 564 360 549 360 533 c 0 360 516 351 499 336 490 c 0 327 484 318 483 294 483 c 2 195 483 l 1 195 443 l 1 293 443 l 2 395 443 447 427 488 382 c 0 510 358 523 325 523 292 c 0 523 259 510 225 488 201 c 0 447 156 395 140 293 140 c 2 195 140 l 1 195 240 m 1 326 240 l 2 392 240 421 255 421 291 c 0 421 328 393 343 326 343 c 2 195 343 l 1 195 240 l 1 EndSplineSet EndChar StartChar: germandbls Encoding: 223 223 Width: 600 Flags: W HStem: -16 100<374 390> 0 100<61 95> 523 100<253 280> VStem: 13 225<48 53> 95 100<100 464> 346 100<455 464> 429 100<155 176> Fore 95 100 m 1 95 478 l 2 95 563 167 623 268 623 c 0 369 623 446 551 446 456 c 0 446 419 438 397 411 365 c 1 488 320 529 249 529 165 c 0 529 57 467 -16 374 -16 c 0 305 -16 255 31 255 97 c 0 255 134 274 156 305 156 c 0 318 156 332 151 340 142 c 0 346 135 347 134 352 113 c 0 356 94 366 84 382 84 c 0 410 84 429 116 429 164 c 0 429 200 414 234 388 259 c 0 361 285 330 297 278 303 c 0 241 307 223 323 223 353 c 0 223 381 242 399 276 402 c 0 302 405 310 407 321 415 c 0 337 425 346 442 346 459 c 0 346 496 314 523 268 523 c 0 221 523 195 502 195 461 c 2 195 100 l 1 223 95 238 78 238 51 c 0 238 16 217 0 172 0 c 2 79 0 l 2 55 0 42 3 33 9 c 0 21 19 13 35 13 50 c 0 13 67 23 84 37 93 c 0 46 99 54 100 79 100 c 2 95 100 l 1 EndSplineSet MinimumDistance: x5,-1 EndChar StartChar: agrave Encoding: 224 224 Width: 600 Flags: W HStem: -16 100<207 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> VStem: 42 106<118 128> 389 100<135 185 279 304> DStem: 160 624 206 680 293 512 339 569 Fore 388 0 m 1 388 23 l 1 340 -2 281 -16 222 -16 c 0 123 -16 42 45 42 119 c 0 42 150 57 185 81 212 c 0 126 262 195 288 284 288 c 0 316 288 347 285 388 278 c 1 388 301 l 2 388 335 359 350 295 350 c 0 262 350 225 345 179 333 c 0 162 329 148 327 139 327 c 0 111 327 90 349 90 378 c 0 90 399 100 413 120 420 c 0 168 437 242 450 292 450 c 0 415 450 489 395 489 302 c 2 489 100 l 1 505 100 l 2 532 100 541 98 551 91 c 0 563 81 571 66 571 50 c 0 571 33 562 16 547 7 c 0 540 2 526 0 505 0 c 2 388 0 l 1 389 135 m 1 389 185 l 1 349 192 312 196 278 196 c 0 210 196 148 161 148 123 c 0 148 101 181 84 224 84 c 0 278 84 334 101 389 135 c 1 206 680 m 2 339 569 l 2 355 556 362 545 362 532 c 0 362 513 345 496 325 496 c 0 315 496 308 500 293 512 c 2 160 624 l 1 143 637 137 647 137 660 c 0 137 680 153 696 174 696 c 0 185 696 190 693 206 680 c 2 EndSplineSet MinimumDistance: x14,-1 Kerns: 118 -21 119 -12 121 -31 EndChar StartChar: aacute Encoding: 225 225 Width: 600 Flags: W HStem: -16 100<216 242> 0 100<489 522> 196 92<266 298> 350 100<277 314> VStem: 42 106<118 128> 389 100<135 185 279 304> DStem: 373 680 419 624 240 569 286 512 Fore 388 0 m 1 388 23 l 1 340 -2 281 -16 222 -16 c 0 123 -16 42 45 42 119 c 0 42 150 57 185 81 212 c 0 126 262 195 288 284 288 c 0 316 288 347 285 388 278 c 1 388 301 l 2 388 335 359 350 295 350 c 0 262 350 225 345 179 333 c 0 162 329 148 327 139 327 c 0 111 327 90 349 90 378 c 0 90 399 100 413 120 420 c 0 168 437 242 450 292 450 c 0 415 450 489 395 489 302 c 2 489 100 l 1 505 100 l 2 532 100 541 98 551 91 c 0 563 81 571 66 571 50 c 0 571 33 562 16 547 7 c 0 540 2 526 0 505 0 c 2 388 0 l 1 389 135 m 1 389 185 l 1 349 192 312 196 278 196 c 0 210 196 148 161 148 123 c 0 148 101 181 84 224 84 c 0 278 84 334 101 389 135 c 1 419 624 m 1 286 512 l 2 271 500 264 496 254 496 c 0 234 496 217 513 217 532 c 0 217 545 224 556 240 569 c 2 373 680 l 2 389 693 394 696 405 696 c 0 426 696 442 680 442 659 c 0 442 647 436 637 419 624 c 1 EndSplineSet MinimumDistance: x14,-1 Kerns: 118 -21 119 -12 121 -31 EndChar StartChar: acircumflex Encoding: 226 226 Width: 600 Flags: W HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> VStem: 42 106<118 128> 389 100<135 185 279 304> DStem: 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 Fore 388 0 m 1 388 23 l 1 340 -2 281 -16 222 -16 c 0 123 -16 42 45 42 119 c 0 42 150 57 185 81 212 c 0 126 262 195 288 284 288 c 0 316 288 347 285 388 278 c 1 388 301 l 2 388 335 359 350 295 350 c 0 262 350 225 345 179 333 c 0 162 329 148 327 139 327 c 0 111 327 90 349 90 378 c 0 90 399 100 413 120 420 c 0 168 437 242 450 292 450 c 0 415 450 489 395 489 302 c 2 489 100 l 1 505 100 l 2 532 100 541 98 551 91 c 0 563 81 571 66 571 50 c 0 571 33 562 16 547 7 c 0 540 2 526 0 505 0 c 2 388 0 l 1 389 135 m 1 389 185 l 1 349 192 312 196 278 196 c 0 210 196 148 161 148 123 c 0 148 101 181 84 224 84 c 0 278 84 334 101 389 135 c 1 290 607 m 1 177 510 l 2 166 501 158 497 149 497 c 0 130 497 114 514 114 532 c 0 114 546 116 549 138 567 c 2 290 696 l 1 441 567 l 2 444 565 448 562 450 560 c 0 461 551 465 543 465 532 c 0 465 514 449 497 431 497 c 0 422 497 413 501 402 510 c 2 290 607 l 1 EndSplineSet MinimumDistance: x14,-1 EndChar StartChar: atilde Encoding: 227 227 Width: 600 Flags: W HStem: -16 100<217 234> 0 100<489 522> 196 92<266 308> 350 100<270 314> 523 69<362 371> 587 69<217 226> VStem: 42 106<118 128> 389 100<135 185 279 304> Fore 388 0 m 1 388 23 l 1 340 -2 281 -16 222 -16 c 0 123 -16 42 45 42 119 c 0 42 150 57 185 81 212 c 0 126 262 195 288 284 288 c 0 316 288 347 285 388 278 c 1 388 301 l 2 388 335 359 350 295 350 c 0 262 350 225 345 179 333 c 0 162 329 148 327 139 327 c 0 111 327 90 349 90 378 c 0 90 399 100 413 120 420 c 0 168 437 242 450 292 450 c 0 415 450 489 395 489 302 c 2 489 100 l 1 505 100 l 2 532 100 541 98 551 91 c 0 563 81 571 66 571 50 c 0 571 33 562 16 547 7 c 0 540 2 526 0 505 0 c 2 388 0 l 1 389 135 m 1 389 185 l 1 349 192 312 196 278 196 c 0 210 196 148 161 148 123 c 0 148 101 181 84 224 84 c 0 278 84 334 101 389 135 c 1 446 656 m 0 463 656 478 642 478 628 c 0 478 613 470 598 449 571 c 0 422 537 398 523 369 523 c 0 347 523 314 537 270 566 c 0 243 584 234 587 220 587 c 0 202 587 194 580 165 541 c 0 157 530 149 526 139 526 c 0 122 526 108 540 108 556 c 0 108 570 118 590 135 611 c 0 160 640 189 656 218 656 c 0 241 656 258 649 308 618 c 0 342 598 355 592 366 592 c 0 381 592 385 596 407 626 c 0 421 646 434 656 446 656 c 0 EndSplineSet MinimumDistance: x14,-1 EndChar StartChar: adieresis Encoding: 228 228 Width: 600 Flags: W HStem: -16 100<218 246> 0 100<489 522> 196 92<266 298> 350 100<277 314> 534 120<178 187 387 395> VStem: 42 106<118 128> 125 120<592 596> 333 120<592 596> 389 100<135 185 279 304> Fore 388 0 m 1 388 23 l 1 340 -2 281 -16 222 -16 c 0 123 -16 42 45 42 119 c 0 42 150 57 185 81 212 c 0 126 262 195 288 284 288 c 0 316 288 347 285 388 278 c 1 388 301 l 2 388 335 359 350 295 350 c 0 262 350 225 345 179 333 c 0 162 329 148 327 139 327 c 0 111 327 90 349 90 378 c 0 90 399 100 413 120 420 c 0 168 437 242 450 292 450 c 0 415 450 489 395 489 302 c 2 489 100 l 1 505 100 l 2 532 100 541 98 551 91 c 0 563 81 571 66 571 50 c 0 571 33 562 16 547 7 c 0 540 2 526 0 505 0 c 2 388 0 l 1 389 135 m 1 389 185 l 1 349 192 312 196 278 196 c 0 210 196 148 161 148 123 c 0 148 101 181 84 224 84 c 0 278 84 334 101 389 135 c 1 185 654 m 0 219 654 245 627 245 593 c 0 245 561 218 534 185 534 c 0 152 534 125 561 125 594 c 0 125 627 152 654 185 654 c 0 393 654 m 0 427 654 453 627 453 593 c 0 453 561 426 534 393 534 c 0 360 534 333 561 333 594 c 0 333 627 360 654 393 654 c 0 EndSplineSet MinimumDistance: x14,-1 Kerns: 118 -21 119 -12 121 -31 EndChar StartChar: aring Encoding: 229 229 Width: 600 Flags: W HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 486 54<278 298> 674 53<278 298> VStem: 42 106<118 128> 166 53<604 609> 359 53<604 609> 389 100<135 185 279 304> Fore 388 0 m 1 388 23 l 1 340 -2 281 -16 222 -16 c 0 123 -16 42 45 42 119 c 0 42 150 57 185 81 212 c 0 126 262 195 288 284 288 c 0 316 288 347 285 388 278 c 1 388 301 l 2 388 335 359 350 295 350 c 0 262 350 225 345 179 333 c 0 162 329 148 327 139 327 c 0 111 327 90 349 90 378 c 0 90 399 100 413 120 420 c 0 168 437 242 450 292 450 c 0 415 450 489 395 489 302 c 2 489 100 l 1 505 100 l 2 532 100 541 98 551 91 c 0 563 81 571 66 571 50 c 0 571 33 562 16 547 7 c 0 540 2 526 0 505 0 c 2 388 0 l 1 389 135 m 1 389 185 l 1 349 192 312 196 278 196 c 0 210 196 148 161 148 123 c 0 148 101 181 84 224 84 c 0 278 84 334 101 389 135 c 1 289 727 m 0 357 727 412 672 412 605 c 0 412 541 355 486 289 486 c 0 222 486 166 541 166 607 c 0 166 672 222 727 289 727 c 0 289 674 m 0 251 674 219 643 219 607 c 0 219 571 251 540 289 540 c 0 326 540 359 571 359 606 c 0 359 643 327 674 289 674 c 0 EndSplineSet MinimumDistance: x14,-1 Kerns: 118 -21 119 -12 121 -31 EndChar StartChar: ae Encoding: 230 230 Width: 600 Flags: W HStem: -16 100<147 163 431 451> 172 86<363 501> 197 89<194 211> 350 100<194 211 431 441> VStem: -13 101<131 147> 255 356<172 189> Fore 611 172 m 1 360 172 l 1 377 109 400 84 441 84 c 0 463 84 482 89 509 101 c 0 538 113 553 118 566 118 c 0 592 118 612 96 612 66 c 0 612 47 603 32 587 22 c 0 552 0 489 -16 442 -16 c 0 402 -16 379 -9 342 16 c 1 333 5 321 -1 305 -1 c 0 290 -1 279 5 269 16 c 1 232 -7 202 -16 159 -16 c 0 55 -16 -13 48 -13 145 c 0 -13 189 3 216 45 242 c 0 85 268 148 286 195 286 c 0 210 286 229 284 255 281 c 1 255 301 l 2 255 329 235 350 207 350 c 0 190 350 181 348 117 329 c 0 108 326 100 325 94 325 c 0 68 325 46 348 46 376 c 0 46 401 60 417 87 426 c 0 124 438 182 450 207 450 c 0 253 450 288 433 323 394 c 1 359 433 393 450 435 450 c 0 482 450 528 426 563 381 c 0 594 341 611 285 611 218 c 2 611 172 l 1 255 130 m 1 255 189 l 1 232 195 216 197 199 197 c 0 162 197 121 186 101 171 c 0 93 164 88 154 88 142 c 0 88 107 116 84 158 84 c 0 189 84 215 96 255 130 c 1 362 258 m 1 502 258 l 1 498 285 495 299 487 313 c 0 476 335 454 350 432 350 c 0 409 350 386 333 375 307 c 0 369 294 366 281 362 258 c 1 EndSplineSet Kerns: 118 28 119 32 121 18 EndChar StartChar: ccedilla Encoding: 231 231 Width: 600 Flags: HMW HStem: -229 70<302.5 322.5> 350 100<285 332.5> VStem: 54 100<168.5 226> 272 70<-42 -16> 347 70<-142 -123> Fore 342 -16 m 1 342 -42 l 1 393 -52 417 -81 417 -133 c 0 417 -188 372 -229 312 -229 c 0 278 -229 235 -217 208 -199 c 0 197 -191 190 -179 190 -166 c 0 190 -147 206 -131 225 -131 c 0 233 -131 236 -132 254 -142 c 0 272 -152 294 -159 311 -159 c 0 334 -159 347 -150 347 -134 c 0 347 -112 327 -100 291 -100 c 0 286 -100 281 -101 272 -102 c 1 272 -14 l 1 217 -8 184 2 148 26 c 0 87 66 54 131 54 206 c 0 54 350 159 450 311 450 c 0 367 450 415 440 454 420 c 1 460 441 471 450 491 450 c 0 508 450 526 441 533 428 c 0 539 419 540 411 540 384 c 2 540 307 l 2 540 281 538 271 531 262 c 0 521 249 506 241 490 241 c 0 477 241 462 247 454 255 c 1 446 261 444 267 439 289 c 0 435 307 429 316 417 325 c 1 391 341 354 350 311 350 c 0 259 350 222 336 194 307 c 0 168 281 154 245 154 207 c 0 154 125 213 84 330 84 c 0 370 84 411 89 435 97 c 0 454 103 460 107 485 128 c 0 494 136 503 140 515 140 c 0 542 140 565 117 565 89 c 0 565 58 528 23 475 5 c 0 436 -8 398 -14 342 -16 c 1 EndSplineSet EndChar StartChar: egrave Encoding: 232 232 Width: 600 Flags: HMW HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> Fore 550 172 m 1 142 172 l 1 165 112 218 84 306 84 c 0 352 84 377 88 469 112 c 0 481 115 493 117 502 117 c 0 529 117 550 95 550 67 c 0 550 47 539 33 515 22 c 0 470 2 368 -16 297 -16 c 0 142 -16 33 80 33 216 c 0 33 348 145 450 291 450 c 0 440 450 550 349 550 211 c 2 550 172 l 1 145 260 m 1 439 260 l 1 423 315 365 350 292 350 c 0 219 350 160 314 145 260 c 1 218 680 m 2 351 569 l 2 367 556 374 545 374 532 c 0 374 513 357 496 337 496 c 0 327 496 320 500 305 512 c 2 172 624 l 1 155 637 149 647 149 660 c 0 149 680 165 696 186 696 c 0 197 696 202 693 218 680 c 2 EndSplineSet EndChar StartChar: eacute Encoding: 233 233 Width: 600 Flags: HMW HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> Fore 550 172 m 1 142 172 l 1 165 112 218 84 306 84 c 0 352 84 377 88 469 112 c 0 481 115 493 117 502 117 c 0 529 117 550 95 550 67 c 0 550 47 539 33 515 22 c 0 470 2 368 -16 297 -16 c 0 142 -16 33 80 33 216 c 0 33 348 145 450 291 450 c 0 440 450 550 349 550 211 c 2 550 172 l 1 145 260 m 1 439 260 l 1 423 315 365 350 292 350 c 0 219 350 160 314 145 260 c 1 431 624 m 1 298 512 l 2 283 500 276 496 266 496 c 0 246 496 229 513 229 532 c 0 229 545 236 556 252 569 c 2 385 680 l 2 401 693 406 696 417 696 c 0 438 696 454 680 454 659 c 0 454 647 448 637 431 624 c 1 EndSplineSet Kerns: 118 -9 119 -3 121 -20 EndChar StartChar: ecircumflex Encoding: 234 234 Width: 600 Flags: HMW HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> Fore 550 172 m 1 142 172 l 1 165 112 218 84 306 84 c 0 352 84 377 88 469 112 c 0 481 115 493 117 502 117 c 0 529 117 550 95 550 67 c 0 550 47 539 33 515 22 c 0 470 2 368 -16 297 -16 c 0 142 -16 33 80 33 216 c 0 33 348 145 450 291 450 c 0 440 450 550 349 550 211 c 2 550 172 l 1 145 260 m 1 439 260 l 1 423 315 365 350 292 350 c 0 219 350 160 314 145 260 c 1 305 607 m 1 192 510 l 2 181 501 173 497 164 497 c 0 145 497 129 514 129 532 c 0 129 546 131 549 153 567 c 2 305 696 l 1 456 567 l 2 459 565 463 562 465 560 c 0 476 551 480 543 480 532 c 0 480 514 464 497 446 497 c 0 437 497 428 501 417 510 c 2 305 607 l 1 EndSplineSet Kerns: 118 -9 119 -3 121 -20 EndChar StartChar: edieresis Encoding: 235 235 Width: 600 Flags: HMW HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> VStem: 33 120 241 120 Fore 550 172 m 1 142 172 l 1 165 112 218 84 306 84 c 0 352 84 377 88 469 112 c 0 481 115 493 117 502 117 c 0 529 117 550 95 550 67 c 0 550 47 539 33 515 22 c 0 470 2 368 -16 297 -16 c 0 142 -16 33 80 33 216 c 0 33 348 145 450 291 450 c 0 440 450 550 349 550 211 c 2 550 172 l 1 145 260 m 1 439 260 l 1 423 315 365 350 292 350 c 0 219 350 160 314 145 260 c 1 200 654 m 0 234 654 260 627 260 593 c 0 260 561 233 534 200 534 c 0 167 534 140 561 140 594 c 0 140 627 167 654 200 654 c 0 408 654 m 0 442 654 468 627 468 593 c 0 468 561 441 534 408 534 c 0 375 534 348 561 348 594 c 0 348 627 375 654 408 654 c 0 EndSplineSet EndChar StartChar: igrave Encoding: 236 236 Width: 600 Flags: HMW HStem: 0 100<128 250 350 472> 337 100<172 250> VStem: 250 100<100 337 337 337> Fore 350 437 m 1 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 530 81 538 66 538 50 c 0 538 33 529 17 514 7 c 0 507 3 492 0 472 0 c 2 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 34 62 50 c 0 62 67 71 84 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 337 l 1 172 337 l 2 147 337 135 339 126 347 c 1 113 356 105 371 105 387 c 0 105 404 114 421 129 430 c 0 138 436 146 437 172 437 c 2 350 437 l 1 207 680 m 2 340 569 l 2 356 556 363 545 363 532 c 0 363 513 346 496 326 496 c 0 316 496 309 500 294 512 c 2 161 624 l 1 144 637 138 647 138 660 c 0 138 680 154 696 175 696 c 0 186 696 191 693 207 680 c 2 EndSplineSet EndChar StartChar: iacute Encoding: 237 237 Width: 600 Flags: HMW HStem: 0 100<128 250 350 472> 337 100<172 250> VStem: 250 100<100 337 337 337> Fore 350 437 m 1 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 530 81 538 66 538 50 c 0 538 33 529 17 514 7 c 0 507 3 492 0 472 0 c 2 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 34 62 50 c 0 62 67 71 84 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 337 l 1 172 337 l 2 147 337 135 339 126 347 c 1 113 356 105 371 105 387 c 0 105 404 114 421 129 430 c 0 138 436 146 437 172 437 c 2 350 437 l 1 410 624 m 1 277 512 l 2 262 500 255 496 245 496 c 0 225 496 208 513 208 532 c 0 208 545 215 556 231 569 c 2 364 680 l 2 380 693 385 696 396 696 c 0 417 696 433 680 433 659 c 0 433 647 427 637 410 624 c 1 EndSplineSet EndChar StartChar: icircumflex Encoding: 238 238 Width: 600 Flags: HMW HStem: 0 100<128 250 350 472> 337 100<172 250> VStem: 250 100<100 337 337 337> Fore 350 437 m 1 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 530 81 538 66 538 50 c 0 538 33 529 17 514 7 c 0 507 3 492 0 472 0 c 2 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 34 62 50 c 0 62 67 71 84 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 337 l 1 172 337 l 2 147 337 135 339 126 347 c 1 113 356 105 371 105 387 c 0 105 404 114 421 129 430 c 0 138 436 146 437 172 437 c 2 350 437 l 1 284 607 m 1 171 510 l 2 160 501 152 497 143 497 c 0 124 497 108 514 108 532 c 0 108 546 110 549 132 567 c 2 284 696 l 1 435 567 l 2 438 565 442 562 444 560 c 0 455 551 459 543 459 532 c 0 459 514 443 497 425 497 c 0 416 497 407 501 396 510 c 2 284 607 l 1 EndSplineSet EndChar StartChar: idieresis Encoding: 239 239 Width: 600 Flags: W HStem: 0 100<110 249 350 478> 337 100<158 249> 534 120<171 181 382 389> VStem: 119 120<592 596> 250 100<100 337> 327 120<592 596> Fore 350 437 m 1 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 530 81 538 66 538 50 c 0 538 33 529 17 514 7 c 0 507 3 492 0 472 0 c 2 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 34 62 50 c 0 62 67 71 84 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 337 l 1 172 337 l 2 147 337 135 339 126 347 c 1 113 356 105 371 105 387 c 0 105 404 114 421 129 430 c 0 138 436 146 437 172 437 c 2 350 437 l 1 179 654 m 0 213 654 239 627 239 593 c 0 239 561 212 534 179 534 c 0 146 534 119 561 119 594 c 0 119 627 146 654 179 654 c 0 387 654 m 0 421 654 447 627 447 593 c 0 447 561 420 534 387 534 c 0 354 534 327 561 327 594 c 0 327 627 354 654 387 654 c 0 EndSplineSet MinimumDistance: x24,-1 x18,1 y1,18 y1,0 EndChar StartChar: eth Encoding: 240 240 Width: 600 Flags: W HStem: -16 100<282 314> 350 93<282 302> VStem: 42 102<208 224> 456 101.259<208 224> Fore 417 583 m 1 372 558 l 1 501 468 558 368 558 233 c 0 558 153 537 99 489 55 c 0 439 10 370 -16 300 -16 c 0 157 -16 42 85 42 211 c 0 42 339 151 443 286 443 c 0 336 443 367 433 430 396 c 1 391 445 341 490 293 518 c 1 201 468 l 2 182 457 178 456 169 456 c 0 152 456 139 472 139 493 c 0 139 507 142 510 163 522 c 2 213 551 l 1 204 555 195 559 192 560 c 0 182 564 176 567 174 568 c 2 158 573 l 2 141 579 132 590 132 604 c 0 132 623 151 640 172 640 c 0 195 640 225 631 271 609 c 2 299 596 l 1 376 637 l 2 388 643 399 646 409 646 c 0 426 646 440 632 440 613 c 0 440 601 432 590 417 583 c 1 300 350 m 0 213 350 144 289 144 212 c 0 144 141 214 84 300 84 c 0 385 84 456 141 456 210 c 0 456 289 388 350 300 350 c 0 EndSplineSet EndChar StartChar: ntilde Encoding: 241 241 Width: 600 Flags: W HStem: 0 100<71 94 196 222 407 409 510 525.03> 350 100<310 334> 417 20G<101 195> 523 69<366 375> 587 69<215 231> VStem: 95 100<100 282> 410 100<100 288> Fore 195 437 m 1 195 389 l 1 243 435 277 450 332 450 c 0 377 450 418 437 451 413 c 0 491 383 510 341 510 282 c 2 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 16 547 7 c 0 539 2 526 0 505 0 c 2 416 0 l 2 371 0 349 17 349 50 c 0 349 82 371 100 410 100 c 1 410 278 l 2 410 327 382 350 322 350 c 0 272 350 247 337 195 282 c 1 195 100 l 1 201 100 l 2 228 100 236 98 246 91 c 0 259 81 267 66 267 50 c 0 267 33 258 17 243 7 c 0 235 2 222 0 201 0 c 2 89 0 l 2 65 0 53 3 43 10 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 98 64 100 89 100 c 2 95 100 l 1 95 337 l 1 56 338 34 355 34 387 c 0 34 414 51 432 80 435 c 0 91 437 93 437 101 437 c 2 195 437 l 1 446 656 m 1 466 654 479 643 479 627 c 0 479 613 471 598 450 571 c 0 423 537 399 523 370 523 c 0 348 523 315 537 271 566 c 0 243 584 235 587 221 587 c 0 203 587 195 581 165 540 c 0 158 531 150 526 140 526 c 0 123 526 109 540 109 556 c 0 109 570 119 589 136 610 c 0 161 640 190 656 218 656 c 0 242 656 259 649 309 618 c 0 342 598 355 592 367 592 c 0 382 592 387 596 411 631 c 0 421 645 435 655 446 656 c 1 EndSplineSet MinimumDistance: x4,-1 EndChar StartChar: ograve Encoding: 242 242 Width: 600 Flags: HMW HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> VStem: 42 100<179.5 255> 458 100<179.5 254> Fore 303 450 m 0 444 450 558 346 558 217 c 0 558 87 444 -16 300 -16 c 0 156 -16 42 87 42 217 c 0 42 349 155 450 303 450 c 0 302 350 m 0 211 350 142 293 142 217 c 0 142 142 211 84 300 84 c 0 389 84 458 142 458 217 c 0 458 291 389 350 302 350 c 0 217 680 m 2 350 569 l 2 366 556 373 545 373 532 c 0 373 513 356 496 336 496 c 0 326 496 319 500 304 512 c 2 171 624 l 1 154 637 148 647 148 660 c 0 148 680 164 696 185 696 c 0 196 696 201 693 217 680 c 2 EndSplineSet Kerns: 118 -6 119 -3 121 -17 EndChar StartChar: oacute Encoding: 243 243 Width: 600 Flags: HMW HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> VStem: 42 100<179.5 255> 458 100<179.5 254> Fore 303 450 m 0 444 450 558 346 558 217 c 0 558 87 444 -16 300 -16 c 0 156 -16 42 87 42 217 c 0 42 349 155 450 303 450 c 0 302 350 m 0 211 350 142 293 142 217 c 0 142 142 211 84 300 84 c 0 389 84 458 142 458 217 c 0 458 291 389 350 302 350 c 0 430 624 m 1 297 512 l 2 282 500 275 496 265 496 c 0 245 496 228 513 228 532 c 0 228 545 235 556 251 569 c 2 384 680 l 2 400 693 405 696 416 696 c 0 437 696 453 680 453 659 c 0 453 647 447 637 430 624 c 1 EndSplineSet Kerns: 118 -6 119 -3 121 -17 EndChar StartChar: ocircumflex Encoding: 244 244 Width: 600 Flags: HMW HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> VStem: 42 100<179.5 255> 458 100<179.5 254> Fore 303 450 m 0 444 450 558 346 558 217 c 0 558 87 444 -16 300 -16 c 0 156 -16 42 87 42 217 c 0 42 349 155 450 303 450 c 0 302 350 m 0 211 350 142 293 142 217 c 0 142 142 211 84 300 84 c 0 389 84 458 142 458 217 c 0 458 291 389 350 302 350 c 0 300 607 m 1 187 510 l 2 176 501 168 497 159 497 c 0 140 497 124 514 124 532 c 0 124 546 126 549 148 567 c 2 300 696 l 1 451 567 l 2 454 565 458 562 460 560 c 0 471 551 475 543 475 532 c 0 475 514 459 497 441 497 c 0 432 497 423 501 412 510 c 2 300 607 l 1 EndSplineSet Kerns: 116 -13 EndChar StartChar: otilde Encoding: 245 245 Width: 600 Flags: HMW HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 587 69<225 241> VStem: 42 100<179.5 255> 458 100<179.5 254> Fore 303 450 m 0 444 450 558 346 558 217 c 0 558 87 444 -16 300 -16 c 0 156 -16 42 87 42 217 c 0 42 349 155 450 303 450 c 0 302 350 m 0 211 350 142 293 142 217 c 0 142 142 211 84 300 84 c 0 389 84 458 142 458 217 c 0 458 291 389 350 302 350 c 0 460 656 m 0 477 656 492 642 492 628 c 0 492 613 484 598 463 571 c 0 436 537 412 523 383 523 c 0 361 523 328 537 284 566 c 0 257 584 248 587 234 587 c 0 216 587 208 580 179 541 c 0 171 530 163 526 153 526 c 0 136 526 122 540 122 556 c 0 122 570 132 590 149 611 c 0 174 640 203 656 232 656 c 0 255 656 272 649 322 618 c 0 356 598 369 592 380 592 c 0 395 592 399 596 421 626 c 0 435 646 448 656 460 656 c 0 EndSplineSet EndChar StartChar: odieresis Encoding: 246 246 Width: 600 Flags: HMW HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> VStem: 42 100<179.5 255> 250 120 458 100<179.5 254> Fore 303 450 m 0 444 450 558 346 558 217 c 0 558 87 444 -16 300 -16 c 0 156 -16 42 87 42 217 c 0 42 349 155 450 303 450 c 0 302 350 m 0 211 350 142 293 142 217 c 0 142 142 211 84 300 84 c 0 389 84 458 142 458 217 c 0 458 291 389 350 302 350 c 0 196 654 m 0 230 654 256 627 256 593 c 0 256 561 229 534 196 534 c 0 163 534 136 561 136 594 c 0 136 627 163 654 196 654 c 0 404 654 m 0 438 654 464 627 464 593 c 0 464 561 437 534 404 534 c 0 371 534 344 561 344 594 c 0 344 627 371 654 404 654 c 0 EndSplineSet Kerns: 116 -13 118 -6 119 -3 120 -10 121 -17 EndChar StartChar: divide Encoding: 247 247 Width: 600 Flags: HMW HStem: 230 100<108 492> Fore 108 330 m 2 492 330 l 2 519 330 527 328 537 321 c 0 550 311 558 296 558 280 c 0 558 263 549 246 534 237 c 0 526 232 514 230 492 230 c 2 108 230 l 2 84 230 72 232 63 240 c 1 50 249 42 265 42 280 c 0 42 297 52 314 66 323 c 0 75 329 83 330 108 330 c 2 300 160 m 0 346 160 375 134 375 93 c 0 375 54 345 28 300 28 c 0 255 28 225 55 225 94 c 0 225 133 255 160 300 160 c 0 300 532 m 0 346 532 375 506 375 465 c 0 375 426 345 400 300 400 c 0 255 400 225 427 225 466 c 0 225 505 255 532 300 532 c 0 EndSplineSet EndChar StartChar: oslash Encoding: 248 248 Width: 600 Flags: HMW HStem: -16 100<289 344> 350 100<255.5 309.5> VStem: 42 100<204.5 254.5> 458 100<179.5 229> Fore 548 402 m 1 506 359 l 1 540 316 558 267 558 217 c 0 558 87 444 -16 300 -16 c 0 255 -16 213 -6 172 14 c 1 116 -44 l 2 95 -65 87 -70 71 -70 c 0 44 -70 23 -49 23 -22 c 0 23 -7 28 2 48 22 c 2 96 72 l 1 62 114 42 167 42 217 c 0 42 347 156 450 298 450 c 0 342 450 398 437 432 419 c 1 480 468 l 2 501 489 509 494 526 494 c 0 552 494 573 473 573 447 c 0 573 430 569 422 548 402 c 1 436 286 m 1 247 91 l 1 265 86 279 84 299 84 c 0 389 84 458 142 458 217 c 0 458 241 450 264 436 286 c 1 167 145 m 1 357 342 l 1 336 347 319 350 300 350 c 0 211 350 142 292 142 217 c 0 142 192 150 168 167 145 c 1 EndSplineSet EndChar StartChar: ugrave Encoding: 249 249 Width: 600 Flags: HMW HStem: -13 100<253 300.5> 337 100<375 410> VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337> Fore 510 437 m 1 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 17 547 7 c 0 539 2 526 0 505 0 c 2 410 0 l 1 410 48 l 1 360 1 328 -13 273 -13 c 0 228 -13 186 0 154 24 c 0 114 54 95 97 95 156 c 2 95 338 l 1 79 338 l 1 68 337 l 2 38 335 13 358 13 387 c 0 13 404 22 421 37 430 c 0 46 436 54 437 79 437 c 2 195 437 l 1 195 159 l 2 195 110 223 87 283 87 c 0 333 87 358 100 410 155 c 1 410 337 l 1 375 337 l 2 350 337 339 339 330 347 c 1 317 356 309 372 309 387 c 0 309 404 318 421 333 430 c 0 342 436 351 437 375 437 c 2 510 437 l 1 215 680 m 2 348 569 l 2 364 556 371 545 371 532 c 0 371 513 354 496 334 496 c 0 324 496 317 500 302 512 c 2 169 624 l 1 152 637 146 647 146 660 c 0 146 680 162 696 183 696 c 0 194 696 199 693 215 680 c 2 EndSplineSet EndChar StartChar: uacute Encoding: 250 250 Width: 600 Flags: HMW HStem: -13 100<253 300.5> 337 100<375 410> VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337> Fore 510 437 m 1 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 17 547 7 c 0 539 2 526 0 505 0 c 2 410 0 l 1 410 48 l 1 360 1 328 -13 273 -13 c 0 228 -13 186 0 154 24 c 0 114 54 95 97 95 156 c 2 95 338 l 1 79 338 l 1 68 337 l 2 38 335 13 358 13 387 c 0 13 404 22 421 37 430 c 0 46 436 54 437 79 437 c 2 195 437 l 1 195 159 l 2 195 110 223 87 283 87 c 0 333 87 358 100 410 155 c 1 410 337 l 1 375 337 l 2 350 337 339 339 330 347 c 1 317 356 309 372 309 387 c 0 309 404 318 421 333 430 c 0 342 436 351 437 375 437 c 2 510 437 l 1 418 624 m 1 285 512 l 2 270 500 263 496 253 496 c 0 233 496 216 513 216 532 c 0 216 545 223 556 239 569 c 2 372 680 l 2 388 693 393 696 404 696 c 0 425 696 441 680 441 659 c 0 441 647 435 637 418 624 c 1 EndSplineSet EndChar StartChar: ucircumflex Encoding: 251 251 Width: 600 Flags: HMW HStem: -13 100<253 300.5> 337 100<375 410> VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337> Fore 510 437 m 1 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 17 547 7 c 0 539 2 526 0 505 0 c 2 410 0 l 1 410 48 l 1 360 1 328 -13 273 -13 c 0 228 -13 186 0 154 24 c 0 114 54 95 97 95 156 c 2 95 338 l 1 79 338 l 1 68 337 l 2 38 335 13 358 13 387 c 0 13 404 22 421 37 430 c 0 46 436 54 437 79 437 c 2 195 437 l 1 195 159 l 2 195 110 223 87 283 87 c 0 333 87 358 100 410 155 c 1 410 337 l 1 375 337 l 2 350 337 339 339 330 347 c 1 317 356 309 372 309 387 c 0 309 404 318 421 333 430 c 0 342 436 351 437 375 437 c 2 510 437 l 1 296 607 m 1 183 510 l 2 172 501 164 497 155 497 c 0 136 497 120 514 120 532 c 0 120 546 122 549 144 567 c 2 296 696 l 1 447 567 l 2 450 565 454 562 456 560 c 0 467 551 471 543 471 532 c 0 471 514 455 497 437 497 c 0 428 497 419 501 408 510 c 2 296 607 l 1 EndSplineSet EndChar StartChar: udieresis Encoding: 252 252 Width: 600 Flags: W HStem: -13 100<269 285> 0 21G<410 505> 0.0596637 99.9403<510.031 525.045> 338 99<79 95 365 409> 534 120<189 197 397 409> VStem: 95 100<147 337> 131 120<592 596> 339 120<592 596> 410 100<155 337> Fore 510 437 m 1 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 17 547 7 c 0 539 2 526 0 505 0 c 2 410 0 l 1 410 48 l 1 360 1 328 -13 273 -13 c 0 228 -13 186 0 154 24 c 0 114 54 95 97 95 156 c 2 95 338 l 1 79 338 l 1 68 337 l 2 38 335 13 358 13 387 c 0 13 404 22 421 37 430 c 0 46 436 54 437 79 437 c 2 195 437 l 1 195 159 l 2 195 110 223 87 283 87 c 0 333 87 358 100 410 155 c 1 410 337 l 1 375 337 l 2 350 337 339 339 330 347 c 1 317 356 309 372 309 387 c 0 309 404 318 421 333 430 c 0 342 436 351 437 375 437 c 2 510 437 l 1 191 654 m 0 225 654 251 627 251 593 c 0 251 561 224 534 191 534 c 0 158 534 131 561 131 594 c 0 131 627 158 654 191 654 c 0 399 654 m 0 433 654 459 627 459 593 c 0 459 561 432 534 399 534 c 0 366 534 339 561 339 594 c 0 339 627 366 654 399 654 c 0 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: yacute Encoding: 253 253 Width: 600 Flags: HMW HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> Fore 242 3 m 1 70 337 l 1 39 341 21 359 21 387 c 0 21 414 38 432 67 435 c 0 78 437 80 437 87 437 c 2 177 437 l 2 203 437 213 435 223 428 c 0 235 418 243 403 243 387 c 0 243 356 222 338 184 337 c 1 298 114 l 1 418 337 l 1 377 337 354 355 354 387 c 0 354 414 371 432 400 435 c 0 411 437 413 437 421 437 c 2 513 437 l 2 539 437 549 435 558 428 c 0 572 418 579 403 579 387 c 0 579 358 560 340 527 337 c 1 297 -105 l 1 302 -105 l 2 328 -105 338 -107 348 -114 c 0 360 -124 368 -139 368 -155 c 0 368 -172 359 -188 344 -198 c 0 336 -203 324 -205 302 -205 c 2 87 -205 l 2 62 -205 51 -203 42 -195 c 1 29 -186 21 -171 21 -155 c 0 21 -138 30 -121 45 -112 c 0 54 -107 63 -105 87 -105 c 2 187 -105 l 1 242 3 l 1 452 624 m 1 319 512 l 2 304 500 297 496 287 496 c 0 267 496 250 513 250 532 c 0 250 545 257 556 273 569 c 2 406 680 l 2 422 693 427 696 438 696 c 0 459 696 475 680 475 659 c 0 475 647 469 637 452 624 c 1 EndSplineSet EndChar StartChar: thorn Encoding: 254 254 Width: 600 Flags: W HStem: -205 100<40 73 175 248> 10 100<312 331> 350 100<312 344> 524 100<40 73> VStem: -8 306<-157 -153> 74 100<-105 65 223 243 393 524> 471 100<223 243> Fore 174 66 m 1 174 -105 l 1 232 -105 l 2 258 -105 268 -107 278 -114 c 0 291 -124 298 -139 298 -155 c 0 298 -172 289 -188 274 -198 c 0 266 -203 254 -205 232 -205 c 2 58 -205 l 2 33 -205 22 -203 12 -195 c 0 0 -186 -8 -171 -8 -155 c 0 -8 -138 1 -121 16 -112 c 0 25 -106 34 -105 58 -105 c 2 74 -105 l 1 74 524 l 1 58 524 l 2 32 524 22 526 12 533 c 0 0 543 -8 558 -8 574 c 0 -8 591 1 608 16 617 c 0 25 622 34 624 58 624 c 2 174 624 l 1 174 392 l 1 223 434 265 450 328 450 c 0 467 450 571 354 571 224 c 0 571 101 468 10 329 10 c 0 270 10 226 26 174 66 c 1 323 350 m 0 281 350 248 341 222 321 c 0 193 300 174 263 174 231 c 0 174 160 235 110 323 110 c 0 409 110 471 160 471 230 c 0 471 263 452 300 423 321 c 0 397 341 364 350 323 350 c 0 EndSplineSet MinimumDistance: x22,-1 EndChar StartChar: ydieresis Encoding: 255 255 Width: 600 Flags: HMW HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> VStem: 21 120 229 120 Fore 242 3 m 1 70 337 l 1 39 341 21 359 21 387 c 0 21 414 38 432 67 435 c 0 78 437 80 437 87 437 c 2 177 437 l 2 203 437 213 435 223 428 c 0 235 418 243 403 243 387 c 0 243 356 222 338 184 337 c 1 298 114 l 1 418 337 l 1 377 337 354 355 354 387 c 0 354 414 371 432 400 435 c 0 411 437 413 437 421 437 c 2 513 437 l 2 539 437 549 435 558 428 c 0 572 418 579 403 579 387 c 0 579 358 560 340 527 337 c 1 297 -105 l 1 302 -105 l 2 328 -105 338 -107 348 -114 c 0 360 -124 368 -139 368 -155 c 0 368 -172 359 -188 344 -198 c 0 336 -203 324 -205 302 -205 c 2 87 -205 l 2 62 -205 51 -203 42 -195 c 1 29 -186 21 -171 21 -155 c 0 21 -138 30 -121 45 -112 c 0 54 -107 63 -105 87 -105 c 2 187 -105 l 1 242 3 l 1 196 654 m 0 230 654 256 627 256 593 c 0 256 561 229 534 196 534 c 0 163 534 136 561 136 594 c 0 136 627 163 654 196 654 c 0 404 654 m 0 438 654 464 627 464 593 c 0 464 561 437 534 404 534 c 0 371 534 344 561 344 594 c 0 344 627 371 654 404 654 c 0 EndSplineSet EndChar StartChar: Amacron Encoding: 256 256 Width: 600 Flags: HMW HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 689 80<178 422> Fore 416 158 m 1 178 158 l 1 155 100 l 1 178 100 l 2 205 100 213 98 223 91 c 0 236 81 244 66 244 50 c 0 244 33 235 16 220 7 c 0 212 2 199 0 178 0 c 2 45 0 l 2 1 0 -21 17 -21 50 c 0 -21 67 -12 84 3 93 c 0 12 99 21 100 46 100 c 1 201 483 l 1 138 483 l 2 112 483 102 485 92 492 c 0 79 502 71 517 71 533 c 0 71 550 80 566 95 576 c 0 104 582 111 583 138 583 c 2 354 583 l 1 553 100 l 1 581 100 590 98 600 90 c 0 613 81 621 66 621 50 c 0 621 33 612 16 597 7 c 0 589 2 576 0 555 0 c 2 416 0 l 2 392 0 380 3 371 10 c 0 358 19 350 34 350 50 c 0 350 67 359 84 374 93 c 0 383 99 390 100 416 100 c 2 439 100 l 1 416 158 l 1 375 258 m 1 297 450 l 1 218 258 l 1 375 258 l 1 178 769 m 2 422 769 l 2 445 769 457 766 464 758 c 0 470 751 475 737 475 729 c 0 475 704 455 689 422 689 c 2 178 689 l 2 153 689 145 691 136 701 c 0 130 709 125 721 125 729 c 0 125 754 144 769 178 769 c 2 EndSplineSet EndChar StartChar: amacron Encoding: 257 257 Width: 600 Flags: W HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 546 80<170 426> VStem: 42 106<118 128> 125 350<585 592> 389 100<135 185 279 304> Fore 388 0 m 1 388 23 l 1 340 -2 281 -16 222 -16 c 0 123 -16 42 45 42 119 c 0 42 150 57 185 81 212 c 0 126 262 195 288 284 288 c 0 316 288 347 285 388 278 c 1 388 301 l 2 388 335 359 350 295 350 c 0 262 350 225 345 179 333 c 0 162 329 148 327 139 327 c 0 111 327 90 349 90 378 c 0 90 399 100 413 120 420 c 0 168 437 242 450 292 450 c 0 415 450 489 395 489 302 c 2 489 100 l 1 505 100 l 2 532 100 541 98 551 91 c 0 563 81 571 66 571 50 c 0 571 33 562 16 547 7 c 0 540 2 526 0 505 0 c 2 388 0 l 1 389 135 m 1 389 185 l 1 349 192 312 196 278 196 c 0 210 196 148 161 148 123 c 0 148 101 181 84 224 84 c 0 278 84 334 101 389 135 c 1 178 626 m 2 422 626 l 2 445 626 457 623 464 615 c 0 470 608 475 594 475 586 c 0 475 561 455 546 422 546 c 2 178 546 l 2 153 546 145 548 136 558 c 0 130 566 125 578 125 586 c 0 125 611 144 626 178 626 c 2 EndSplineSet MinimumDistance: x14,-1 EndChar StartChar: Abreve Encoding: 258 258 Width: 600 Flags: HMW HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 647 68<272.5 327.5> Fore 416 158 m 1 178 158 l 1 155 100 l 1 178 100 l 2 205 100 213 98 223 91 c 0 236 81 244 66 244 50 c 0 244 33 235 16 220 7 c 0 212 2 199 0 178 0 c 2 45 0 l 2 1 0 -21 17 -21 50 c 0 -21 67 -12 84 3 93 c 0 12 99 21 100 46 100 c 1 201 483 l 1 138 483 l 2 112 483 102 485 92 492 c 0 79 502 71 517 71 533 c 0 71 550 80 566 95 576 c 0 104 582 111 583 138 583 c 2 354 583 l 1 553 100 l 1 581 100 590 98 600 90 c 0 613 81 621 66 621 50 c 0 621 33 612 16 597 7 c 0 589 2 576 0 555 0 c 2 416 0 l 2 392 0 380 3 371 10 c 0 358 19 350 34 350 50 c 0 350 67 359 84 374 93 c 0 383 99 390 100 416 100 c 2 439 100 l 1 416 158 l 1 375 258 m 1 297 450 l 1 218 258 l 1 375 258 l 1 159 831 m 0 179 831 186 822 193 791 c 0 203 745 245 715 300 715 c 0 355 715 397 745 407 791 c 0 414 822 421 831 441 831 c 0 461 831 475 816 475 793 c 0 475 717 392 647 300 647 c 0 208 647 125 717 125 793 c 0 125 816 139 831 159 831 c 0 EndSplineSet EndChar StartChar: abreve Encoding: 259 259 Width: 600 Flags: W HStem: -16 100<218 234> 0 100<489 522> 196 92<266 302> 350 100<277 314> 503 68<283 314> VStem: 42 106<118 128> 389 100<135 185 279 304> Fore 388 0 m 1 388 23 l 1 340 -2 281 -16 222 -16 c 0 123 -16 42 45 42 119 c 0 42 150 57 185 81 212 c 0 126 262 195 288 284 288 c 0 316 288 347 285 388 278 c 1 388 301 l 2 388 335 359 350 295 350 c 0 262 350 225 345 179 333 c 0 162 329 148 327 139 327 c 0 111 327 90 349 90 378 c 0 90 399 100 413 120 420 c 0 168 437 242 450 292 450 c 0 415 450 489 395 489 302 c 2 489 100 l 1 505 100 l 2 532 100 541 98 551 91 c 0 563 81 571 66 571 50 c 0 571 33 562 16 547 7 c 0 540 2 526 0 505 0 c 2 388 0 l 1 389 135 m 1 389 185 l 1 349 192 312 196 278 196 c 0 210 196 148 161 148 123 c 0 148 101 181 84 224 84 c 0 278 84 334 101 389 135 c 1 159 687 m 0 179 687 186 678 193 647 c 0 203 601 245 571 300 571 c 0 355 571 397 601 407 647 c 0 414 678 421 687 441 687 c 0 461 687 475 672 475 649 c 0 475 573 392 503 300 503 c 0 208 503 125 573 125 649 c 0 125 672 139 687 159 687 c 0 EndSplineSet MinimumDistance: x14,-1 EndChar StartChar: Aogonek Encoding: 260 260 Width: 600 Flags: HMW HStem: -208 76<498.5 512> 0 100<33.5 45 45 46 155 178 416 439> 158 100<218 375> 430 20<297 297> 483 100<138 201> VStem: 405 77<-118.5 -96> Fore 354 583 m 1 553 100 l 1 581 100 590 98 600 91 c 0 613 81 621 66 621 50 c 0 621 27 611 15 576 -5 c 0 521 -36 482 -80 482 -112 c 0 482 -125 491 -132 506 -132 c 0 518 -132 529 -128 557 -114 c 0 567 -109 572 -108 579 -108 c 0 601 -108 618 -125 618 -146 c 0 618 -164 607 -178 583 -189 c 0 556 -201 526 -208 499 -208 c 0 441 -208 405 -174 405 -119 c 0 405 -69 426 -38 484 0 c 1 416 0 l 2 392 0 380 3 371 10 c 0 358 19 350 34 350 50 c 0 350 67 359 84 374 93 c 0 383 99 390 100 416 100 c 2 439 100 l 1 416 158 l 1 178 158 l 1 155 100 l 1 178 100 l 2 205 100 213 98 223 91 c 0 236 81 244 66 244 50 c 0 244 33 235 16 220 7 c 0 212 2 199 0 178 0 c 2 45 0 l 2 1 0 -21 17 -21 50 c 0 -21 67 -12 84 3 93 c 0 12 99 21 100 46 100 c 1 201 483 l 1 138 483 l 2 112 483 102 485 92 492 c 0 79 502 71 517 71 533 c 0 71 550 80 566 95 576 c 0 104 582 111 583 138 583 c 2 354 583 l 1 375 258 m 1 297 450 l 1 218 258 l 1 375 258 l 1 EndSplineSet EndChar StartChar: aogonek Encoding: 261 261 Width: 600 Flags: W HStem: -208 76<460 474> -16 100<218 234> 196 92<266 298> 350 100<277 314> VStem: 42 106<118 128> 367 77<-118 -106> 389 100<135 185 279 304> Fore 489 100 m 1 505 100 l 2 532 100 541 98 551 91 c 0 564 81 571 66 571 50 c 0 571 26 567 21 507 -25 c 0 465 -57 444 -87 444 -112 c 0 444 -125 453 -132 468 -132 c 0 480 -132 491 -128 519 -114 c 0 529 -109 534 -108 541 -108 c 0 563 -108 580 -125 580 -146 c 0 580 -164 569 -178 545 -189 c 0 518 -201 488 -208 461 -208 c 0 403 -208 367 -174 367 -119 c 0 367 -69 388 -38 446 0 c 1 388 0 l 1 388 23 l 1 340 -2 281 -16 222 -16 c 0 123 -16 42 45 42 119 c 0 42 150 57 185 81 212 c 0 126 262 195 288 284 288 c 0 316 288 347 285 388 278 c 1 388 301 l 2 388 335 359 350 295 350 c 0 262 350 225 345 179 333 c 0 162 329 148 327 139 327 c 0 111 327 90 349 90 378 c 0 90 399 100 413 120 420 c 0 168 437 242 450 292 450 c 0 415 450 489 395 489 302 c 2 489 100 l 1 389 135 m 1 389 185 l 1 349 192 312 196 278 196 c 0 210 196 148 161 148 123 c 0 148 101 181 84 224 84 c 0 278 84 334 101 389 135 c 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: Cacute Encoding: 262 262 Width: 600 Flags: W HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328> VStem: 33 100<242 322> DStem: 406 824 452 767 273 712 319 656 Fore 447 563 m 2 457 559 l 1 470 577 482 583 499 583 c 0 517 583 533 574 542 559 c 0 548 550 549 542 549 517 c 2 549 433 l 2 549 408 547 397 540 388 c 0 530 375 515 367 499 367 c 0 486 367 472 373 464 381 c 0 456 389 454 396 450 420 c 0 445 444 435 457 406 473 c 0 379 488 343 497 309 497 c 0 207 497 133 420 133 315 c 2 133 251 l 2 133 151 210 86 330 86 c 0 375 86 415 94 440 109 c 0 451 115 451 115 478 143 c 0 489 154 501 159 514 159 c 0 541 159 564 136 564 109 c 0 564 86 545 60 511 36 c 0 467 4 399 -14 327 -14 c 0 157 -14 33 97 33 249 c 2 33 315 l 2 33 475 151 597 305 597 c 0 357 597 392 589 447 563 c 2 452 767 m 1 319 656 l 2 306 645 296 640 287 640 c 0 267 640 250 657 250 676 c 0 250 688 257 700 273 712 c 1 406 824 l 2 420 835 428 839 438 839 c 0 459 839 475 823 475 803 c 0 475 790 469 780 452 767 c 1 EndSplineSet MinimumDistance: x24,-1 EndChar StartChar: cacute Encoding: 263 263 Width: 600 Flags: HMW HStem: -16 100<274.5 350> 350 100<284.5 332> VStem: 54 100<176.5 226> Fore 540 384 m 2 540 307 l 2 540 281 538 271 531 262 c 0 521 249 506 241 490 241 c 0 477 241 462 247 454 255 c 1 446 261 444 267 439 289 c 0 435 307 429 316 416 325 c 0 390 341 354 350 310 350 c 0 259 350 222 336 194 307 c 0 168 281 154 245 154 207 c 0 154 125 213 84 330 84 c 0 370 84 411 89 435 97 c 0 454 103 459 107 485 128 c 0 494 136 503 140 515 140 c 0 542 140 565 117 565 89 c 0 565 63 542 37 501 16 c 0 460 -4 396 -16 323 -16 c 0 226 -16 164 5 115 53 c 0 75 93 54 146 54 207 c 0 54 350 159 450 310 450 c 0 367 450 415 440 454 420 c 1 460 441 471 450 492 450 c 0 525 450 540 430 540 384 c 2 452 624 m 1 319 512 l 2 304 500 297 496 287 496 c 0 267 496 250 513 250 532 c 0 250 545 257 556 273 569 c 2 406 680 l 2 422 693 427 696 438 696 c 0 459 696 475 680 475 659 c 0 475 647 469 637 452 624 c 1 EndSplineSet EndChar StartChar: Ccircumflex Encoding: 264 264 Width: 600 Flags: W HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328> VStem: 33 100<242 322> DStem: 299 733 299 822 411 636 450 693 299 733 299 822 411 636 450 693 299 822 299 733 147 693 186 636 299 733 299 822 411 636 450 693 299 822 299 733 147 693 186 636 299 733 299 822 411 636 450 693 299 822 299 733 147 693 186 636 299 733 299 822 411 636 450 693 299 822 299 733 147 693 186 636 299 733 299 822 411 636 450 693 299 822 299 733 147 693 186 636 Ref: 710 N 1 0 0 1 -2 126 Ref: 67 N 1 0 0 1 0 0 EndChar StartChar: ccircumflex Encoding: 265 265 Width: 600 Flags: W HStem: -16 100<274.5 350> 350 100<284.5 332> VStem: 54 100<176.5 226> DStem: 310 587 310 676 422 490 461 547 310 587 310 676 422 490 461 547 310 676 310 587 158 547 197 490 310 587 310 676 422 490 461 547 310 676 310 587 158 547 197 490 310 587 310 676 422 490 461 547 310 676 310 587 158 547 197 490 310 587 310 676 422 490 461 547 310 676 310 587 158 547 197 490 310 587 310 676 422 490 461 547 310 676 310 587 158 547 197 490 Ref: 710 N 1 0 0 1 9 -20 Ref: 99 N 1 0 0 1 0 0 EndChar StartChar: Cdotaccent Encoding: 266 266 Width: 600 Flags: W HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328> 623 120<287.067 302> VStem: 33 100<242 322> 238 120<681 687> Ref: 729 N 1 0 0 1 -2 89 Ref: 67 N 1 0 0 1 0 0 EndChar StartChar: cdotaccent Encoding: 267 267 Width: 600 Flags: W HStem: -16 100<274.5 350> 350 100<284.5 332> 477 120<299.067 314> VStem: 54 100<176.5 226> 250 120<535 541> Ref: 729 N 1 0 0 1 10 -57 Ref: 99 N 1 0 0 1 0 0 EndChar StartChar: Ccaron Encoding: 268 268 Width: 600 Flags: W HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328> VStem: 33 100<242 322> DStem: 153 748 192 806 305 620 305 709 417 806 456 748 305 709 305 620 Fore 447 563 m 2 457 559 l 1 470 577 482 583 499 583 c 0 517 583 533 574 542 559 c 0 548 550 549 542 549 517 c 2 549 433 l 2 549 408 547 397 540 388 c 0 530 375 515 367 499 367 c 0 486 367 472 373 464 381 c 0 456 389 454 396 450 420 c 0 445 444 435 457 406 473 c 0 379 488 343 497 309 497 c 0 207 497 133 420 133 315 c 2 133 251 l 2 133 151 210 86 330 86 c 0 375 86 415 94 440 109 c 0 451 115 451 115 478 143 c 0 489 154 501 159 514 159 c 0 541 159 564 136 564 109 c 0 564 86 545 60 511 36 c 0 467 4 399 -14 327 -14 c 0 157 -14 33 97 33 249 c 2 33 315 l 2 33 475 151 597 305 597 c 0 357 597 392 589 447 563 c 2 305 709 m 1 417 806 l 1 429 815 436 819 446 819 c 0 464 819 480 802 480 784 c 0 480 772 476 765 465 756 c 2 456 748 l 1 305 620 l 1 153 748 l 2 131 767 129 770 129 783 c 0 129 802 145 819 164 819 c 0 173 819 180 815 192 806 c 1 305 709 l 1 EndSplineSet MinimumDistance: x29,-1 EndChar StartChar: ccaron Encoding: 269 269 Width: 600 Flags: W HStem: -16 100<309 358> 350 100<294 332> VStem: 54 100<192 224> DStem: 169 605 208 662 321 477 321 566 433 662 472 605 321 566 321 477 Fore 540 384 m 2 540 307 l 2 540 281 538 271 531 262 c 0 521 249 506 241 490 241 c 0 477 241 462 247 454 255 c 1 446 261 444 267 439 289 c 0 435 307 429 316 416 325 c 0 390 341 354 350 310 350 c 0 259 350 222 336 194 307 c 0 168 281 154 245 154 207 c 0 154 125 213 84 330 84 c 0 370 84 411 89 435 97 c 0 454 103 459 107 485 128 c 0 494 136 503 140 515 140 c 0 542 140 565 117 565 89 c 0 565 63 542 37 501 16 c 0 460 -4 396 -16 323 -16 c 0 226 -16 164 5 115 53 c 0 75 93 54 146 54 207 c 0 54 350 159 450 310 450 c 0 367 450 415 440 454 420 c 1 460 441 471 450 492 450 c 0 525 450 540 430 540 384 c 2 321 566 m 1 433 662 l 2 445 673 452 676 462 676 c 0 480 676 496 659 496 640 c 0 496 629 492 621 481 612 c 2 472 605 l 1 321 477 l 1 169 605 l 2 147 623 145 627 145 640 c 0 145 659 161 676 180 676 c 0 189 676 195 673 208 662 c 2 321 566 l 1 EndSplineSet MinimumDistance: x27,-1 EndChar StartChar: Dcaron Encoding: 270 270 Width: 600 Flags: W HStem: 0 100<61 73 175 301> 483 100<61 73 175 301> VStem: 74 100<101 482> 450 100<240 320> DStem: 94 738 133 796 246 610 246 699 358 796 397 738 246 699 246 610 Fore 74 100 m 1 74 483 l 1 35 483 13 501 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 80 583 c 2 292 583 l 2 438 583 550 462 550 305 c 2 550 258 l 2 550 185 526 123 480 75 c 0 431 23 371 0 284 0 c 2 80 0 l 2 56 0 43 3 34 10 c 0 21 19 13 35 13 50 c 0 13 82 36 100 74 100 c 1 174 100 m 1 285 100 l 2 345 100 378 112 409 144 c 1 437 175 450 210 450 261 c 2 450 307 l 2 450 354 434 398 405 432 c 0 375 467 337 483 284 483 c 2 174 483 l 1 174 100 l 1 246 699 m 1 358 796 l 1 370 805 377 809 387 809 c 0 405 809 421 792 421 774 c 0 421 762 417 755 406 746 c 2 397 738 l 1 246 610 l 1 94 738 l 2 72 757 70 760 70 773 c 0 70 792 86 809 105 809 c 0 114 809 121 805 133 796 c 1 246 699 l 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: dcaron Encoding: 271 271 Width: 600 Flags: HMW HStem: -14 100<258 306> 351 100<257 306> VStem: 33 100<202 235.5> 431 100<201 235 401 423 495 525 525 525> Fore 531 495 m 1 607 611 l 2 620 631 629 637 645 637 c 0 665 637 681 621 681 600 c 0 681 594 677 584 668 570 c 2 586 445 l 2 573 426 564 419 549 419 c 0 544 419 539 420 531 423 c 1 531 100 l 1 547 100 l 2 574 100 583 98 593 91 c 0 605 81 613 66 613 50 c 0 613 33 604 16 589 7 c 0 581 2 570 0 547 0 c 2 431 0 l 1 431 35 l 1 378 -1 339 -14 280 -14 c 0 205 -14 149 7 103 51 c 0 57 96 33 153 33 219 c 0 33 284 57 342 103 386 c 0 149 430 205 451 281 451 c 0 341 451 388 435 431 401 c 1 431 525 l 1 415 525 l 2 389 525 379 527 369 534 c 0 357 544 349 559 349 575 c 0 349 591 358 608 373 617 c 0 382 623 389 624 415 624 c 2 531 624 l 1 531 495 l 1 281 351 m 0 233 351 200 339 172 311 c 0 147 286 133 252 133 219 c 0 133 185 147 152 172 126 c 1 200 99 234 86 282 86 c 0 330 86 364 99 392 126 c 0 417 151 431 185 431 217 c 0 431 253 417 286 392 311 c 0 363 339 331 351 281 351 c 0 EndSplineSet EndChar StartChar: Dcroat Encoding: 272 272 Width: 600 Flags: HMW HStem: 0 100<67.5 74 174 284> 243 100<67 74 174 248> 483 100<174 174 174 284> VStem: 74 100<100 243 343 483> 450 100<261 305> Fore 74 243 m 1 66 243 l 2 43 243 30 246 21 253 c 0 8 262 0 277 0 293 c 0 0 310 9 327 24 336 c 0 33 342 40 343 67 343 c 2 74 343 l 1 74 483 l 1 35 483 13 501 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 80 583 c 2 292 583 l 2 438 583 550 462 550 305 c 2 550 258 l 2 550 185 526 123 480 75 c 0 431 23 371 0 284 0 c 2 79 0 l 2 56 0 43 3 34 10 c 0 21 19 13 35 13 50 c 0 13 82 36 100 74 100 c 1 74 243 l 1 174 243 m 1 174 100 l 1 285 100 l 2 345 100 378 112 409 144 c 1 437 175 450 210 450 261 c 2 450 307 l 2 450 354 434 398 405 432 c 0 375 467 337 483 284 483 c 2 174 483 l 1 174 343 l 1 248 343 l 2 275 343 283 341 293 334 c 0 307 324 314 309 314 293 c 0 314 260 292 243 248 243 c 2 174 243 l 1 EndSplineSet EndChar StartChar: dcroat Encoding: 273 273 Width: 600 Flags: W HStem: -16 100<273 289> 0 100<532 561> 350 100<273 289> 407 100<531 561> 525 99<401 430> VStem: 33 100<192 224> 431 100<192 211 405 407 507 525> 431 182<448 464> Fore 531 507 m 1 547 507 l 2 574 507 582 505 593 498 c 0 606 488 613 473 613 457 c 0 613 424 591 407 547 407 c 2 531 407 l 1 531 100 l 1 547 100 l 2 574 100 583 98 593 91 c 0 605 81 613 66 613 50 c 0 613 33 604 16 589 7 c 0 581 2 570 0 547 0 c 2 431 0 l 1 431 24 l 1 385 -3 337 -16 283 -16 c 0 135 -16 33 76 33 209 c 0 33 345 141 450 281 450 c 0 337 450 381 437 431 404 c 1 431 525 l 1 415 525 l 2 389 525 379 527 370 534 c 0 357 544 349 559 349 575 c 0 349 591 358 608 373 617 c 0 382 623 389 624 415 624 c 2 531 624 l 1 531 507 l 1 282 350 m 0 198 350 133 288 133 207 c 0 133 132 191 84 282 84 c 0 373 84 431 132 431 206 c 0 431 288 367 350 282 350 c 0 EndSplineSet MinimumDistance: x23,0 y0,23 y0,24 EndChar StartChar: Emacron Encoding: 274 274 Width: 600 Flags: W HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 689 80<173 435> VStem: 94 100<101 242 343 482> 125 350<728 736> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> Fore 194 243 m 1 194 100 l 1 450 100 l 1 450 152 l 2 450 180 452 188 459 198 c 0 469 212 484 219 500 219 c 0 517 219 533 210 543 195 c 0 548 186 550 177 550 152 c 2 550 0 l 1 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 34 13 50 c 0 13 67 22 83 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 528 583 l 1 528 433 l 2 528 405 526 397 519 387 c 0 509 374 494 366 478 366 c 0 461 366 445 375 435 390 c 0 430 399 428 409 428 433 c 2 428 483 l 1 194 483 l 1 194 342 l 1 279 342 l 1 279 349 l 2 279 376 281 385 288 395 c 0 298 408 313 416 328 416 c 0 355 416 373 398 377 370 c 0 378 361 378 358 378 349 c 2 378 236 l 2 378 210 376 200 369 191 c 0 359 178 344 170 329 170 c 0 312 170 295 179 286 194 c 0 281 203 279 212 279 236 c 2 279 243 l 1 194 243 l 1 178 769 m 2 422 769 l 2 445 769 457 766 464 758 c 0 470 751 475 737 475 729 c 0 475 704 455 689 422 689 c 2 178 689 l 2 153 689 145 691 136 701 c 0 130 709 125 721 125 729 c 0 125 754 144 769 178 769 c 2 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: emacron Encoding: 275 275 Width: 600 Flags: HMW HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 546 80<178 422> Fore 550 172 m 1 142 172 l 1 165 112 218 84 306 84 c 0 352 84 377 88 469 112 c 0 481 115 493 117 502 117 c 0 529 117 550 95 550 67 c 0 550 47 539 33 515 22 c 0 470 2 368 -16 297 -16 c 0 142 -16 33 80 33 216 c 0 33 348 145 450 291 450 c 0 440 450 550 349 550 211 c 2 550 172 l 1 145 260 m 1 439 260 l 1 423 315 365 350 292 350 c 0 219 350 160 314 145 260 c 1 178 626 m 2 422 626 l 2 445 626 457 623 464 615 c 0 470 608 475 594 475 586 c 0 475 561 455 546 422 546 c 2 178 546 l 2 153 546 145 548 136 558 c 0 130 566 125 578 125 586 c 0 125 611 144 626 178 626 c 2 EndSplineSet EndChar StartChar: Ebreve Encoding: 276 276 Width: 600 Flags: W HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 623 68<254.5 309.5> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> Ref: 728 N 1 0 0 1 -18 120 Ref: 69 N 1 0 0 1 0 0 EndChar StartChar: ebreve Encoding: 277 277 Width: 600 Flags: W HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 477 68<264.5 319.5> Ref: 728 N 1 0 0 1 -8 -26 Ref: 101 N 1 0 0 1 0 0 EndChar StartChar: Edotaccent Encoding: 278 278 Width: 600 Flags: W HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 678 120<290 302> VStem: 94 100<101 242 343 482> 240 120<736 740> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> Fore 194 243 m 1 194 100 l 1 450 100 l 1 450 152 l 2 450 180 452 188 459 198 c 0 469 212 484 219 500 219 c 0 517 219 533 210 543 195 c 0 548 186 550 177 550 152 c 2 550 0 l 1 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 34 13 50 c 0 13 67 22 83 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 528 583 l 1 528 433 l 2 528 405 526 397 519 387 c 0 509 374 494 366 478 366 c 0 461 366 445 375 435 390 c 0 430 399 428 409 428 433 c 2 428 483 l 1 194 483 l 1 194 342 l 1 279 342 l 1 279 349 l 2 279 376 281 385 288 395 c 0 298 408 313 416 328 416 c 0 355 416 373 398 377 370 c 0 378 361 378 358 378 349 c 2 378 236 l 2 378 210 376 200 369 191 c 0 359 178 344 170 329 170 c 0 312 170 295 179 286 194 c 0 281 203 279 212 279 236 c 2 279 243 l 1 194 243 l 1 300 798 m 0 334 798 360 771 360 737 c 0 360 705 333 678 300 678 c 0 267 678 240 705 240 738 c 0 240 771 267 798 300 798 c 0 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: edotaccent Encoding: 279 279 Width: 600 Flags: HMW HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> Fore 550 172 m 1 142 172 l 1 165 112 218 84 306 84 c 0 352 84 377 88 469 112 c 0 481 115 493 117 502 117 c 0 529 117 550 95 550 67 c 0 550 47 539 33 515 22 c 0 470 2 368 -16 297 -16 c 0 142 -16 33 80 33 216 c 0 33 348 145 450 291 450 c 0 440 450 550 349 550 211 c 2 550 172 l 1 145 260 m 1 439 260 l 1 423 315 365 350 292 350 c 0 219 350 160 314 145 260 c 1 300 654 m 0 334 654 360 627 360 593 c 0 360 561 333 534 300 534 c 0 267 534 240 561 240 594 c 0 240 627 267 654 300 654 c 0 EndSplineSet EndChar StartChar: Eogonek Encoding: 280 280 Width: 600 Flags: W HStem: -208 76<466 480> 0 100<61 93 195 450> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 373 77<-118 -106> 428 100<415 483> 450 100<100 171> Fore 528 583 m 1 528 433 l 2 528 405 526 397 519 387 c 0 509 374 494 366 478 366 c 0 461 366 445 375 435 390 c 0 430 399 428 409 428 433 c 2 428 483 l 1 194 483 l 1 194 342 l 1 279 342 l 1 279 349 l 2 279 376 281 385 288 395 c 0 298 408 313 416 328 416 c 0 355 416 373 398 377 370 c 0 378 361 378 358 378 349 c 2 378 236 l 2 378 210 376 200 369 191 c 0 359 178 344 170 329 170 c 0 312 170 295 179 286 194 c 0 281 203 279 212 279 236 c 2 279 243 l 1 194 243 l 1 194 100 l 1 450 100 l 1 450 152 l 2 450 180 452 188 459 198 c 0 469 212 484 219 500 219 c 0 517 219 533 210 543 195 c 0 548 186 550 177 550 152 c 2 550 0 l 1 477 -49 450 -80 450 -112 c 0 450 -125 459 -132 474 -132 c 0 487 -132 497 -129 526 -114 c 0 536 -109 541 -108 548 -108 c 0 570 -108 587 -125 587 -146 c 0 587 -164 576 -178 552 -189 c 0 525 -201 495 -208 467 -208 c 0 409 -208 373 -174 373 -119 c 0 373 -69 394 -38 452 0 c 1 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 34 13 50 c 0 13 67 22 83 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 528 583 l 1 EndSplineSet MinimumDistance: x28,-1 EndChar StartChar: eogonek Encoding: 281 281 Width: 600 Flags: HMW HStem: -208 76<376.5 390> -16 100<262 305> 172 88<145 439> 350 100<255.5 328.5> VStem: 283 77<-118.5 -98> Fore 550 172 m 1 142 172 l 1 165 112 218 84 306 84 c 0 352 84 377 88 469 112 c 0 481 115 493 117 502 117 c 0 529 117 550 95 550 67 c 0 550 45 538 32 508 19 c 0 418 -17 360 -68 360 -112 c 0 360 -125 369 -132 384 -132 c 0 396 -132 407 -128 435 -114 c 0 445 -109 450 -108 457 -108 c 0 479 -108 496 -125 496 -146 c 0 496 -164 485 -178 461 -189 c 0 434 -201 404 -208 377 -208 c 0 319 -208 283 -174 283 -119 c 0 283 -77 302 -43 341 -14 c 1 321 -16 311 -16 299 -16 c 0 142 -16 33 79 33 216 c 0 33 348 145 450 291 450 c 0 440 450 550 349 550 211 c 2 550 172 l 1 145 260 m 1 439 260 l 1 423 315 365 350 292 350 c 0 219 350 160 314 145 260 c 1 EndSplineSet EndChar StartChar: Ecaron Encoding: 282 282 Width: 600 Flags: W HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> DStem: 149 738 188 796 301 610 301 699 413 796 452 738 301 699 301 610 Fore 194 243 m 1 194 100 l 1 450 100 l 1 450 152 l 2 450 180 452 188 459 198 c 0 469 212 484 219 500 219 c 0 517 219 533 210 543 195 c 0 548 186 550 177 550 152 c 2 550 0 l 1 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 34 13 50 c 0 13 67 22 83 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 528 583 l 1 528 433 l 2 528 405 526 397 519 387 c 0 509 374 494 366 478 366 c 0 461 366 445 375 435 390 c 0 430 399 428 409 428 433 c 2 428 483 l 1 194 483 l 1 194 342 l 1 279 342 l 1 279 349 l 2 279 376 281 385 288 395 c 0 298 408 313 416 328 416 c 0 355 416 373 398 377 370 c 0 378 361 378 358 378 349 c 2 378 236 l 2 378 210 376 200 369 191 c 0 359 178 344 170 329 170 c 0 312 170 295 179 286 194 c 0 281 203 279 212 279 236 c 2 279 243 l 1 194 243 l 1 301 699 m 1 413 796 l 1 425 805 432 809 442 809 c 0 460 809 476 792 476 774 c 0 476 762 472 755 461 746 c 2 452 738 l 1 301 610 l 1 149 738 l 2 127 757 125 760 125 773 c 0 125 792 141 809 160 809 c 0 169 809 176 805 188 796 c 1 301 699 l 1 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: ecaron Encoding: 283 283 Width: 600 Flags: HMW HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 566 20<301 301> Fore 550 172 m 1 142 172 l 1 165 112 218 84 306 84 c 0 352 84 377 88 469 112 c 0 481 115 493 117 502 117 c 0 529 117 550 95 550 67 c 0 550 47 539 33 515 22 c 0 470 2 368 -16 297 -16 c 0 142 -16 33 80 33 216 c 0 33 348 145 450 291 450 c 0 440 450 550 349 550 211 c 2 550 172 l 1 145 260 m 1 439 260 l 1 423 315 365 350 292 350 c 0 219 350 160 314 145 260 c 1 301 556 m 1 413 652 l 2 425 663 432 666 442 666 c 0 460 666 476 649 476 630 c 0 476 619 472 611 461 602 c 2 452 595 l 1 301 467 l 1 149 595 l 2 127 613 125 617 125 630 c 0 125 649 141 666 160 666 c 0 169 666 175 663 188 652 c 2 301 556 l 1 EndSplineSet EndChar StartChar: Gcircumflex Encoding: 284 284 Width: 600 Flags: W HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344> VStem: 33 100<246 253 253 317> 450 100<111 180> DStem: 313 733 313 822 425 636 464 693 313 733 313 822 425 636 464 693 313 822 313 733 161 693 200 636 313 733 313 822 425 636 464 693 313 822 313 733 161 693 200 636 313 733 313 822 425 636 464 693 313 822 313 733 161 693 200 636 313 733 313 822 425 636 464 693 313 822 313 733 161 693 200 636 313 733 313 822 425 636 464 693 313 822 313 733 161 693 200 636 Ref: 710 N 1 0 0 1 12 126 Ref: 71 N 1 0 0 1 0 0 EndChar StartChar: gcircumflex Encoding: 285 285 Width: 600 Flags: W HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296> VStem: 33 100<182 255.5> 410 100<-20 35 35 35 181 254.5> DStem: 313 587 313 676 425 490 464 547 313 587 313 676 425 490 464 547 313 676 313 587 161 547 200 490 313 587 313 676 425 490 464 547 313 676 313 587 161 547 200 490 313 587 313 676 425 490 464 547 313 676 313 587 161 547 200 490 313 587 313 676 425 490 464 547 313 676 313 587 161 547 200 490 313 587 313 676 425 490 464 547 313 676 313 587 161 547 200 490 Ref: 710 N 1 0 0 1 12 -20 Ref: 103 N 1 0 0 1 0 0 EndChar StartChar: Gbreve Encoding: 286 286 Width: 600 Flags: HMW HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344> 647 68<285.5 340.5> VStem: 33 100<246 253 253 317> 450 100<111 180> Fore 550 180 m 1 550 48 l 1 461 1 409 -14 331 -14 c 0 233 -14 148 15 99 65 c 0 58 108 33 176 33 246 c 2 33 317 l 2 33 393 64 467 117 520 c 0 170 572 235 597 317 597 c 0 371 597 420 586 462 565 c 1 474 589 484 597 503 597 c 0 520 597 536 588 543 573 c 0 549 563 550 555 550 531 c 2 550 453 l 2 550 425 549 418 541 408 c 0 531 395 516 387 500 387 c 0 487 387 473 393 465 402 c 0 459 409 459 409 451 440 c 0 441 475 391 497 318 497 c 0 262 497 217 481 186 450 c 0 153 417 133 367 133 317 c 2 133 253 l 2 133 195 147 156 178 130 c 0 212 101 262 86 325 86 c 0 373 86 412 94 450 111 c 1 450 180 l 1 350 180 l 2 325 180 314 182 305 190 c 1 292 199 284 214 284 230 c 0 284 247 293 264 308 273 c 0 317 279 325 280 350 280 c 2 525 280 l 2 552 280 561 278 571 271 c 0 585 261 592 246 592 230 c 0 592 205 578 188 550 180 c 1 172 831 m 0 192 831 199 822 206 791 c 0 216 745 258 715 313 715 c 0 368 715 410 745 420 791 c 0 427 822 434 831 454 831 c 0 474 831 488 816 488 793 c 0 488 717 405 647 313 647 c 0 221 647 138 717 138 793 c 0 138 816 152 831 172 831 c 0 EndSplineSet EndChar StartChar: gbreve Encoding: 287 287 Width: 600 Flags: HMW HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296> 503 68<272.5 327.5> VStem: 33 100<182 255.5> 410 100<-20 35 35 35 181 254.5> Fore 410 401 m 1 410 437 l 1 526 437 l 2 553 437 562 435 572 428 c 0 584 418 592 403 592 387 c 0 592 370 583 353 568 344 c 0 560 339 549 337 526 337 c 2 510 337 l 1 510 -20 l 2 510 -126 428 -205 319 -205 c 2 207 -205 l 2 182 -205 171 -203 162 -195 c 1 149 -186 141 -171 141 -155 c 0 141 -138 150 -121 165 -112 c 0 174 -106 181 -105 207 -105 c 2 316 -105 l 2 373 -105 410 -72 410 -20 c 2 410 35 l 1 364 1 321 -14 269 -14 c 0 135 -14 33 86 33 218 c 0 33 351 135 451 269 451 c 0 323 451 371 434 410 401 c 1 271 351 m 0 195 351 133 292 133 219 c 0 133 145 195 86 271 86 c 0 347 86 410 145 410 217 c 0 410 292 349 351 271 351 c 0 159 687 m 0 179 687 186 678 193 647 c 0 203 601 245 571 300 571 c 0 355 571 397 601 407 647 c 0 414 678 421 687 441 687 c 0 461 687 475 672 475 649 c 0 475 573 392 503 300 503 c 0 208 503 125 573 125 649 c 0 125 672 139 687 159 687 c 0 EndSplineSet EndChar StartChar: Gdotaccent Encoding: 288 288 Width: 600 Flags: W HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344> 623 120<301.067 316> VStem: 33 100<246 253 253 317> 252 120<681 687> 450 100<111 180> Ref: 729 N 1 0 0 1 12 89 Ref: 71 N 1 0 0 1 0 0 EndChar StartChar: gdotaccent Encoding: 289 289 Width: 600 Flags: W HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296> 477 120<301.067 316> VStem: 33 100<182 255.5> 252 120<535 541> 410 100<-20 35 35 35 181 254.5> Ref: 729 N 1 0 0 1 12 -57 Ref: 103 N 1 0 0 1 0 0 EndChar StartChar: Gcommaaccent Encoding: 290 290 Width: 600 Flags: HMW HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344> VStem: 33 100<246 253 253 317> 450 100<111 180> Fore 550 180 m 1 550 48 l 1 461 1 409 -14 331 -14 c 0 233 -14 148 15 99 65 c 0 58 108 33 176 33 246 c 2 33 317 l 2 33 393 64 467 117 520 c 0 170 572 235 597 317 597 c 0 371 597 420 586 462 565 c 1 474 589 484 597 503 597 c 0 520 597 536 588 543 573 c 0 549 563 550 555 550 531 c 2 550 453 l 2 550 425 549 418 541 408 c 0 531 395 516 387 500 387 c 0 487 387 473 393 465 402 c 0 459 409 459 409 451 440 c 0 441 475 391 497 318 497 c 0 262 497 217 481 186 450 c 0 153 417 133 367 133 317 c 2 133 253 l 2 133 195 147 156 178 130 c 0 212 101 262 86 325 86 c 0 373 86 412 94 450 111 c 1 450 180 l 1 350 180 l 2 325 180 314 182 305 190 c 1 292 199 284 214 284 230 c 0 284 247 293 264 308 273 c 0 317 279 325 280 350 280 c 2 525 280 l 2 552 280 561 278 571 271 c 0 585 261 592 246 592 230 c 0 592 205 578 188 550 180 c 1 338 -126 m 2 256 -252 l 2 243 -272 234 -278 220 -278 c 0 200 -278 183 -262 183 -243 c 0 183 -234 187 -223 195 -211 c 2 277 -85 l 2 290 -65 299 -59 315 -59 c 0 335 -59 351 -76 351 -96 c 0 351 -103 346 -114 338 -126 c 2 EndSplineSet EndChar StartChar: gcommaaccent Encoding: 291 291 Width: 600 Flags: HMW HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296> VStem: 33 100<182 255.5> 410 100<-20 35 35 35 181 254.5> Fore 410 401 m 1 410 437 l 1 526 437 l 2 553 437 562 435 572 428 c 0 584 418 592 403 592 387 c 0 592 370 583 353 568 344 c 0 560 339 549 337 526 337 c 2 510 337 l 1 510 -20 l 2 510 -126 428 -205 319 -205 c 2 207 -205 l 2 182 -205 171 -203 162 -195 c 1 149 -186 141 -171 141 -155 c 0 141 -138 150 -121 165 -112 c 0 174 -106 181 -105 207 -105 c 2 316 -105 l 2 373 -105 410 -72 410 -20 c 2 410 35 l 1 364 1 321 -14 269 -14 c 0 135 -14 33 86 33 218 c 0 33 351 135 451 269 451 c 0 323 451 371 434 410 401 c 1 271 351 m 0 195 351 133 292 133 219 c 0 133 145 195 86 271 86 c 0 347 86 410 145 410 217 c 0 410 292 349 351 271 351 c 0 378 654 m 2 296 528 l 2 283 508 274 502 260 502 c 0 240 502 223 518 223 537 c 0 223 546 227 557 235 569 c 2 317 695 l 2 330 715 339 721 355 721 c 0 375 721 391 704 391 684 c 0 391 677 386 666 378 654 c 2 EndSplineSet EndChar StartChar: Hcircumflex Encoding: 292 292 Width: 600 Flags: W HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5> VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483> DStem: 303 733 303 822 415 636 454 693 303 733 303 822 415 636 454 693 303 822 303 733 151 693 190 636 303 733 303 822 415 636 454 693 303 822 303 733 151 693 190 636 303 733 303 822 415 636 454 693 303 822 303 733 151 693 190 636 303 733 303 822 415 636 454 693 303 822 303 733 151 693 190 636 303 733 303 822 415 636 454 693 303 822 303 733 151 693 190 636 Ref: 710 N 1 0 0 1 2 126 Ref: 72 N 1 0 0 1 0 0 EndChar StartChar: hcircumflex Encoding: 293 293 Width: 600 Flags: W HStem: 0 20 350 100<306 336.5> VStem: 95 100<100 283 389 524 524 524> 409 100<100 271 271 284> DStem: 195 774 195 863 307 677 346 734 195 774 195 863 307 677 346 734 195 863 195 774 43 734 82 677 195 774 195 863 307 677 346 734 195 863 195 774 43 734 82 677 195 774 195 863 307 677 346 734 195 863 195 774 43 734 82 677 195 774 195 863 307 677 346 734 195 863 195 774 43 734 82 677 195 774 195 863 307 677 346 734 195 863 195 774 43 734 82 677 Ref: 710 S 1 0 0 1 -106 167 Ref: 104 N 1 0 0 1 0 0 EndChar StartChar: Hbar Encoding: 294 294 Width: 600 Flags: HW HStem: 0 100<69 96 196 233 375 409 510 537> 241 100<196 409> 340.192 99.6882<87 96> 420 20G<100 175> 483 41.2319<196 201> 483 100<375 409> 604 20G<109 184> VStem: 44 65<524 537> 96 100<99 241 439 483> 410 100<99 241 341 483> Fore 509 340 m 1 509 100 l 1 515 100 l 2 542 100 551 98 560 91 c 0 573 81 581 66 581 50 c 0 581 33 572 16 557 7 c 0 549 2 536 0 515 0 c 2 394 0 l 2 370 0 358 3 349 9 c 0 336 19 328 35 328 50 c 0 328 67 337 84 352 93 c 0 361 99 370 100 394 100 c 2 409 100 l 1 409 241 l 1 195 241 l 1 195 100 l 1 210 100 l 2 236 100 246 98 255 91 c 0 268 81 276 66 276 50 c 0 276 33 267 16 252 7 c 0 244 2 231 0 210 0 c 2 89 0 l 2 65 0 52 3 43 9 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 99 64 100 89 100 c 2 95 100 l 1 95 340.004 l 1 70.4287 340.108 59.7657 342.208 51 350 c 1 38 359 30 375 30 390 c 0 30 407 39 424 54 433 c 0 62.7558 438.837 71.5116 439.942 95 439.998 c 1 95 483 l 1 62 486 43 504 43 533 c 0 43 550 52 567 67 576 c 0 76 582 84 583 109 583 c 2 210 583 l 2 237 583 246 581 255 574 c 0 268 564 276 549 276 533 c 0 276 516 267 499 252 490 c 0 243 485 234 483 210 483 c 2 195 483 l 1 195 341 l 1 409 341 l 1 409 483 l 1 394 483 l 2 368 483 359 485 349 492 c 0 336 502 328 517 328 533 c 0 328 550 337 567 352 576 c 0 361 582 369 583 394 583 c 2 495 583 l 2 522 583 531 581 541 574 c 0 553 564 561 549 561 533 c 0 561 504 542 486 509 483 c 1 509 440 l 1 534 440 543 439 552 433 c 0 567 424 576 407 576 390 c 0 576 375 568 359 555 350 c 1 546 342 535 340 509 340 c 1 EndSplineSet EndChar StartChar: hbar Encoding: 295 295 Width: 600 Flags: W HStem: 0 100<77 94 196 221 387 408 509 525> 350 100<317 338> 524 100<61 94 196 323> VStem: 13 360<564.534 576> 95 100<100 283 390 524> 409 100<100 288> Fore 79 624 m 2 307 624 l 2 331 624 340 622 349 617 c 0 364 608 373 591 373 574 c 0 373 559 365 543 353 533 c 0 343 526 333 524 307 524 c 2 195 524 l 1 195 389 l 1 235 430 280 450 332 450 c 0 438 450 509 384 509 284 c 2 509 100 l 1 515 100 l 2 542 100 551 98 561 91 c 0 573 81 581 66 581 50 c 0 581 33 572 16 557 7 c 0 549 2 536 0 515 0 c 2 403 0 l 2 379 0 366 3 357 9 c 0 344 19 336 34 336 50 c 0 336 67 345 83 360 93 c 0 369 98 378 100 403 100 c 2 409 100 l 1 409 271 l 2 409 305 405 317 388 331 c 0 371 345 352 350 321 350 c 0 274 350 252 338 195 283 c 1 195 100 l 1 201 100 l 2 229 100 237 98 247 91 c 0 260 81 268 66 268 50 c 0 268 33 259 17 244 7 c 0 236 2 222 0 201 0 c 2 89 0 l 2 65 0 53 3 44 9 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 98 64 100 89 100 c 2 95 100 l 1 95 524 l 1 79 524 l 2 53 524 43 526 33 533 c 0 21 543 13 559 13 574 c 0 13 591 22 608 37 617 c 0 46 622 55 624 79 624 c 2 EndSplineSet MinimumDistance: x9,-1 EndChar StartChar: Itilde Encoding: 296 296 Width: 600 Flags: W HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> 623 69<371 378> 687 69<224 229> VStem: 250 100<100 483> Ref: 732 N 1 0 0 1 0 100 Ref: 73 N 1 0 0 1 0 0 EndChar StartChar: itilde Encoding: 297 297 Width: 600 Flags: W HStem: 0 100<128 250 350 472> 337 100<172 250> 477 69<371 378> 541 69<224 229> VStem: 250 100<100 337 337 337> Ref: 732 N 1 0 0 1 0 -46 Ref: 305 N 1 0 0 1 0 0 EndChar StartChar: Imacron Encoding: 298 298 Width: 600 Flags: HMW HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> 689 80<178 422> VStem: 250 100<100 483> Fore 350 483 m 1 350 100 l 1 451 100 l 2 478 100 486 98 496 91 c 0 510 81 517 66 517 50 c 0 517 17 495 0 451 0 c 2 149 0 l 2 125 0 113 3 104 10 c 0 91 19 83 35 83 50 c 0 83 67 92 84 107 93 c 0 116 99 123 100 149 100 c 2 250 100 l 1 250 483 l 1 149 483 l 2 124 483 113 485 104 492 c 0 91 502 83 517 83 533 c 0 83 550 92 567 107 576 c 0 116 582 123 583 149 583 c 2 451 583 l 2 478 583 486 581 496 574 c 0 510 564 517 549 517 533 c 0 517 516 508 499 493 490 c 0 485 485 474 483 451 483 c 2 350 483 l 1 178 769 m 2 422 769 l 2 445 769 457 766 464 758 c 0 470 751 475 737 475 729 c 0 475 704 455 689 422 689 c 2 178 689 l 2 153 689 145 691 136 701 c 0 130 709 125 721 125 729 c 0 125 754 144 769 178 769 c 2 EndSplineSet EndChar StartChar: imacron Encoding: 299 299 Width: 600 Flags: HMW HStem: 0 100<128 250 350 472> 337 100<172 250> 546 80<178 422> VStem: 250 100<100 337 337 337> Fore 350 437 m 1 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 530 81 538 66 538 50 c 0 538 33 529 17 514 7 c 0 507 3 492 0 472 0 c 2 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 34 62 50 c 0 62 67 71 84 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 337 l 1 172 337 l 2 147 337 135 339 126 347 c 1 113 356 105 371 105 387 c 0 105 404 114 421 129 430 c 0 138 436 146 437 172 437 c 2 350 437 l 1 178 626 m 2 422 626 l 2 445 626 457 623 464 615 c 0 470 608 475 594 475 586 c 0 475 561 455 546 422 546 c 2 178 546 l 2 153 546 145 548 136 558 c 0 130 566 125 578 125 586 c 0 125 611 144 626 178 626 c 2 EndSplineSet EndChar StartChar: Ibreve Encoding: 300 300 Width: 600 Flags: W HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> 623 68<272.5 327.5> VStem: 250 100<100 483> Ref: 728 N 1 0 0 1 0 120 Ref: 73 N 1 0 0 1 0 0 EndChar StartChar: ibreve Encoding: 301 301 Width: 600 Flags: W HStem: 0 100<128 250 350 472> 337 100<172 250> 477 68<272.5 327.5> VStem: 250 100<100 337 337 337> Ref: 728 N 1 0 0 1 0 -26 Ref: 305 N 1 0 0 1 0 0 EndChar StartChar: Iogonek Encoding: 302 302 Width: 600 Flags: W HStem: -208 76<396 406> 0 100<131 249 351 381> 483 100<131 249 351 473> VStem: 250 100<100 483> 303 77<-118 -106> Fore 350 483 m 1 350 100 l 1 451 100 l 2 478 100 486 98 496 91 c 0 510 81 517 66 517 50 c 0 517 27 508 16 473 -5 c 0 417 -38 380 -81 380 -112 c 0 380 -125 389 -132 404 -132 c 0 416 -132 427 -128 455 -114 c 0 465 -109 470 -108 477 -108 c 0 499 -108 516 -125 516 -146 c 0 516 -164 505 -178 481 -189 c 0 454 -201 424 -208 397 -208 c 0 339 -208 303 -174 303 -119 c 0 303 -69 323 -38 382 0 c 1 149 0 l 2 125 0 113 3 104 10 c 0 91 19 83 35 83 50 c 0 83 67 92 84 107 93 c 0 116 99 123 100 149 100 c 2 250 100 l 1 250 483 l 1 149 483 l 2 124 483 113 485 104 492 c 0 91 502 83 517 83 533 c 0 83 550 92 567 107 576 c 0 116 582 123 583 149 583 c 2 451 583 l 2 478 583 486 581 496 574 c 0 510 564 517 549 517 533 c 0 517 516 508 499 493 490 c 0 485 485 474 483 451 483 c 2 350 483 l 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: iogonek Encoding: 303 303 Width: 600 Flags: W HStem: -208 76<420 430> 0 100<110 249 350 405> 337 100<158 249> 518 105<219 335> VStem: 218 118<519 622> 250 100<100 337> 327 77<-118 -106> Fore 350 437 m 1 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 530 81 538 66 538 50 c 0 538 29 530 18 503 1 c 0 476 -15 431 -54 419 -71 c 0 410 -86 404 -101 404 -112 c 0 404 -125 413 -132 428 -132 c 0 440 -132 451 -128 479 -114 c 0 489 -109 494 -108 501 -108 c 0 523 -108 540 -125 540 -146 c 0 540 -164 529 -178 505 -189 c 0 478 -201 448 -208 421 -208 c 0 363 -208 327 -174 327 -119 c 0 327 -69 348 -38 406 0 c 1 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 34 62 50 c 0 62 67 71 84 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 337 l 1 172 337 l 2 147 337 135 339 126 347 c 1 113 356 105 371 105 387 c 0 105 404 114 421 129 430 c 0 138 436 146 437 172 437 c 2 350 437 l 1 336 623 m 1 336 518 l 1 218 518 l 1 218 623 l 1 336 623 l 1 EndSplineSet MinimumDistance: x7,-1 x27,1 y1,27 y1,0 EndChar StartChar: Idotaccent Encoding: 304 304 Width: 600 Flags: HMW HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> VStem: 250 100<100 483> Fore 350 483 m 1 350 100 l 1 451 100 l 2 478 100 486 98 496 91 c 0 510 81 517 66 517 50 c 0 517 17 495 0 451 0 c 2 149 0 l 2 125 0 113 3 104 10 c 0 91 19 83 35 83 50 c 0 83 67 92 84 107 93 c 0 116 99 123 100 149 100 c 2 250 100 l 1 250 483 l 1 149 483 l 2 124 483 113 485 104 492 c 0 91 502 83 517 83 533 c 0 83 550 92 567 107 576 c 0 116 582 123 583 149 583 c 2 451 583 l 2 478 583 486 581 496 574 c 0 510 564 517 549 517 533 c 0 517 516 508 499 493 490 c 0 485 485 474 483 451 483 c 2 350 483 l 1 300 798 m 0 334 798 360 771 360 737 c 0 360 705 333 678 300 678 c 0 267 678 240 705 240 738 c 0 240 771 267 798 300 798 c 0 EndSplineSet EndChar StartChar: dotlessi Encoding: 305 305 Width: 600 Flags: HMW HStem: 0 100<128 250 350 472> 337 100<172 250> VStem: 250 100<100 337 337 337> Fore 350 437 m 1 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 530 81 538 66 538 50 c 0 538 33 529 17 514 7 c 0 507 3 492 0 472 0 c 2 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 34 62 50 c 0 62 67 71 84 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 337 l 1 172 337 l 2 147 337 135 339 126 347 c 1 113 356 105 371 105 387 c 0 105 404 114 421 129 430 c 0 138 436 146 437 172 437 c 2 350 437 l 1 EndSplineSet EndChar StartChar: IJ Encoding: 306 306 Width: 600 Flags: W HStem: 0 100<131 249 351 467> 483 100<131 249 351 467> VStem: 250 100<100 483> Fore 350 483 m 1 350 100 l 1 451 100 l 2 478 100 486 98 496 91 c 0 510 81 517 66 517 50 c 0 517 17 495 0 451 0 c 2 149 0 l 2 125 0 113 3 104 10 c 0 91 19 83 35 83 50 c 0 83 67 92 84 107 93 c 0 116 99 123 100 149 100 c 2 250 100 l 1 250 483 l 1 149 483 l 2 124 483 113 485 104 492 c 0 91 502 83 517 83 533 c 0 83 550 92 567 107 576 c 0 116 582 123 583 149 583 c 2 451 583 l 2 478 583 486 581 496 574 c 0 510 564 517 549 517 533 c 0 517 516 508 499 493 490 c 0 485 485 474 483 451 483 c 2 350 483 l 1 EndSplineSet MinimumDistance: x0,-1 Ligature: I J EndChar StartChar: ij Encoding: 307 307 Width: 600 Flags: W HStem: -205 100<165 310> 337 100<165 387> 518 105<312 429> VStem: 311 119<519 622> 388 100<-29 337> Fore 388 337 m 1 186 337 l 2 161 337 150 339 141 347 c 1 128 356 120 372 120 387 c 0 120 404 129 421 144 430 c 0 153 436 160 437 186 437 c 2 488 437 l 1 488 -20 l 2 488 -125 406 -205 297 -205 c 2 183 -205 l 2 158 -205 147 -203 138 -195 c 1 125 -186 117 -170 117 -155 c 0 117 -138 127 -121 141 -112 c 0 150 -106 158 -105 183 -105 c 2 294 -105 l 2 351 -105 388 -72 388 -20 c 2 388 337 l 1 430 623 m 1 430 518 l 1 311 518 l 1 311 623 l 1 430 623 l 1 EndSplineSet MinimumDistance: x6,-1 Ligature: i j EndChar StartChar: Jcircumflex Encoding: 308 308 Width: 600 Flags: W HStem: -14 100<254 289> 483 100<271 390 490 547 490 490> VStem: 54 100<117 213> 390 100<198 483> DStem: 420 733 420 822 532 636 571 693 420 733 420 822 532 636 571 693 420 822 420 733 268 693 307 636 420 733 420 822 532 636 571 693 420 822 420 733 268 693 307 636 420 733 420 822 532 636 571 693 420 822 420 733 268 693 307 636 420 733 420 822 532 636 571 693 420 822 420 733 268 693 307 636 420 733 420 822 532 636 571 693 420 822 420 733 268 693 307 636 Ref: 710 S 1 0 0 1 119 126 Ref: 74 N 1 0 0 1 0 0 EndChar StartChar: jcircumflex Encoding: 309 309 Width: 600 Flags: W HStem: -205 100<161 309> 337 100<164 387> VStem: 388 100<-29 337> DStem: 303 708 303 797 415 611 454 668 303 797 303 708 151 668 190 611 303 708 303 797 415 611 454 668 303 797 303 708 151 668 190 611 303 708 303 797 415 611 454 668 303 797 303 708 151 668 190 611 303 708 303 797 415 611 454 668 303 797 303 708 151 668 190 611 303 708 303 797 415 611 454 668 303 797 303 708 151 668 190 611 303 708 303 797 415 611 454 668 Fore 388 337 m 1 186 337 l 2 161 337 150 339 141 347 c 1 128 356 120 372 120 387 c 0 120 404 129 421 144 430 c 0 153 436 160 437 186 437 c 2 488 437 l 1 488 -20 l 2 488 -125 406 -205 297 -205 c 2 183 -205 l 2 158 -205 147 -203 138 -195 c 1 125 -186 117 -170 117 -155 c 0 117 -138 127 -121 141 -112 c 0 150 -106 158 -105 183 -105 c 2 294 -105 l 2 351 -105 388 -72 388 -20 c 2 388 337 l 1 303 708 m 1 190 611 l 2 179 602 171 598 162 598 c 0 143 598 127 615 127 633 c 0 127 647 129 650 151 668 c 2 303 797 l 1 454 668 l 2 457 666 461 663 463 661 c 0 474 652 478 644 478 633 c 0 478 615 462 598 444 598 c 0 435 598 426 602 415 611 c 2 303 708 l 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: Kcommaaccent Encoding: 310 310 Width: 600 Flags: HMW HStem: 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5> VStem: 94 100<100 208 334 483> Fore 194 208 m 1 194 100 l 1 229 100 l 2 256 100 264 98 274 91 c 0 287 81 295 66 295 50 c 0 295 33 286 16 271 7 c 0 264 3 249 0 229 0 c 2 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 35 13 50 c 0 13 67 22 84 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 229 583 l 2 256 583 265 581 274 574 c 0 287 564 295 549 295 533 c 0 295 516 286 499 271 490 c 0 263 485 252 483 229 483 c 2 194 483 l 1 194 334 l 1 372 487 l 1 351 495 341 509 341 532 c 0 341 560 357 578 386 581 c 0 398 583 399 583 407 583 c 2 507 583 l 2 534 583 543 581 553 574 c 0 565 564 573 549 573 533 c 0 573 500 552 483 511 483 c 1 335 330 l 1 396 298 458 215 504 100 c 1 536 100 l 2 563 100 571 98 581 91 c 0 594 81 602 66 602 50 c 0 602 33 593 16 578 7 c 0 571 3 556 0 536 0 c 2 426 0 l 1 379 143 315 240 254 259 c 1 194 208 l 1 338 -126 m 2 256 -252 l 2 243 -272 234 -278 220 -278 c 0 200 -278 183 -262 183 -243 c 0 183 -234 187 -223 195 -211 c 2 277 -85 l 2 290 -65 299 -59 315 -59 c 0 335 -59 351 -76 351 -96 c 0 351 -103 346 -114 338 -126 c 2 EndSplineSet EndChar StartChar: kcommaaccent Encoding: 311 311 Width: 600 Flags: W HStem: 0 100<81.7263 114 471 525> 337 100<429 473> 524 100<81 114> VStem: 115 100<100 164 288 524> 278 245<378 394> 320 251<42 58> DStem: 233 178 311 241 336 87 471 100 277 -85 338 -126 195 -211 256 -252 294 350 429 337 215 287 311 241 Fore 215 164 m 1 215 0 l 1 99 0 l 2 55 0 33 17 33 50 c 0 33 67 42 84 57 93 c 0 66 99 74 100 99 100 c 2 115 100 l 1 115 524 l 1 99 524 l 2 73 524 63 526 53 533 c 0 41 543 33 558 33 574 c 0 33 591 42 608 57 617 c 0 66 623 75 624 99 624 c 2 215 624 l 1 215 287 l 1 294 350 l 1 282 364 278 373 278 387 c 0 278 404 287 420 302 430 c 0 310 435 321 437 345 437 c 2 457 437 l 2 482 437 493 435 503 428 c 0 516 418 523 403 523 387 c 0 523 370 514 354 499 344 c 0 491 339 480 337 457 337 c 2 429 337 l 1 311 241 l 1 471 100 l 1 504 100 l 2 532 100 540 98 550 91 c 0 563 81 571 66 571 50 c 0 571 33 562 17 547 7 c 0 539 2 526 0 504 0 c 2 386 0 l 2 342 0 320 17 320 50 c 0 320 64 324 74 336 87 c 1 233 178 l 1 215 164 l 1 338 -126 m 2 256 -252 l 2 243 -272 234 -278 220 -278 c 0 200 -278 183 -262 183 -243 c 0 183 -234 187 -223 195 -211 c 2 277 -85 l 2 290 -65 299 -59 315 -59 c 0 335 -59 351 -76 351 -96 c 0 351 -103 346 -114 338 -126 c 2 EndSplineSet MinimumDistance: x29,-1 EndChar StartChar: kgreenlandic Encoding: 312 312 Width: 600 Flags: W HStem: 0 100<100.726 133 448 500> 337 100<100 133 448 484> VStem: 134 100<100 163 288 337> 296 252<48 52> 298 244<384 389> DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227 Fore 234 0 m 1 118 0 l 2 74 0 52 17 52 50 c 0 52 67 62 84 76 93 c 0 86 99 94 100 118 100 c 2 134 100 l 1 134 337 l 1 118 337 l 2 92 337 82 339 72 346 c 0 60 356 52 371 52 387 c 0 52 404 62 421 76 430 c 0 86 436 94 437 118 437 c 2 234 437 l 1 234 287 l 1 314 350 l 1 302 364 298 373 298 387 c 0 298 404 306 420 322 430 c 0 330 435 340 437 364 437 c 2 476 437 l 2 502 437 512 435 522 428 c 0 536 418 542 403 542 387 c 0 542 370 534 354 518 344 c 0 510 339 500 337 476 337 c 2 448 337 l 1 312 227 l 1 448 100 l 1 480 100 l 2 508 100 516 98 526 91 c 0 540 81 548 66 548 50 c 0 548 33 538 17 524 7 c 0 516 2 502 0 480 0 c 2 362 0 l 2 318 0 296 17 296 50 c 0 296 64 300 74 312 87 c 1 234 164 l 1 234 0 l 1 EndSplineSet MinimumDistance: x20,-1 EndChar StartChar: Lacute Encoding: 313 313 Width: 600 Flags: HMW HStem: 0 100<99 156 256 471> 483 100<99 156 256 313 256 256> VStem: 156 100<100 483> 471 100<100 192> Fore 256 483 m 1 256 100 l 1 471 100 l 1 471 192 l 2 471 219 473 228 480 238 c 0 490 252 505 259 521 259 c 0 538 259 554 250 564 235 c 0 570 226 571 217 571 192 c 2 571 0 l 1 99 0 l 2 76 0 62 3 54 10 c 0 41 19 33 34 33 50 c 0 33 67 42 84 57 93 c 0 66 99 73 100 99 100 c 2 156 100 l 1 156 483 l 1 99 483 l 2 74 483 63 485 54 492 c 0 41 502 33 517 33 533 c 0 33 550 42 567 57 576 c 0 66 582 73 583 99 583 c 2 313 583 l 2 340 583 348 581 358 574 c 0 371 564 379 549 379 533 c 0 379 516 370 499 355 490 c 0 347 485 336 483 313 483 c 2 256 483 l 1 372 767 m 1 239 656 l 2 226 645 216 640 207 640 c 0 187 640 170 657 170 676 c 0 170 688 177 700 193 712 c 1 326 824 l 2 340 835 348 839 358 839 c 0 379 839 395 823 395 803 c 0 395 790 389 780 372 767 c 1 EndSplineSet EndChar StartChar: lacute Encoding: 314 314 Width: 600 Flags: HMW HStem: 0 100<128 250 350 472> 524 100<172 250> VStem: 250 100<100 524 524 524> Fore 350 624 m 1 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 530 81 538 66 538 50 c 0 538 33 529 17 514 7 c 0 507 3 492 0 472 0 c 2 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 35 62 50 c 0 62 67 71 84 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 524 l 1 172 524 l 2 147 524 135 526 126 534 c 1 112 543 105 558 105 574 c 0 105 592 114 608 129 617 c 0 138 623 147 624 172 624 c 2 350 624 l 1 452 768 m 1 319 656 l 2 304 644 297 640 287 640 c 0 267 640 250 657 250 676 c 0 250 689 257 700 273 713 c 2 406 824 l 2 422 837 427 840 438 840 c 0 459 840 475 824 475 803 c 0 475 791 469 781 452 768 c 1 EndSplineSet EndChar StartChar: Lcommaaccent Encoding: 315 315 Width: 600 Flags: HMW HStem: 0 100<99 156 256 471> 483 100<99 156 256 313 256 256> VStem: 156 100<100 483> 471 100<100 192> Fore 256 483 m 1 256 100 l 1 471 100 l 1 471 192 l 2 471 219 473 228 480 238 c 0 490 252 505 259 521 259 c 0 538 259 554 250 564 235 c 0 570 226 571 217 571 192 c 2 571 0 l 1 99 0 l 2 76 0 62 3 54 10 c 0 41 19 33 34 33 50 c 0 33 67 42 84 57 93 c 0 66 99 73 100 99 100 c 2 156 100 l 1 156 483 l 1 99 483 l 2 74 483 63 485 54 492 c 0 41 502 33 517 33 533 c 0 33 550 42 567 57 576 c 0 66 582 73 583 99 583 c 2 313 583 l 2 340 583 348 581 358 574 c 0 371 564 379 549 379 533 c 0 379 516 370 499 355 490 c 0 347 485 336 483 313 483 c 2 256 483 l 1 338 -126 m 2 256 -252 l 2 243 -272 234 -278 220 -278 c 0 200 -278 183 -262 183 -243 c 0 183 -234 187 -223 195 -211 c 2 277 -85 l 2 290 -65 299 -59 315 -59 c 0 335 -59 351 -76 351 -96 c 0 351 -103 346 -114 338 -126 c 2 EndSplineSet EndChar StartChar: lcommaaccent Encoding: 316 316 Width: 600 Flags: HMW HStem: 0 100<128 250 350 472> 524 100<172 250> VStem: 250 100<100 524 524 524> Fore 350 624 m 1 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 530 81 538 66 538 50 c 0 538 33 529 17 514 7 c 0 507 3 492 0 472 0 c 2 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 35 62 50 c 0 62 67 71 84 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 524 l 1 172 524 l 2 147 524 135 526 126 534 c 1 112 543 105 558 105 574 c 0 105 592 114 608 129 617 c 0 138 623 147 624 172 624 c 2 350 624 l 1 338 -126 m 2 256 -252 l 2 243 -272 234 -278 220 -278 c 0 200 -278 183 -262 183 -243 c 0 183 -234 187 -223 195 -211 c 2 277 -85 l 2 290 -65 299 -59 315 -59 c 0 335 -59 351 -76 351 -96 c 0 351 -103 346 -114 338 -126 c 2 EndSplineSet EndChar StartChar: Lcaron Encoding: 317 317 Width: 600 Flags: W HStem: 0 100<81 155 257 471> 0 259<513 529> 483 100<81 155 257 321> VStem: 156 100<100 483> 471 100<100 208> DStem: 496 572 557 531 414 446 475 405 Fore 256 483 m 1 256 100 l 1 471 100 l 1 471 192 l 2 471 219 473 228 480 238 c 0 490 252 505 259 521 259 c 0 538 259 554 250 564 235 c 0 570 226 571 217 571 192 c 2 571 0 l 1 99 0 l 2 76 0 62 3 54 10 c 0 41 19 33 34 33 50 c 0 33 67 42 84 57 93 c 0 66 99 73 100 99 100 c 2 156 100 l 1 156 483 l 1 99 483 l 2 74 483 63 485 54 492 c 0 41 502 33 517 33 533 c 0 33 550 42 567 57 576 c 0 66 582 73 583 99 583 c 2 313 583 l 2 340 583 348 581 358 574 c 0 371 564 379 549 379 533 c 0 379 516 370 499 355 490 c 0 347 485 336 483 313 483 c 2 256 483 l 1 557 531 m 2 475 405 l 2 462 385 453 379 439 379 c 0 419 379 402 395 402 414 c 0 402 423 406 434 414 446 c 2 496 572 l 2 509 592 518 598 534 598 c 0 554 598 570 581 570 561 c 0 570 554 565 543 557 531 c 2 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: lcaron Encoding: 318 318 Width: 600 Flags: HMW HStem: 0 100<128 250 350 472> 524 100<172 250> VStem: 250 100<100 524 524 524> Fore 350 624 m 1 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 530 81 538 66 538 50 c 0 538 33 529 17 514 7 c 0 507 3 492 0 472 0 c 2 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 35 62 50 c 0 62 67 71 84 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 524 l 1 172 524 l 2 147 524 135 526 126 534 c 1 112 543 105 558 105 574 c 0 105 592 114 608 129 617 c 0 138 623 147 624 172 624 c 2 350 624 l 1 517 570 m 2 435 445 l 2 423 426 413 419 399 419 c 0 379 419 362 435 362 453 c 0 362 462 366 473 374 486 c 2 456 611 l 2 469 631 478 637 494 637 c 0 514 637 530 621 530 600 c 0 530 594 526 583 517 570 c 2 EndSplineSet EndChar StartChar: Ldot Encoding: 319 319 Width: 600 Flags: W HStem: 0 100<99 156 256 471> 226 132<367 389> 483 100<99 156 256 313 256 256> VStem: 156 100<100 483> 303 150<290 294> 471 100<100 192> Ref: 183 S 1 0 0 1 78 12 Ref: 76 N 1 0 0 1 0 0 EndChar StartChar: ldot Encoding: 320 320 Width: 600 Flags: W HStem: 0 100<128 250 350 472> 214 132<466 488> 524 100<172 250> VStem: 250 100<100 524 524 524> 402 150<278 282> Ref: 183 N 1 0 0 1 177 0 Ref: 108 N 1 0 0 1 0 0 EndChar StartChar: Lslash Encoding: 321 321 Width: 600 Flags: HMW HStem: 0 100<99 156 256 471> 483 100<99 156 256 313 256 256> VStem: 156 100<100 203 203 203 359 483> 471 100<100 191> Fore 256 483 m 1 256 359 l 1 344 411 l 2 363 422 373 426 385 426 c 0 410 426 432 402 432 376 c 0 432 353 424 343 393 325 c 2 256 244 l 1 256 100 l 1 471 100 l 1 471 191 l 2 471 218 473 228 480 237 c 0 490 251 505 258 521 258 c 0 539 258 554 249 564 234 c 0 569 225 571 216 571 191 c 2 571 0 l 1 99 0 l 2 55 0 33 17 33 50 c 0 33 67 42 84 57 93 c 0 66 99 73 100 99 100 c 2 156 100 l 1 156 203 l 1 102 171 l 2 86 161 71 156 60 156 c 0 35 156 12 180 12 207 c 0 12 229 20 240 52 258 c 2 156 318 l 1 156 483 l 1 99 483 l 2 74 483 63 485 53 492 c 0 41 502 33 517 33 533 c 0 33 550 42 567 57 576 c 0 66 582 73 583 99 583 c 2 313 583 l 2 340 583 348 581 358 574 c 0 371 564 379 549 379 533 c 0 379 516 370 499 355 490 c 0 346 485 336 483 313 483 c 2 256 483 l 1 EndSplineSet EndChar StartChar: lslash Encoding: 322 322 Width: 600 Flags: HMW HStem: 0 100<128 250 350 472> 524 100<175 250> VStem: 250 100<100 243 243 243 399 524 524 524> Fore 350 624 m 5 350 399 l 1 385 419 l 2 406 432 413 435 425 435 c 0 451 435 474 411 474 383 c 0 474 361 464 348 435 332 c 2 350 283 l 1 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 531 81 538 66 538 50 c 0 538 33 529 17 514 7 c 0 507 3 492 0 472 0 c 2 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 34 62 50 c 0 62 67 71 83 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 243 l 1 216 223 l 2 199 213 186 209 176 209 c 0 150 209 127 233 127 260 c 0 127 282 136 294 167 312 c 2 250 359 l 1 250 524 l 5 175 524 l 6 149 524 138 526 129 534 c 5 116 543 108 559 108 574 c 4 108 591 117 608 132 617 c 4 141 623 150 624 175 624 c 6 350 624 l 5 EndSplineSet EndChar StartChar: Nacute Encoding: 323 323 Width: 600 Flags: HMW HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5> VStem: 73 100<100 394> 431 100<191 483> Fore 173 394 m 1 173 100 l 1 208 100 l 2 235 100 244 98 254 91 c 0 267 81 274 66 274 50 c 0 274 33 265 17 250 7 c 0 243 3 228 0 208 0 c 2 79 0 l 2 55 0 42 3 33 10 c 0 20 19 12 34 12 50 c 0 12 82 34 100 73 100 c 1 73 483 l 1 58 483 l 2 33 483 22 485 13 492 c 0 0 502 -8 517 -8 533 c 0 -8 550 1 567 16 576 c 0 25 582 32 583 58 583 c 2 173 583 l 1 431 191 l 1 431 483 l 1 396 483 l 2 371 483 360 485 351 492 c 0 338 502 330 517 330 533 c 0 330 550 339 567 354 576 c 0 363 582 370 583 396 583 c 2 526 583 l 2 553 583 561 581 571 574 c 0 584 564 592 549 592 533 c 0 592 501 571 483 531 483 c 1 531 0 l 1 432 0 l 1 173 394 l 1 452 767 m 1 319 656 l 2 306 645 296 640 287 640 c 0 267 640 250 657 250 676 c 0 250 688 257 700 273 712 c 1 406 824 l 2 420 835 428 839 438 839 c 0 459 839 475 823 475 803 c 0 475 790 469 780 452 767 c 1 EndSplineSet EndChar StartChar: nacute Encoding: 324 324 Width: 600 Flags: W HStem: 0 100<71 94 196 215 405 409 510 525.03> 350 100<311 334> 417 20G<101 195> VStem: 95 100<100 282> 410 100<100 288> DStem: 406 680 452 624 273 569 319 512 Fore 195 437 m 1 195 389 l 1 243 435 277 450 332 450 c 0 377 450 418 437 451 413 c 0 491 383 510 341 510 282 c 2 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 16 547 7 c 0 539 2 526 0 505 0 c 2 416 0 l 2 371 0 349 17 349 50 c 0 349 82 371 100 410 100 c 1 410 278 l 2 410 327 382 350 320 350 c 0 274 350 242 333 195 282 c 1 195 100 l 1 201 100 l 2 228 100 236 98 246 91 c 0 259 81 267 66 267 50 c 0 267 33 258 17 243 7 c 0 235 2 222 0 201 0 c 2 89 0 l 2 65 0 53 3 43 10 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 98 64 100 89 100 c 2 95 100 l 1 95 337 l 1 56 338 34 355 34 387 c 0 34 414 51 432 80 435 c 0 91 437 93 437 101 437 c 2 195 437 l 1 452 624 m 1 319 512 l 2 304 500 297 496 287 496 c 0 267 496 250 513 250 532 c 0 250 545 257 556 273 569 c 2 406 680 l 2 422 693 427 696 438 696 c 0 459 696 475 680 475 659 c 0 475 647 469 637 452 624 c 1 EndSplineSet MinimumDistance: x4,-1 EndChar StartChar: Ncommaaccent Encoding: 325 325 Width: 600 Flags: HMW HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5> VStem: 73 100<100 394> 431 100<191 483> Fore 173 394 m 1 173 100 l 1 208 100 l 2 235 100 244 98 254 91 c 0 267 81 274 66 274 50 c 0 274 33 265 17 250 7 c 0 243 3 228 0 208 0 c 2 79 0 l 2 55 0 42 3 33 10 c 0 20 19 12 34 12 50 c 0 12 82 34 100 73 100 c 1 73 483 l 1 58 483 l 2 33 483 22 485 13 492 c 0 0 502 -8 517 -8 533 c 0 -8 550 1 567 16 576 c 0 25 582 32 583 58 583 c 2 173 583 l 1 431 191 l 1 431 483 l 1 396 483 l 2 371 483 360 485 351 492 c 0 338 502 330 517 330 533 c 0 330 550 339 567 354 576 c 0 363 582 370 583 396 583 c 2 526 583 l 2 553 583 561 581 571 574 c 0 584 564 592 549 592 533 c 0 592 501 571 483 531 483 c 1 531 0 l 1 432 0 l 1 173 394 l 1 338 -126 m 2 256 -252 l 2 243 -272 234 -278 220 -278 c 0 200 -278 183 -262 183 -243 c 0 183 -234 187 -223 195 -211 c 2 277 -85 l 2 290 -65 299 -59 315 -59 c 0 335 -59 351 -76 351 -96 c 0 351 -103 346 -114 338 -126 c 2 EndSplineSet EndChar StartChar: ncommaaccent Encoding: 326 326 Width: 600 Flags: W HStem: 0 100<71 94 196 222 407 409 510 525.03> 350 100<311 340> 417 20G<101 195> VStem: 95 100<100 282> 410 100<100 284> DStem: 277 -85 338 -126 195 -211 256 -252 Fore 195 437 m 1 195 389 l 1 243 435 277 450 332 450 c 0 377 450 418 437 451 413 c 0 491 383 510 341 510 282 c 2 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 16 547 7 c 0 539 2 526 0 505 0 c 2 416 0 l 2 371 0 349 17 349 50 c 0 349 82 371 100 410 100 c 1 410 278 l 2 410 327 382 350 320 350 c 0 274 350 242 333 195 282 c 1 195 100 l 1 201 100 l 2 228 100 236 98 246 91 c 0 259 81 267 66 267 50 c 0 267 33 258 17 243 7 c 0 235 2 222 0 201 0 c 2 89 0 l 2 65 0 53 3 43 10 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 98 64 100 89 100 c 2 95 100 l 1 95 337 l 1 56 338 34 355 34 387 c 0 34 414 51 432 80 435 c 0 91 437 93 437 101 437 c 2 195 437 l 1 338 -126 m 2 256 -252 l 2 243 -272 234 -278 220 -278 c 0 200 -278 183 -262 183 -243 c 0 183 -234 187 -223 195 -211 c 2 277 -85 l 2 290 -65 299 -59 315 -59 c 0 335 -59 351 -76 351 -96 c 0 351 -103 346 -114 338 -126 c 2 EndSplineSet MinimumDistance: x4,-1 EndChar StartChar: Ncaron Encoding: 327 327 Width: 600 Flags: HMW HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5> VStem: 73 100<100 394> 431 100<191 483> Fore 173 394 m 1 173 100 l 1 208 100 l 2 235 100 244 98 254 91 c 0 267 81 274 66 274 50 c 0 274 33 265 17 250 7 c 0 243 3 228 0 208 0 c 2 79 0 l 2 55 0 42 3 33 10 c 0 20 19 12 34 12 50 c 0 12 82 34 100 73 100 c 1 73 483 l 1 58 483 l 2 33 483 22 485 13 492 c 0 0 502 -8 517 -8 533 c 0 -8 550 1 567 16 576 c 0 25 582 32 583 58 583 c 2 173 583 l 1 431 191 l 1 431 483 l 1 396 483 l 2 371 483 360 485 351 492 c 0 338 502 330 517 330 533 c 0 330 550 339 567 354 576 c 0 363 582 370 583 396 583 c 2 526 583 l 2 553 583 561 581 571 574 c 0 584 564 592 549 592 533 c 0 592 501 571 483 531 483 c 1 531 0 l 1 432 0 l 1 173 394 l 1 301 699 m 5 413 796 l 5 425 805 432 809 442 809 c 4 460 809 476 792 476 774 c 4 476 762 472 755 461 746 c 6 452 738 l 5 301 610 l 5 149 738 l 6 127 757 125 760 125 773 c 4 125 792 141 809 160 809 c 4 169 809 176 805 188 796 c 5 301 699 l 5 EndSplineSet EndChar StartChar: ncaron Encoding: 328 328 Width: 600 Flags: W HStem: 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20G<101 195> VStem: 95 100<100 282> 410 100<100 288> DStem: 149 605 188 662 301 477 301 566 413 662 452 605 301 566 301 477 Fore 195 437 m 1 195 389 l 1 243 435 277 450 332 450 c 0 377 450 418 437 451 413 c 0 491 383 510 341 510 282 c 2 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 16 547 7 c 0 539 2 526 0 505 0 c 2 416 0 l 2 371 0 349 17 349 50 c 0 349 82 371 100 410 100 c 1 410 278 l 2 410 327 382 350 320 350 c 0 274 350 242 333 195 282 c 1 195 100 l 1 201 100 l 2 228 100 236 98 246 91 c 0 259 81 267 66 267 50 c 0 267 33 258 17 243 7 c 0 235 2 222 0 201 0 c 2 89 0 l 2 65 0 53 3 43 10 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 98 64 100 89 100 c 2 95 100 l 1 95 337 l 1 56 338 34 355 34 387 c 0 34 414 51 432 80 435 c 0 91 437 93 437 101 437 c 2 195 437 l 1 301 566 m 1 413 662 l 2 425 673 432 676 442 676 c 0 460 676 476 659 476 640 c 0 476 629 472 621 461 612 c 2 452 605 l 1 301 477 l 1 149 605 l 2 127 623 125 627 125 640 c 0 125 659 141 676 160 676 c 0 169 676 175 673 188 662 c 2 301 566 l 1 EndSplineSet MinimumDistance: x4,-1 EndChar StartChar: napostrophe Encoding: 329 329 Width: 600 Flags: W HStem: 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20G<101 195> VStem: 95 100<100 282> 410 100<100 288> Fore 195 437 m 1 195 389 l 1 243 435 277 450 332 450 c 0 377 450 418 437 451 413 c 0 491 383 510 341 510 282 c 2 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 16 547 7 c 0 539 2 526 0 505 0 c 2 416 0 l 2 371 0 349 17 349 50 c 0 349 82 371 100 410 100 c 1 410 278 l 2 410 327 382 350 320 350 c 0 274 350 242 333 195 282 c 1 195 100 l 5 201 100 l 6 228 100 236 98 246 91 c 4 259 81 267 66 267 50 c 4 267 33 258 17 243 7 c 4 235 2 222 0 201 0 c 6 89 0 l 6 65 0 53 3 43 10 c 4 31 19 23 35 23 50 c 4 23 67 32 84 47 93 c 4 56 98 64 100 89 100 c 6 95 100 l 5 95 337 l 1 56 338 34 355 34 387 c 0 34 414 51 432 80 435 c 0 91 437 93 437 101 437 c 2 195 437 l 1 EndSplineSet MinimumDistance: x4,-1 EndChar StartChar: Eng Encoding: 330 330 Width: 600 Flags: W HStem: -203 100<344 360> 0 100<59 72 174 216> 483 100<40 72 376 430 531.031 546.331> VStem: 12 262<40.1997 53> 73 100<100 393> 330 262<523.191 535> 431 100<-27 2 192 483> DStem: 173 394 173 583 431 2 431 191 Fore 431 2 m 1 173 394 l 1 173 100 l 1 208 100 l 2 235 100 244 98 254 91 c 0 267 81 274 66 274 50 c 0 274 33 265 17 250 7 c 0 243 3 228 0 208 0 c 2 79 0 l 2 55 0 42 3 33 10 c 0 20 19 12 34 12 50 c 0 12 82 34 100 73 100 c 1 73 483 l 1 58 483 l 2 33 483 22 485 13 492 c 0 0 502 -8 517 -8 533 c 0 -8 550 1 567 16 576 c 0 25 582 32 583 58 583 c 2 173 583 l 1 431 191 l 1 431 483 l 1 396 483 l 2 371 483 360 485 351 492 c 0 338 502 330 517 330 533 c 0 330 550 339 567 354 576 c 0 363 582 370 583 396 583 c 2 526 583 l 2 553 583 561 581 571 574 c 0 584 564 592 549 592 533 c 0 592 501 571 483 531 483 c 1 531 -14 l 2 531 -121 455 -203 356 -203 c 0 279 -203 234 -179 234 -139 c 0 234 -112 257 -89 282 -89 c 0 288 -89 291 -90 305 -95 c 0 321 -100 337 -103 353 -103 c 0 399 -103 431 -67 431 -14 c 2 431 2 l 1 EndSplineSet MinimumDistance: x29,-1 EndChar StartChar: eng Encoding: 331 331 Width: 600 Flags: W HStem: -203 100<319 343> 0 100<71 94 196 215> 350 100<311 337> 417 20G<101 195> VStem: 95 100<100 282> 410 100<-27 293> Fore 510 282 m 2 510 -14 l 2 510 -121 434 -203 335 -203 c 0 258 -203 213 -179 213 -139 c 0 213 -112 236 -89 261 -89 c 0 267 -89 270 -90 284 -95 c 0 300 -100 316 -103 332 -103 c 0 378 -103 410 -67 410 -14 c 2 410 278 l 2 410 327 382 350 320 350 c 0 274 350 242 333 195 282 c 1 195 100 l 1 201 100 l 2 228 100 236 98 246 91 c 0 259 81 267 66 267 50 c 0 267 33 258 17 243 7 c 0 235 2 222 0 201 0 c 2 89 0 l 2 65 0 53 3 43 10 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 98 64 100 89 100 c 2 95 100 l 1 95 337 l 1 56 338 34 355 34 387 c 0 34 414 51 432 80 435 c 0 91 437 93 437 101 437 c 2 195 437 l 1 195 389 l 1 243 435 277 450 332 450 c 0 377 450 418 437 451 413 c 0 491 383 510 341 510 282 c 2 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: Omacron Encoding: 332 332 Width: 600 Flags: HMW HStem: -14 100<251 348.5> 497 100<251 333.5> 689 80<178 422> VStem: 21 100<235.5 348> 479 100<234 335> Fore 300 597 m 0 367 597 432 570 485 520 c 0 548 460 579 383 579 287 c 0 579 123 452 -14 300 -14 c 0 146 -14 21 123 21 292 c 0 21 460 146 597 300 597 c 0 300 497 m 0 202 497 121 404 121 292 c 0 121 179 202 86 300 86 c 0 397 86 479 179 479 289 c 0 479 404 399 497 300 497 c 0 178 769 m 2 422 769 l 2 445 769 457 766 464 758 c 0 470 751 475 737 475 729 c 0 475 704 455 689 422 689 c 2 178 689 l 2 153 689 145 691 136 701 c 0 130 709 125 721 125 729 c 0 125 754 144 769 178 769 c 2 EndSplineSet EndChar StartChar: omacron Encoding: 333 333 Width: 600 Flags: HMW HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 546 80<178 422> VStem: 42 100<179.5 255> 458 100<179.5 254> Fore 303 450 m 0 444 450 558 346 558 217 c 0 558 87 444 -16 300 -16 c 0 156 -16 42 87 42 217 c 0 42 349 155 450 303 450 c 0 302 350 m 0 211 350 142 293 142 217 c 0 142 142 211 84 300 84 c 0 389 84 458 142 458 217 c 0 458 291 389 350 302 350 c 0 178 626 m 2 422 626 l 2 445 626 457 623 464 615 c 0 470 608 475 594 475 586 c 0 475 561 455 546 422 546 c 2 178 546 l 2 153 546 145 548 136 558 c 0 130 566 125 578 125 586 c 0 125 611 144 626 178 626 c 2 EndSplineSet EndChar StartChar: Obreve Encoding: 334 334 Width: 600 Flags: W HStem: -14 100<251 348.5> 497 100<251 333.5> 623 68<272.5 327.5> VStem: 21 100<235.5 348> 479 100<234 335> Ref: 728 N 1 0 0 1 0 120 Ref: 79 N 1 0 0 1 0 0 EndChar StartChar: obreve Encoding: 335 335 Width: 600 Flags: W HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 477 68<272.5 327.5> VStem: 42 100<179.5 255> 458 100<179.5 254> Ref: 728 N 1 0 0 1 0 -26 Ref: 111 N 1 0 0 1 0 0 EndChar StartChar: Ohungarumlaut Encoding: 336 336 Width: 600 Flags: HMW HStem: -14 100<251 348.5> 497 100<251 333.5> VStem: 21 100<235.5 348> 479 100<234 335> Fore 300 597 m 0 367 597 432 570 485 520 c 0 548 460 579 383 579 287 c 0 579 123 452 -14 300 -14 c 0 146 -14 21 123 21 292 c 0 21 460 146 597 300 597 c 0 300 497 m 0 202 497 121 404 121 292 c 0 121 179 202 86 300 86 c 0 397 86 479 179 479 289 c 0 479 404 399 497 300 497 c 0 331 765 m 2 229 656 l 2 219 645 209 639 200 639 c 0 182 639 165 657 165 676 c 0 165 688 166 690 186 712 c 2 288 822 l 2 300 834 306 838 317 838 c 0 335 838 351 821 351 801 c 0 351 791 345 780 331 765 c 2 495 765 m 2 393 656 l 2 383 645 373 639 364 639 c 0 346 639 329 657 329 676 c 0 329 688 330 689 350 712 c 1 452 822 l 2 464 834 470 838 481 838 c 0 499 838 515 821 515 801 c 0 515 791 510 781 495 765 c 2 EndSplineSet EndChar StartChar: ohungarumlaut Encoding: 337 337 Width: 600 Flags: HMW HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> VStem: 42 100<179.5 255> 458 100<179.5 254> Fore 303 450 m 0 444 450 558 346 558 217 c 0 558 87 444 -16 300 -16 c 0 156 -16 42 87 42 217 c 0 42 349 155 450 303 450 c 0 302 350 m 0 211 350 142 293 142 217 c 0 142 142 211 84 300 84 c 0 389 84 458 142 458 217 c 0 458 291 389 350 302 350 c 0 331 622 m 2 229 512 l 2 220 502 209 496 200 496 c 0 182 496 165 514 165 533 c 0 165 544 166 546 186 569 c 1 288 679 l 2 299 690 306 694 317 694 c 0 335 694 351 677 351 658 c 0 351 647 346 638 331 622 c 2 495 622 m 2 393 512 l 2 383 502 373 496 364 496 c 0 346 496 329 514 329 533 c 0 329 544 330 546 350 569 c 1 452 679 l 2 462 690 470 694 481 694 c 0 499 694 515 677 515 658 c 0 515 647 510 638 495 622 c 2 EndSplineSet EndChar StartChar: OE Encoding: 338 338 Width: 600 Flags: W HStem: 0 100<252 265 367 513> 0 188<556 572> 243 99<367 385> 483 100<252 265 367 493> VStem: -20 100<272 304> 266 100<101 242 343 482> 266 218<243 342> 493 100<396 482> 513 99<101 144> Fore 366 243 m 1 366 100 l 1 513 100 l 1 513 122 l 2 513 149 515 158 522 168 c 0 532 180 547 188 563 188 c 0 580 188 597 179 605 164 c 0 611 155 612 148 612 122 c 2 612 0 l 1 259 0 l 2 97 0 -20 122 -20 292 c 0 -20 461 96 583 259 583 c 2 593 583 l 1 593 418 l 2 593 391 591 382 584 372 c 0 574 360 559 352 543 352 c 0 526 352 510 361 500 376 c 0 495 384 493 395 493 418 c 2 493 483 l 1 366 483 l 1 366 342 l 1 385 342 l 1 387 378 404 397 434 397 c 0 452 397 468 388 477 373 c 0 483 364 484 357 484 331 c 2 484 253 l 2 484 226 482 218 475 208 c 0 465 195 450 187 434 187 c 0 405 187 386 208 385 243 c 1 366 243 l 1 266 100 m 1 266 483 l 1 215 482 185 474 155 452 c 0 110 419 80 354 80 291 c 0 80 224 115 155 166 124 c 0 194 107 220 100 266 100 c 1 EndSplineSet EndChar StartChar: oe Encoding: 339 339 Width: 600 Flags: HMW HStem: -16 100<149.5 195 422.5 458> 171 86<363 504> 349 101<149.5 195.5 422.5 444.5> VStem: -11 100<180 252.5> Fore 612 171 m 1 360 171 l 1 373 113 401 84 444 84 c 0 472 84 485 88 540 112 c 0 548 115 556 117 564 117 c 0 591 117 613 94 613 65 c 0 613 41 603 28 576 14 c 0 543 -2 478 -16 438 -16 c 0 381 -16 338 8 303 58 c 1 268 10 221 -16 171 -16 c 0 70 -16 -11 86 -11 212 c 0 -11 345 69 450 170 450 c 0 222 450 265 424 303 370 c 1 338 423 383 450 436 450 c 0 480 450 522 429 557 389 c 0 593 349 612 288 612 216 c 2 612 171 l 1 172 349 m 0 127 349 89 289 89 216 c 0 89 144 127 84 172 84 c 0 218 84 256 143 256 215 c 0 256 290 219 349 172 349 c 0 363 257 m 1 504 257 l 1 499 283 494 297 488 310 c 0 476 334 455 349 434 349 c 0 411 349 390 333 378 306 c 0 373 294 369 282 363 257 c 1 EndSplineSet EndChar StartChar: Racute Encoding: 340 340 Width: 600 Flags: HMW HStem: 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306> VStem: 94 100<100 222 322 483> 416 106<383 429.5> Fore 194 222 m 1 194 100 l 1 229 100 l 2 256 100 265 98 275 91 c 0 287 81 295 66 295 50 c 0 295 33 286 16 271 7 c 0 264 3 249 0 229 0 c 2 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 35 13 50 c 0 13 67 22 84 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 302 583 l 2 432 583 522 510 522 405 c 0 522 342 487 294 414 254 c 1 461 213 498 167 540 100 c 1 553 100 l 2 578 100 589 98 599 91 c 0 611 82 619 66 619 50 c 0 619 33 610 16 595 7 c 0 588 3 573 0 553 0 c 2 474 0 l 1 424 97 332 207 290 222 c 1 194 222 l 1 194 322 m 1 270 322 l 2 354 322 416 358 416 408 c 0 416 451 370 483 306 483 c 2 194 483 l 1 194 322 l 1 452 767 m 1 319 656 l 2 306 645 296 640 287 640 c 0 267 640 250 657 250 676 c 0 250 688 257 700 273 712 c 1 406 824 l 2 420 835 428 839 438 839 c 0 459 839 475 823 475 803 c 0 475 790 469 780 452 767 c 1 EndSplineSet EndChar StartChar: racute Encoding: 341 341 Width: 600 Flags: W HStem: 0 100<101 177 279 422> 337 100<134 177> 349 100<437 452> VStem: 178 100<100 247> DStem: 406 680 452 624 273 569 319 512 Fore 278 437 m 1 278 372 l 1 358 432 396 449 445 449 c 0 480 449 512 437 543 411 c 0 564 394 571 382 571 364 c 0 571 336 548 313 521 313 c 0 507 313 497 318 482 331 c 0 467 344 457 349 443 349 c 0 411 349 373 325 278 247 c 1 278 100 l 1 417 100 l 2 445 100 453 98 463 91 c 0 476 81 484 66 484 50 c 0 484 33 475 16 460 7 c 0 453 3 438 0 417 0 c 2 120 0 l 2 97 0 83 3 74 10 c 0 62 19 54 35 54 50 c 0 54 67 63 84 78 93 c 0 87 99 94 100 120 100 c 2 178 100 l 1 178 337 l 1 143 337 l 2 118 337 107 339 98 347 c 1 85 356 77 371 77 387 c 0 77 404 86 420 101 429 c 1 107 434 126 437 143 437 c 2 278 437 l 1 452 624 m 1 319 512 l 2 304 500 297 496 287 496 c 0 267 496 250 513 250 532 c 0 250 545 257 556 273 569 c 2 406 680 l 2 422 693 427 696 438 696 c 0 459 696 475 680 475 659 c 0 475 647 469 637 452 624 c 1 EndSplineSet MinimumDistance: x27,-1 EndChar StartChar: Rcommaaccent Encoding: 342 342 Width: 600 Flags: HMW HStem: 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306> VStem: 94 100<100 222 322 483> 416 106<383 429.5> Fore 194 222 m 1 194 100 l 1 229 100 l 2 256 100 265 98 275 91 c 0 287 81 295 66 295 50 c 0 295 33 286 16 271 7 c 0 264 3 249 0 229 0 c 2 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 35 13 50 c 0 13 67 22 84 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 302 583 l 2 432 583 522 510 522 405 c 0 522 342 487 294 414 254 c 1 461 213 498 167 540 100 c 1 553 100 l 2 578 100 589 98 599 91 c 0 611 82 619 66 619 50 c 0 619 33 610 16 595 7 c 0 588 3 573 0 553 0 c 2 474 0 l 1 424 97 332 207 290 222 c 1 194 222 l 1 194 322 m 1 270 322 l 2 354 322 416 358 416 408 c 0 416 451 370 483 306 483 c 2 194 483 l 1 194 322 l 1 338 -126 m 2 256 -252 l 2 243 -272 234 -278 220 -278 c 0 200 -278 183 -262 183 -243 c 0 183 -234 187 -223 195 -211 c 2 277 -85 l 2 290 -65 299 -59 315 -59 c 0 335 -59 351 -76 351 -96 c 0 351 -103 346 -114 338 -126 c 2 EndSplineSet EndChar StartChar: rcommaaccent Encoding: 343 343 Width: 600 Flags: W HStem: 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447> VStem: 178 100<100 247> DStem: 277 -85 338 -126 195 -211 256 -252 Fore 278 437 m 1 278 372 l 1 358 432 396 449 445 449 c 0 480 449 512 437 543 411 c 0 564 394 571 382 571 364 c 0 571 336 548 313 521 313 c 0 507 313 497 318 482 331 c 0 467 344 457 349 443 349 c 0 411 349 373 325 278 247 c 1 278 100 l 1 417 100 l 2 445 100 453 98 463 91 c 0 476 81 484 66 484 50 c 0 484 33 475 16 460 7 c 0 453 3 438 0 417 0 c 2 120 0 l 2 97 0 83 3 74 10 c 0 62 19 54 35 54 50 c 0 54 67 63 84 78 93 c 0 87 99 94 100 120 100 c 2 178 100 l 1 178 337 l 1 143 337 l 2 118 337 107 339 98 347 c 1 85 356 77 371 77 387 c 0 77 404 86 420 101 429 c 1 107 434 126 437 143 437 c 2 278 437 l 1 338 -126 m 2 256 -252 l 2 243 -272 234 -278 220 -278 c 0 200 -278 183 -262 183 -243 c 0 183 -234 187 -223 195 -211 c 2 277 -85 l 2 290 -65 299 -59 315 -59 c 0 335 -59 351 -76 351 -96 c 0 351 -103 346 -114 338 -126 c 2 EndSplineSet MinimumDistance: x27,-1 EndChar StartChar: Rcaron Encoding: 344 344 Width: 600 Flags: HMW HStem: 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306> VStem: 94 100<100 222 322 483> 416 106<383 429.5> Fore 194 222 m 1 194 100 l 1 229 100 l 2 256 100 265 98 275 91 c 0 287 81 295 66 295 50 c 0 295 33 286 16 271 7 c 0 264 3 249 0 229 0 c 2 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 35 13 50 c 0 13 67 22 84 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 302 583 l 2 432 583 522 510 522 405 c 0 522 342 487 294 414 254 c 1 461 213 498 167 540 100 c 1 553 100 l 2 578 100 589 98 599 91 c 0 611 82 619 66 619 50 c 0 619 33 610 16 595 7 c 0 588 3 573 0 553 0 c 2 474 0 l 1 424 97 332 207 290 222 c 1 194 222 l 1 194 322 m 1 270 322 l 2 354 322 416 358 416 408 c 0 416 451 370 483 306 483 c 2 194 483 l 1 194 322 l 1 301 729 m 1 413 826 l 1 425 835 432 839 442 839 c 0 460 839 476 822 476 804 c 0 476 792 472 785 461 776 c 2 452 768 l 1 301 640 l 1 149 768 l 2 127 787 125 790 125 803 c 0 125 822 141 839 160 839 c 0 169 839 176 835 188 826 c 1 301 729 l 1 EndSplineSet EndChar StartChar: rcaron Encoding: 345 345 Width: 600 Flags: W HStem: 0 100<101 177 279 435> 337 100<134 177> 349 100<432 447> VStem: 178 100<100 247> DStem: 169 625 208 682 321 497 321 586 433 682 472 625 321 586 321 497 Fore 278 437 m 1 278 372 l 1 358 432 396 449 445 449 c 0 480 449 512 437 543 411 c 0 564 394 571 382 571 364 c 0 571 336 548 313 521 313 c 0 507 313 497 318 482 331 c 0 467 344 457 349 443 349 c 0 411 349 373 325 278 247 c 1 278 100 l 1 417 100 l 2 445 100 453 98 463 91 c 0 476 81 484 66 484 50 c 0 484 33 475 16 460 7 c 0 453 3 438 0 417 0 c 2 120 0 l 2 97 0 83 3 74 10 c 0 62 19 54 35 54 50 c 0 54 67 63 84 78 93 c 0 87 99 94 100 120 100 c 2 178 100 l 1 178 337 l 1 143 337 l 2 118 337 107 339 98 347 c 1 85 356 77 371 77 387 c 0 77 404 86 420 101 429 c 1 107 434 126 437 143 437 c 2 278 437 l 1 321 586 m 1 433 682 l 2 445 693 452 696 462 696 c 0 480 696 496 679 496 660 c 0 496 649 492 641 481 632 c 2 472 625 l 1 321 497 l 1 169 625 l 2 147 643 145 647 145 660 c 0 145 679 161 696 180 696 c 0 189 696 195 693 208 682 c 2 321 586 l 1 EndSplineSet MinimumDistance: x32,-1 EndChar StartChar: Sacute Encoding: 346 346 Width: 600 Flags: HMW HStem: -14 100<282 339> 497 100<267.5 324.5> VStem: 82 104<410.5 442.5> 434 104<140.5 172.5> Fore 517 531 m 2 517 443 l 2 517 415 515 407 508 397 c 0 498 384 483 376 468 376 c 0 454 376 440 382 432 390 c 0 425 398 425 398 418 430 c 0 409 470 361 497 299 497 c 0 236 497 186 464 186 421 c 0 186 400 201 377 223 366 c 0 243 356 248 354 323 340 c 0 410 324 448 310 479 285 c 0 519 253 538 212 538 160 c 0 538 56 446 -14 309 -14 c 0 255 -14 202 -1 153 25 c 1 136 5 129 1 113 1 c 0 78 1 62 22 62 67 c 2 62 133 l 2 62 158 64 169 71 179 c 0 81 192 96 199 112 199 c 0 126 199 139 194 148 185 c 0 155 178 155 178 163 151 c 0 173 115 236 86 302 86 c 0 376 86 434 119 434 162 c 0 434 183 420 203 398 215 c 0 377 226 361 230 293 242 c 0 228 253 196 263 164 281 c 0 113 310 82 363 82 420 c 0 82 521 175 597 299 597 c 0 350 597 394 586 429 564 c 1 439 589 448 597 468 597 c 0 485 597 502 588 510 574 c 0 516 565 517 557 517 531 c 2 452 767 m 1 319 656 l 2 306 645 296 640 287 640 c 0 267 640 250 657 250 676 c 0 250 688 257 700 273 712 c 1 406 824 l 2 420 835 428 839 438 839 c 0 459 839 475 823 475 803 c 0 475 790 469 780 452 767 c 1 EndSplineSet EndChar StartChar: sacute Encoding: 347 347 Width: 600 Flags: HMW HStem: -16 100<275.5 332> 350 100<275.5 322> VStem: 92 110<310.5 324> 417 110<115.5 133.5> Fore 409 312 m 2 404 321 l 1 376 341 343 350 301 350 c 0 250 350 202 333 202 315 c 0 202 306 212 297 228 291 c 0 242 286 248 285 312 276 c 0 387 266 427 255 457 238 c 0 501 214 527 171 527 125 c 0 527 43 433 -16 304 -16 c 0 247 -16 196 -6 156 13 c 1 145 4 137 1 124 1 c 0 106 1 90 9 80 25 c 0 75 34 73 43 73 67 c 2 73 100 l 2 73 127 75 136 83 146 c 0 93 160 107 167 124 167 c 0 150 167 166 153 175 123 c 1 204 97 246 84 300 84 c 0 364 84 417 104 417 127 c 0 417 140 404 154 383 162 c 0 366 169 345 173 291 179 c 0 151 194 92 234 92 313 c 0 92 393 178 450 298 450 c 0 347 450 388 442 427 424 c 1 435 443 444 450 459 450 c 0 491 450 506 430 506 384 c 2 506 347 l 2 506 321 504 311 497 301 c 0 487 289 471 281 456 281 c 0 435 281 421 290 409 312 c 2 452 624 m 1 319 512 l 2 304 500 297 496 287 496 c 0 267 496 250 513 250 532 c 0 250 545 257 556 273 569 c 2 406 680 l 2 422 693 427 696 438 696 c 0 459 696 475 680 475 659 c 0 475 647 469 637 452 624 c 1 EndSplineSet EndChar StartChar: Scircumflex Encoding: 348 348 Width: 600 Flags: W HStem: -14 100<282 339> 497 100<267.5 324.5> VStem: 82 104<410.5 442.5> 434 104<140.5 172.5> DStem: 301 733 301 822 413 636 452 693 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 Ref: 710 N 1 0 0 1 -0 126 Ref: 83 N 1 0 0 1 0 0 EndChar StartChar: scircumflex Encoding: 349 349 Width: 600 Flags: W HStem: -16 100<275.5 332> 350 100<275.5 322> VStem: 92 110<310.5 324> 417 110<115.5 133.5> DStem: 301 587 301 676 413 490 452 547 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 Ref: 710 N 1 0 0 1 -0 -20 Ref: 115 N 1 0 0 1 0 0 EndChar StartChar: Scedilla Encoding: 350 350 Width: 600 Flags: HMW HStem: -229 70<292.5 312.5> -100 186<281.5 300.5> 497 100<266.5 323.5> VStem: 82 103<410.5 442.5> 262 70<-42 -13> 337 70<-142 -123.5> 434 104<140.5 172.5> Fore 332 -13 m 1 332 -42 l 1 383 -52 407 -81 407 -132 c 0 407 -189 362 -229 299 -229 c 0 273 -229 232 -218 208 -205 c 0 189 -194 180 -182 180 -166 c 0 180 -147 196 -131 215 -131 c 0 223 -131 225 -132 244 -142 c 0 262 -152 284 -159 301 -159 c 0 324 -159 337 -150 337 -134 c 0 337 -113 317 -100 284 -100 c 0 279 -100 274 -100 262 -102 c 1 262 -11 l 1 230 -7 185 8 153 25 c 1 136 5 129 1 112 1 c 0 78 1 62 22 62 67 c 2 62 133 l 2 62 158 64 169 71 179 c 0 81 192 96 199 112 199 c 0 126 199 139 194 148 185 c 0 155 178 155 178 162 151 c 0 173 115 235 86 301 86 c 0 376 86 434 119 434 162 c 0 434 183 420 203 398 215 c 0 376 226 361 230 293 242 c 0 227 253 196 263 164 281 c 0 113 310 82 363 82 420 c 0 82 521 175 597 298 597 c 0 349 597 394 586 429 564 c 1 439 589 448 597 468 597 c 0 485 597 502 588 510 574 c 0 516 565 517 557 517 531 c 2 517 443 l 2 517 415 515 407 508 397 c 0 498 384 483 376 467 376 c 0 454 376 440 382 431 390 c 1 424 398 424 398 417 430 c 0 409 470 361 497 298 497 c 0 235 497 185 464 185 421 c 0 185 400 200 377 222 366 c 0 242 356 248 354 322 340 c 0 409 324 447 310 479 285 c 0 519 253 538 212 538 160 c 0 538 62 460 -4 332 -13 c 1 EndSplineSet EndChar StartChar: scedilla Encoding: 351 351 Width: 600 Flags: HMW HStem: -229 70<292.5 312.5> -100 184<281.5 300.5> 350 100<275.5 322> VStem: 92 110<310.5 324> 262 70<-42 -15> 337 70<-142 -123.5> 417 110<115.5 133.5> Fore 332 -15 m 1 332 -42 l 1 383 -52 407 -81 407 -132 c 0 407 -189 362 -229 300 -229 c 0 273 -229 232 -218 208 -205 c 0 189 -194 180 -182 180 -166 c 0 180 -147 196 -131 215 -131 c 0 223 -131 225 -132 244 -142 c 0 262 -152 284 -159 301 -159 c 0 324 -159 337 -150 337 -134 c 0 337 -113 317 -100 284 -100 c 0 279 -100 274 -100 262 -102 c 1 262 -14 l 1 219 -10 184 -1 156 13 c 1 144 4 137 1 124 1 c 0 106 1 90 9 80 25 c 0 75 34 73 43 73 67 c 2 73 100 l 2 73 127 75 136 83 146 c 0 93 160 107 167 123 167 c 0 150 167 166 153 174 123 c 1 204 97 246 84 300 84 c 0 364 84 417 104 417 127 c 0 417 140 404 154 383 162 c 0 366 169 345 173 290 179 c 0 151 194 92 234 92 313 c 0 92 393 178 450 298 450 c 0 346 450 387 442 426 424 c 1 435 443 443 450 459 450 c 0 491 450 506 430 506 384 c 2 506 347 l 2 506 321 504 311 497 301 c 0 487 289 471 281 456 281 c 0 432 281 422 289 404 321 c 1 376 341 343 350 301 350 c 0 250 350 202 333 202 315 c 0 202 306 212 297 228 291 c 0 242 286 248 285 312 276 c 0 388 265 427 255 457 238 c 0 501 213 527 171 527 125 c 0 527 50 451 -5 332 -15 c 1 EndSplineSet EndChar StartChar: Scaron Encoding: 352 352 Width: 600 Flags: W HStem: -14 100<286 324> 1 198<110 115> 497 100<286 318> VStem: 82 104<418 431> 434 104<153 164> DStem: 162 748 201 806 314 620 314 709 426 806 465 748 314 709 314 620 Fore 517 531 m 2 517 443 l 2 517 415 515 407 508 397 c 0 498 384 483 376 468 376 c 0 454 376 440 382 432 390 c 0 425 398 425 398 418 430 c 0 409 470 361 497 299 497 c 0 236 497 186 464 186 421 c 0 186 400 201 377 223 366 c 0 243 356 248 354 323 340 c 0 410 324 448 310 479 285 c 0 519 253 538 212 538 160 c 0 538 56 446 -14 309 -14 c 0 255 -14 202 -1 153 25 c 1 136 5 129 1 113 1 c 0 78 1 62 22 62 67 c 2 62 133 l 2 62 158 64 169 71 179 c 0 81 192 96 199 112 199 c 0 126 199 139 194 148 185 c 0 155 178 155 178 163 151 c 0 173 115 236 86 302 86 c 0 376 86 434 119 434 162 c 0 434 183 420 203 398 215 c 0 377 226 361 230 293 242 c 0 228 253 196 263 164 281 c 0 113 310 82 363 82 420 c 0 82 521 175 597 299 597 c 0 350 597 394 586 429 564 c 1 439 589 448 597 468 597 c 0 485 597 502 588 510 574 c 0 516 565 517 557 517 531 c 2 314 709 m 1 426 806 l 1 438 815 445 819 455 819 c 0 473 819 489 802 489 784 c 0 489 772 485 765 474 756 c 2 465 748 l 1 314 620 l 1 162 748 l 2 140 767 138 770 138 783 c 0 138 802 154 819 173 819 c 0 182 819 189 815 201 806 c 1 314 709 l 1 EndSplineSet MinimumDistance: x11,-1 EndChar StartChar: scaron Encoding: 353 353 Width: 600 Flags: W HStem: -16 100<281 314> 1 166<121 135> 350 100<281 314> VStem: 92 110<311 317> 417 110<122 129> DStem: 158 605 197 662 310 477 310 566 422 662 461 605 310 566 310 477 Fore 409 312 m 2 404 321 l 1 376 341 343 350 301 350 c 0 250 350 202 333 202 315 c 0 202 306 212 297 228 291 c 0 242 286 248 285 312 276 c 0 387 266 427 255 457 238 c 0 501 214 527 171 527 125 c 0 527 43 433 -16 304 -16 c 0 247 -16 196 -6 156 13 c 1 145 4 137 1 124 1 c 0 106 1 90 9 80 25 c 0 75 34 73 43 73 67 c 2 73 100 l 2 73 127 75 136 83 146 c 0 93 160 107 167 124 167 c 0 150 167 166 153 175 123 c 1 204 97 246 84 300 84 c 0 364 84 417 104 417 127 c 0 417 140 404 154 383 162 c 0 366 169 345 173 291 179 c 0 151 194 92 234 92 313 c 0 92 393 178 450 298 450 c 0 347 450 388 442 427 424 c 1 435 443 444 450 459 450 c 0 491 450 506 430 506 384 c 2 506 347 l 2 506 321 504 311 497 301 c 0 487 289 471 281 456 281 c 0 435 281 421 290 409 312 c 2 310 566 m 1 422 662 l 2 434 673 441 676 451 676 c 0 469 676 485 659 485 640 c 0 485 629 481 621 470 612 c 2 461 605 l 1 310 477 l 1 158 605 l 2 136 623 134 627 134 640 c 0 134 659 150 676 169 676 c 0 178 676 184 673 197 662 c 2 310 566 l 1 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: uni0162 Encoding: 354 354 Width: 600 Flags: W HStem: -229 70<298.5 318.5> 0 100<184 249 287.5 307 349 415> 483 100<142 249 142 142 349 458 349 349> VStem: 42 100<390 483> 249 100<100 483> 268 70<-41 0> 343 70<-142 -123.5> 458 100<390 483 483 483> Ref: 184 N 1 0 0 1 6 0 Ref: 84 N 1 0 0 1 0 0 EndChar StartChar: uni0163 Encoding: 355 355 Width: 600 Flags: W HStem: -245 70<270.5 290.5> -16 100<259.5 279 281 325> 337 100<79 114 214 395> 571 20<156 172.5> VStem: 114 100<130.5 141 141 337 437 525> 240 70<-57 -16> 315 70<-158 -139.5> Ref: 184 N 1 0 0 1 -22 -16 Ref: 116 N 1 0 0 1 0 0 EndChar StartChar: Tcaron Encoding: 356 356 Width: 600 Flags: HMW HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349> VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483> Fore 349 483 m 1 349 100 l 1 415 100 l 2 442 100 450 98 460 91 c 0 473 81 481 66 481 50 c 0 481 33 472 16 457 7 c 0 450 3 435 0 415 0 c 2 184 0 l 2 161 0 148 3 139 10 c 0 126 19 118 35 118 50 c 0 118 67 127 84 142 93 c 0 151 99 158 100 184 100 c 2 249 100 l 1 249 483 l 1 142 483 l 1 142 390 l 2 142 363 140 355 133 345 c 0 123 332 108 324 92 324 c 0 75 324 58 333 49 348 c 0 44 357 42 367 42 390 c 2 42 583 l 1 558 583 l 1 558 390 l 2 558 362 557 355 549 345 c 0 539 332 524 324 508 324 c 0 491 324 474 334 465 348 c 0 460 357 458 367 458 390 c 2 458 483 l 1 349 483 l 1 301 729 m 1 413 826 l 1 425 835 432 839 442 839 c 0 460 839 476 822 476 804 c 0 476 792 472 785 461 776 c 2 452 768 l 1 301 640 l 1 149 768 l 2 127 787 125 790 125 803 c 0 125 822 141 839 160 839 c 0 169 839 176 835 188 826 c 1 301 729 l 1 EndSplineSet EndChar StartChar: tcaron Encoding: 357 357 Width: 600 Flags: W HStem: -16 100<285 317> 337 100<61 114 215 365> VStem: 114 100<122 337 438 544> DStem: 456 611 517 570 374 486 435 445 Fore 214 437 m 1 366 437 l 1 363 444 362 447 362 453 c 0 362 462 366 473 374 486 c 2 456 611 l 1 470 631 478 637 494 637 c 0 514 637 530 621 530 600 c 0 530 594 525 583 517 570 c 2 435 445 l 2 432 441 431 439 427 434 c 1 449 426 461 409 461 387 c 0 461 370 452 353 437 344 c 0 429 339 417 337 395 337 c 2 214 337 l 1 214 141 l 2 214 120 216 111 222 104 c 0 234 91 262 84 300 84 c 0 353 84 401 95 446 118 c 0 463 127 470 129 481 129 c 0 508 129 529 106 529 78 c 0 529 54 517 41 479 24 c 0 430 1 351 -16 299 -16 c 0 185 -16 114 37 114 122 c 2 114 337 l 1 79 337 l 2 54 337 43 339 33 347 c 0 21 356 13 372 13 387 c 0 13 404 22 421 37 430 c 0 46 436 53 437 79 437 c 2 114 437 l 1 114 525 l 2 114 551 116 561 124 571 c 0 133 583 148 591 164 591 c 0 181 591 198 582 207 567 c 0 213 558 214 551 214 525 c 2 214 437 l 1 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: Tbar Encoding: 358 358 Width: 600 Flags: W HStem: 0 100<170 248 350 426> 483 100<142 248 350 458> VStem: 42 100<367.667 482> 249 100<100 482> 458 100<367.667 482> Fore 349 483 m 1 349 100 l 1 415 100 l 2 442 100 450 98 460 91 c 0 473 81 481 66 481 50 c 0 481 33 472 16 457 7 c 0 450 3 435 0 415 0 c 2 184 0 l 2 161 0 148 3 139 10 c 0 126 19 118 35 118 50 c 0 118 67 127 84 142 93 c 0 151 99 158 100 184 100 c 2 249 100 l 1 249 483 l 1 142 483 l 1 142 390 l 2 142 363 140 355 133 345 c 0 123 332 108 324 92 324 c 0 75 324 58 333 49 348 c 0 44 357 42 367 42 390 c 2 42 583 l 1 558 583 l 1 558 390 l 2 558 362 557 355 549 345 c 0 539 332 524 324 508 324 c 0 491 324 474 334 465 348 c 0 460 357 458 367 458 390 c 2 458 483 l 1 349 483 l 1 EndSplineSet MinimumDistance: x21,-1 EndChar StartChar: tbar Encoding: 359 359 Width: 600 Flags: W HStem: -16 100<285 317> 337 100<61 114 215 413> VStem: 114 100<122 337 437 544> Fore 214 337 m 1 214 141 l 2 214 120 216 111 222 104 c 0 234 91 262 84 300 84 c 0 353 84 401 95 446 118 c 0 463 127 470 129 481 129 c 0 508 129 529 106 529 78 c 0 529 54 517 41 479 24 c 0 430 1 351 -16 299 -16 c 0 185 -16 114 37 114 122 c 2 114 337 l 1 79 337 l 2 54 337 43 339 33 347 c 0 21 356 13 372 13 387 c 0 13 404 22 421 37 430 c 0 46 436 53 437 79 437 c 2 114 437 l 1 114 525 l 2 114 551 116 561 124 571 c 0 133 583 148 591 164 591 c 0 181 591 198 582 207 567 c 0 213 558 214 551 214 525 c 2 214 437 l 1 395 437 l 2 422 437 430 435 441 428 c 1 453 418 461 403 461 387 c 0 461 370 452 353 437 344 c 0 429 339 417 337 395 337 c 2 214 337 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: Utilde Encoding: 360 360 Width: 600 Flags: W HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 623 69<371 378> 687 69<224 229> VStem: 71 100<205 483> 429 100<196 205 205 483> Ref: 732 N 1 0 0 1 0 100 Ref: 85 N 1 0 0 1 0 0 EndChar StartChar: utilde Encoding: 361 361 Width: 600 Flags: W HStem: -13 100<253 300.5> 337 100<375 410> 477 69<363 370> 541 69<216 221> VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337> Ref: 732 N 1 0 0 1 -8 -46 Ref: 117 N 1 0 0 1 0 0 EndChar StartChar: Umacron Encoding: 362 362 Width: 600 Flags: HMW HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 689 80<178 422> VStem: 71 100<205 483> 429 100<196 205 205 483> Fore 529 483 m 1 529 205 l 2 529 134 502 78 445 35 c 0 402 2 355 -14 300 -14 c 0 246 -14 198 2 155 35 c 0 99 78 71 134 71 205 c 2 71 483 l 1 31 484 10 501 10 533 c 0 10 550 19 567 34 576 c 0 43 582 51 583 76 583 c 2 206 583 l 2 234 583 241 582 252 574 c 0 264 564 272 549 272 533 c 0 272 516 263 499 248 490 c 0 240 485 229 483 206 483 c 2 171 483 l 1 171 196 l 2 171 135 229 86 300 86 c 0 371 86 429 135 429 196 c 2 429 483 l 1 394 483 l 2 368 483 358 485 349 492 c 0 336 502 328 517 328 533 c 0 328 550 337 567 352 576 c 0 361 582 368 583 394 583 c 2 524 583 l 2 551 583 559 581 570 574 c 0 583 564 590 549 590 533 c 0 590 501 569 483 529 483 c 1 178 769 m 2 422 769 l 2 445 769 457 766 464 758 c 0 470 751 475 737 475 729 c 0 475 704 455 689 422 689 c 2 178 689 l 2 153 689 145 691 136 701 c 0 130 709 125 721 125 729 c 0 125 754 144 769 178 769 c 2 EndSplineSet EndChar StartChar: umacron Encoding: 363 363 Width: 600 Flags: HMW HStem: -13 100<253 300.5> 337 100<375 410> 546 80<178 422> VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337> Fore 510 437 m 1 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 17 547 7 c 0 539 2 526 0 505 0 c 2 410 0 l 1 410 48 l 1 360 1 328 -13 273 -13 c 0 228 -13 186 0 154 24 c 0 114 54 95 97 95 156 c 2 95 338 l 1 79 338 l 1 68 337 l 2 38 335 13 358 13 387 c 0 13 404 22 421 37 430 c 0 46 436 54 437 79 437 c 2 195 437 l 1 195 159 l 2 195 110 223 87 283 87 c 0 333 87 358 100 410 155 c 1 410 337 l 1 375 337 l 2 350 337 339 339 330 347 c 1 317 356 309 372 309 387 c 0 309 404 318 421 333 430 c 0 342 436 351 437 375 437 c 2 510 437 l 1 178 626 m 2 422 626 l 2 445 626 457 623 464 615 c 0 470 608 475 594 475 586 c 0 475 561 455 546 422 546 c 2 178 546 l 2 153 546 145 548 136 558 c 0 130 566 125 578 125 586 c 0 125 611 144 626 178 626 c 2 EndSplineSet EndChar StartChar: Ubreve Encoding: 364 364 Width: 600 Flags: W HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 623 68<272.5 327.5> VStem: 71 100<205 483> 429 100<196 205 205 483> Ref: 728 N 1 0 0 1 0 120 Ref: 85 N 1 0 0 1 0 0 EndChar StartChar: ubreve Encoding: 365 365 Width: 600 Flags: W HStem: -13 100<253 300.5> 337 100<375 410> 477 68<264.5 319.5> VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337> Ref: 728 N 1 0 0 1 -8 -26 Ref: 117 N 1 0 0 1 0 0 EndChar StartChar: Uring Encoding: 366 366 Width: 600 Flags: HMW HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 630 54<281 318.5> 818 53<281 319> VStem: 10 53 71 100<205 483> 203 53 429 100<196 205 205 483> Fore 529 483 m 1 529 205 l 2 529 134 502 78 445 35 c 0 402 2 355 -14 300 -14 c 0 246 -14 198 2 155 35 c 0 99 78 71 134 71 205 c 2 71 483 l 1 31 484 10 501 10 533 c 0 10 550 19 567 34 576 c 0 43 582 51 583 76 583 c 2 206 583 l 2 234 583 241 582 252 574 c 0 264 564 272 549 272 533 c 0 272 516 263 499 248 490 c 0 240 485 229 483 206 483 c 2 171 483 l 1 171 196 l 2 171 135 229 86 300 86 c 0 371 86 429 135 429 196 c 2 429 483 l 1 394 483 l 2 368 483 358 485 349 492 c 0 336 502 328 517 328 533 c 0 328 550 337 567 352 576 c 0 361 582 368 583 394 583 c 2 524 583 l 2 551 583 559 581 570 574 c 0 583 564 590 549 590 533 c 0 590 501 569 483 529 483 c 1 300 871 m 0 368 871 423 816 423 749 c 0 423 685 366 630 300 630 c 0 233 630 177 685 177 751 c 0 177 816 233 871 300 871 c 0 300 818 m 0 262 818 230 787 230 751 c 0 230 715 262 684 300 684 c 0 337 684 370 715 370 750 c 0 370 787 338 818 300 818 c 0 EndSplineSet EndChar StartChar: uring Encoding: 367 367 Width: 600 Flags: HMW HStem: -13 100<253 300.5> 337 100<375 410> 486 54<281 318.5> 674 53<281 319> VStem: 13 53 95 100<156 159 159 338 338 338> 206 53 410 100<155 337 337 337> Fore 510 437 m 1 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 17 547 7 c 0 539 2 526 0 505 0 c 2 410 0 l 1 410 48 l 1 360 1 328 -13 273 -13 c 0 228 -13 186 0 154 24 c 0 114 54 95 97 95 156 c 2 95 338 l 1 79 338 l 1 68 337 l 2 38 335 13 358 13 387 c 0 13 404 22 421 37 430 c 0 46 436 54 437 79 437 c 2 195 437 l 1 195 159 l 2 195 110 223 87 283 87 c 0 333 87 358 100 410 155 c 1 410 337 l 1 375 337 l 2 350 337 339 339 330 347 c 1 317 356 309 372 309 387 c 0 309 404 318 421 333 430 c 0 342 436 351 437 375 437 c 2 510 437 l 1 300 727 m 0 368 727 423 672 423 605 c 0 423 541 366 486 300 486 c 0 233 486 177 541 177 607 c 0 177 672 233 727 300 727 c 0 300 674 m 0 262 674 230 643 230 607 c 0 230 571 262 540 300 540 c 0 337 540 370 571 370 606 c 0 370 643 338 674 300 674 c 0 EndSplineSet EndChar StartChar: Uhungarumlaut Encoding: 368 368 Width: 600 Flags: HMW HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> VStem: 71 100<205 483> 429 100<196 205 205 483> Fore 529 483 m 1 529 205 l 2 529 134 502 78 445 35 c 0 402 2 355 -14 300 -14 c 0 246 -14 198 2 155 35 c 0 99 78 71 134 71 205 c 2 71 483 l 1 31 484 10 501 10 533 c 0 10 550 19 567 34 576 c 0 43 582 51 583 76 583 c 2 206 583 l 2 234 583 241 582 252 574 c 0 264 564 272 549 272 533 c 0 272 516 263 499 248 490 c 0 240 485 229 483 206 483 c 2 171 483 l 1 171 196 l 2 171 135 229 86 300 86 c 0 371 86 429 135 429 196 c 2 429 483 l 1 394 483 l 2 368 483 358 485 349 492 c 0 336 502 328 517 328 533 c 0 328 550 337 567 352 576 c 0 361 582 368 583 394 583 c 2 524 583 l 2 551 583 559 581 570 574 c 0 583 564 590 549 590 533 c 0 590 501 569 483 529 483 c 1 331 765 m 2 229 656 l 2 219 645 209 639 200 639 c 0 182 639 165 657 165 676 c 0 165 688 166 690 186 712 c 2 288 822 l 2 300 834 306 838 317 838 c 0 335 838 351 821 351 801 c 0 351 791 345 780 331 765 c 2 495 765 m 2 393 656 l 2 383 645 373 639 364 639 c 0 346 639 329 657 329 676 c 0 329 688 330 689 350 712 c 1 452 822 l 2 464 834 470 838 481 838 c 0 499 838 515 821 515 801 c 0 515 791 510 781 495 765 c 2 EndSplineSet EndChar StartChar: uhungarumlaut Encoding: 369 369 Width: 600 Flags: HMW HStem: -13 100<253 300.5> 337 100<375 410> VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337> Fore 510 437 m 1 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 17 547 7 c 0 539 2 526 0 505 0 c 2 410 0 l 1 410 48 l 1 360 1 328 -13 273 -13 c 0 228 -13 186 0 154 24 c 0 114 54 95 97 95 156 c 2 95 338 l 1 79 338 l 1 68 337 l 2 38 335 13 358 13 387 c 0 13 404 22 421 37 430 c 0 46 436 54 437 79 437 c 2 195 437 l 1 195 159 l 2 195 110 223 87 283 87 c 0 333 87 358 100 410 155 c 1 410 337 l 1 375 337 l 2 350 337 339 339 330 347 c 1 317 356 309 372 309 387 c 0 309 404 318 421 333 430 c 0 342 436 351 437 375 437 c 2 510 437 l 1 311 622 m 2 209 512 l 2 200 502 189 496 180 496 c 0 162 496 145 514 145 533 c 0 145 544 146 546 166 569 c 1 268 679 l 2 279 690 286 694 297 694 c 0 315 694 331 677 331 658 c 0 331 647 326 638 311 622 c 2 475 622 m 2 373 512 l 2 363 502 353 496 344 496 c 0 326 496 309 514 309 533 c 0 309 544 310 546 330 569 c 1 432 679 l 2 442 690 450 694 461 694 c 0 479 694 495 677 495 658 c 0 495 647 490 638 475 622 c 2 EndSplineSet EndChar StartChar: Uogonek Encoding: 370 370 Width: 600 Flags: HMW HStem: -208 76<371 385> -15 100<280 304> 483 100<171 171 171 206 394 429 529 537.5> VStem: 71 100<205 483> 277 78<-119 -97.5> 429 100<196 205 205 483> Fore 529 483 m 1 529 205 l 2 529 132 508 89 441 26 c 0 384 -27 355 -74 355 -113 c 0 355 -125 363 -132 379 -132 c 0 391 -132 405 -127 430 -114 c 0 439 -109 444 -108 452 -108 c 0 473 -108 490 -125 490 -146 c 0 490 -158 483 -171 473 -178 c 0 450 -195 406 -208 371 -208 c 0 313 -208 277 -174 277 -119 c 0 277 -76 291 -51 338 -11 c 1 321 -14 308 -15 300 -15 c 0 260 -15 212 -2 179 18 c 0 108 61 71 125 71 205 c 2 71 483 l 1 31 484 10 501 10 533 c 0 10 550 19 567 34 576 c 0 43 582 51 583 76 583 c 2 206 583 l 2 234 583 241 582 252 574 c 0 264 564 272 549 272 533 c 0 272 516 263 499 248 490 c 0 240 485 229 483 206 483 c 2 171 483 l 1 171 196 l 2 171 135 229 85 300 85 c 0 371 85 429 135 429 196 c 2 429 483 l 1 394 483 l 2 368 483 358 485 349 492 c 0 336 502 328 517 328 533 c 0 328 550 337 567 352 576 c 0 361 582 368 583 394 583 c 2 524 583 l 2 551 583 559 581 570 574 c 0 583 564 590 549 590 533 c 0 590 501 569 483 529 483 c 1 EndSplineSet EndChar StartChar: uogonek Encoding: 371 371 Width: 600 Flags: W HStem: -208 76<450 461> -13 100<269 285> 338 99<79 95 356 409> VStem: 95 100<144 337> 357 77<-118 -106> 410 100<155 337> Fore 510 437 m 1 510 100 l 1 549 100 571 82 571 50 c 0 571 28 563 17 534 1 c 0 480 -29 434 -81 434 -112 c 0 434 -125 443 -132 458 -132 c 0 470 -132 481 -128 509 -114 c 0 519 -109 524 -108 531 -108 c 0 553 -108 570 -125 570 -146 c 0 570 -164 559 -178 535 -189 c 0 508 -201 478 -208 451 -208 c 0 393 -208 357 -174 357 -119 c 0 357 -69 378 -38 436 0 c 1 410 0 l 1 410 48 l 1 360 1 328 -13 273 -13 c 0 228 -13 186 0 154 24 c 0 114 54 95 97 95 156 c 2 95 338 l 1 79 338 l 1 68 337 l 2 38 335 13 358 13 387 c 0 13 404 22 421 37 430 c 0 46 436 54 437 79 437 c 2 195 437 l 1 195 159 l 2 195 110 223 87 283 87 c 0 333 87 358 100 410 155 c 1 410 337 l 1 375 337 l 2 350 337 339 339 330 347 c 1 317 356 309 372 309 387 c 0 309 404 318 421 333 430 c 0 342 436 351 437 375 437 c 2 510 437 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: Wcircumflex Encoding: 372 372 Width: 600 Flags: W HStem: 0 20 483 100<139 139 139 187 413 466> DStem: 301 733 301 822 413 636 452 693 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 Ref: 710 N 1 0 0 1 -0 126 Ref: 87 N 1 0 0 1 0 0 EndChar StartChar: wcircumflex Encoding: 373 373 Width: 600 Flags: W HStem: 0 20 417 20<66 158 158 171 441 534 534 547> DStem: 301 587 301 676 413 490 452 547 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 Ref: 710 N 1 0 0 1 -0 -20 Ref: 119 N 1 0 0 1 0 0 EndChar StartChar: Ycircumflex Encoding: 374 374 Width: 600 Flags: W HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> VStem: 250 100<100 245> DStem: 301 733 301 822 413 636 452 693 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 Ref: 710 N 1 0 0 1 -0 126 Ref: 89 N 1 0 0 1 0 0 EndChar StartChar: ycircumflex Encoding: 375 375 Width: 600 Flags: W HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> DStem: 301 587 301 676 413 490 452 547 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 Ref: 710 N 1 0 0 1 -0 -20 Ref: 121 N 1 0 0 1 0 0 EndChar StartChar: Ydieresis Encoding: 376 376 Width: 600 Flags: HMW HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> VStem: 21 120 250 100<100 245> Fore 350 245 m 1 350 100 l 1 415 100 l 2 443 100 451 98 461 91 c 0 474 81 482 66 482 50 c 0 482 33 473 16 458 7 c 0 451 3 436 0 415 0 c 2 185 0 l 2 161 0 148 3 139 10 c 0 126 19 118 34 118 50 c 0 118 67 127 84 142 93 c 0 151 99 158 100 185 100 c 2 250 100 l 1 250 245 l 1 85 483 l 1 44 483 21 501 21 533 c 0 21 560 38 578 67 581 c 0 79 583 80 583 88 583 c 2 177 583 l 2 204 583 213 581 223 574 c 0 235 564 243 549 243 533 c 0 243 510 231 495 205 484 c 1 300 348 l 1 394 484 l 1 367 494 354 510 354 533 c 0 354 550 363 567 378 576 c 0 387 582 396 583 421 583 c 2 513 583 l 2 540 583 549 581 558 574 c 0 572 564 579 549 579 533 c 0 579 502 551 479 516 483 c 2 514 483 l 1 350 245 l 1 196 798 m 0 230 798 256 771 256 737 c 0 256 705 229 678 196 678 c 0 163 678 136 705 136 738 c 0 136 771 163 798 196 798 c 0 404 798 m 0 438 798 464 771 464 737 c 0 464 705 437 678 404 678 c 0 371 678 344 705 344 738 c 0 344 771 371 798 404 798 c 0 EndSplineSet EndChar StartChar: Zacute Encoding: 377 377 Width: 600 Flags: HMW HStem: 0 100<201 427> 483 100<196 375 196 196> VStem: 96 100<413 483> 427 100<100 172> Fore 201 100 m 1 427 100 l 1 427 172 l 2 427 197 429 208 436 218 c 0 446 230 461 238 477 238 c 0 494 238 511 229 520 214 c 0 526 205 527 198 527 172 c 2 527 0 l 1 73 0 l 1 73 100 l 1 375 483 l 1 196 483 l 1 196 413 l 2 196 386 194 377 187 368 c 0 177 355 162 347 146 347 c 0 129 347 113 356 103 371 c 0 98 380 96 388 96 413 c 2 96 583 l 1 504 583 l 1 504 486 l 1 201 100 l 1 452 767 m 1 319 656 l 2 306 645 296 640 287 640 c 0 267 640 250 657 250 676 c 0 250 688 257 700 273 712 c 1 406 824 l 2 420 835 428 839 438 839 c 0 459 839 475 823 475 803 c 0 475 790 469 780 452 767 c 1 EndSplineSet EndChar StartChar: zacute Encoding: 378 378 Width: 600 Flags: HMW HStem: 0 100<244 419> 337 100<197 346 197 197> Fore 244 100 m 1 419 100 l 1 421 135 439 154 469 154 c 0 486 154 503 145 512 130 c 0 518 121 519 114 519 88 c 2 519 0 l 1 85 0 l 1 85 83 l 1 346 337 l 1 197 337 l 1 197 328 l 2 197 301 195 293 188 283 c 0 178 270 163 262 147 262 c 0 130 262 113 271 104 286 c 0 99 295 97 305 97 328 c 2 97 437 l 1 506 437 l 1 506 356 l 1 244 100 l 1 452 624 m 1 319 512 l 2 304 500 297 496 287 496 c 0 267 496 250 513 250 532 c 0 250 545 257 556 273 569 c 2 406 680 l 2 422 693 427 696 438 696 c 0 459 696 475 680 475 659 c 0 475 647 469 637 452 624 c 1 EndSplineSet EndChar StartChar: Zdotaccent Encoding: 379 379 Width: 600 Flags: HMW HStem: 0 100<201 427> 483 100<196 375 196 196> VStem: 96 100<413 483> 427 100<100 172> Fore 201 100 m 1 427 100 l 1 427 172 l 2 427 197 429 208 436 218 c 0 446 230 461 238 477 238 c 0 494 238 511 229 520 214 c 0 526 205 527 198 527 172 c 2 527 0 l 1 73 0 l 1 73 100 l 1 375 483 l 1 196 483 l 1 196 413 l 2 196 386 194 377 187 368 c 0 177 355 162 347 146 347 c 0 129 347 113 356 103 371 c 0 98 380 96 388 96 413 c 2 96 583 l 1 504 583 l 1 504 486 l 1 201 100 l 1 300 798 m 0 334 798 360 771 360 737 c 0 360 705 333 678 300 678 c 0 267 678 240 705 240 738 c 0 240 771 267 798 300 798 c 0 EndSplineSet EndChar StartChar: zdotaccent Encoding: 380 380 Width: 600 Flags: HMW HStem: 0 100<244 419> 337 100<197 346 197 197> Fore 244 100 m 1 419 100 l 1 421 135 439 154 469 154 c 0 486 154 503 145 512 130 c 0 518 121 519 114 519 88 c 2 519 0 l 1 85 0 l 1 85 83 l 1 346 337 l 1 197 337 l 1 197 328 l 2 197 301 195 293 188 283 c 0 178 270 163 262 147 262 c 0 130 262 113 271 104 286 c 0 99 295 97 305 97 328 c 2 97 437 l 1 506 437 l 1 506 356 l 1 244 100 l 1 300 654 m 0 334 654 360 627 360 593 c 0 360 561 333 534 300 534 c 0 267 534 240 561 240 594 c 0 240 627 267 654 300 654 c 0 EndSplineSet EndChar StartChar: Zcaron Encoding: 381 381 Width: 600 Flags: HMW HStem: 0 100<201 427> 483 100<196 375 196 196> VStem: 96 100<413 483> 427 100<100 172> Fore 201 100 m 1 427 100 l 1 427 172 l 2 427 197 429 208 436 218 c 0 446 230 461 238 477 238 c 0 494 238 511 229 520 214 c 0 526 205 527 198 527 172 c 2 527 0 l 1 73 0 l 1 73 100 l 1 375 483 l 1 196 483 l 1 196 413 l 2 196 386 194 377 187 368 c 0 177 355 162 347 146 347 c 0 129 347 113 356 103 371 c 0 98 380 96 388 96 413 c 2 96 583 l 1 504 583 l 1 504 486 l 1 201 100 l 1 300 699 m 1 412 796 l 1 424 805 431 809 441 809 c 0 459 809 475 792 475 774 c 0 475 762 471 755 460 746 c 2 451 738 l 1 300 610 l 1 148 738 l 2 126 757 124 760 124 773 c 0 124 792 140 809 159 809 c 0 168 809 175 805 187 796 c 1 300 699 l 1 EndSplineSet EndChar StartChar: zcaron Encoding: 382 382 Width: 600 Flags: W HStem: 0 100<245 419> 0 154<461 478> 337 100<197 345> VStem: 85 434<1 83> 97 100<320 336> 97 409<356 436> DStem: 150 595 189 652 302 467 302 556 346 337 506 356 85 83 244 100 414 652 453 595 302 556 302 467 Fore 244 100 m 1 419 100 l 1 421 135 439 154 469 154 c 0 486 154 503 145 512 130 c 0 518 121 519 114 519 88 c 2 519 0 l 1 85 0 l 1 85 83 l 1 346 337 l 1 197 337 l 1 197 328 l 2 197 301 195 293 188 283 c 0 178 270 163 262 147 262 c 0 130 262 113 271 104 286 c 0 99 295 97 305 97 328 c 2 97 437 l 1 506 437 l 1 506 356 l 1 244 100 l 1 302 556 m 1 414 652 l 2 426 663 433 666 443 666 c 0 461 666 477 649 477 630 c 0 477 619 473 611 462 602 c 2 453 595 l 1 302 467 l 1 150 595 l 2 128 613 126 617 126 630 c 0 126 649 142 666 161 666 c 0 170 666 176 663 189 652 c 2 302 556 l 1 EndSplineSet MinimumDistance: x16,-1 EndChar StartChar: longs Encoding: 383 383 Width: 600 Flags: W HStem: 0 100<123 199 300 443> 337 100<139 199> 523 100<379 395> VStem: 199 100<100 337 437 480> Fore 299 100 m 1 438 100 l 2 465 100 474 98 484 91 c 0 496 81 504 66 504 50 c 0 504 33 495 17 480 7 c 0 473 3 458 0 438 0 c 2 141 0 l 2 118 0 104 3 95 10 c 0 83 19 75 35 75 50 c 0 75 67 84 84 99 93 c 0 108 99 115 100 141 100 c 2 199 100 l 1 199 337 l 1 152 337 l 2 128 337 116 339 107 347 c 1 94 356 86 371 86 387 c 0 86 404 95 421 110 430 c 0 119 436 126 437 153 437 c 2 199 437 l 1 199 474 l 2 199 566 273 623 392 623 c 0 434 623 497 616 529 607 c 0 556 600 571 583 571 560 c 0 571 531 550 509 524 509 c 0 518 509 508 510 496 512 c 0 462 518 414 523 383 523 c 0 326 523 299 507 299 474 c 2 299 100 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni0180 Encoding: 384 384 Width: 600 Flags: W HStem: -14 100<312 344> 0 100<40 73> 351 100<312 344> 524 100<40 73 175 280> VStem: -8 347<564.147 578> 74 100<210 226 402 524> 471 100<210 226> Fore 323 351 m 0 274 351 241 339 213 311 c 0 188 286 174 253 174 220 c 0 174 141 235 86 323 86 c 0 370 86 404 99 432 126 c 0 457 151 471 185 471 219 c 0 471 252 456 286 432 311 c 1 403 339 371 351 323 351 c 0 58 624 m 2 273 624 l 2 299 624 309 622 319 615 c 0 332 605 339 590 339 574 c 0 339 557 330 540 315 531 c 0 307 526 295 524 273 524 c 2 174 524 l 1 174 401 l 1 217 435 264 451 324 451 c 0 399 451 455 430 501 386 c 0 547 342 571 284 571 218 c 0 571 153 547 96 501 51 c 0 455 7 399 -14 325 -14 c 0 266 -14 226 -1 174 35 c 1 174 0 l 1 58 0 l 2 34 0 21 3 12 9 c 0 0 19 -8 34 -8 50 c 0 -8 67 1 84 16 93 c 0 25 99 33 100 58 100 c 2 74 100 l 1 74 524 l 1 58 524 l 2 32 524 22 526 12 533 c 0 0 543 -8 558 -8 574 c 0 -8 591 1 608 16 617 c 0 25 623 34 624 58 624 c 2 EndSplineSet MinimumDistance: x17,-1 EndChar StartChar: uni0181 Encoding: 385 385 Width: 600 Flags: W HStem: 0 100<62 93 195 382> 242 100<195 328> 483 100<56 93 195 334> VStem: -66 100<473 476> 94 100<101 241 343 482> 428 100<416 421> 471 100<144 162> Fore 194 342 m 1 307 342 l 2 379 342 428 373 428 419 c 0 428 459 390 483 327 483 c 2 194 483 l 1 194 342 l 1 194 100 m 1 369 100 l 2 437 100 471 118 471 154 c 0 471 178 454 204 428 220 c 0 403 235 371 242 329 242 c 2 194 242 l 1 194 100 l 1 94 483 m 1 79 483 l 2 40 483 34 479 34 474 c 8 34 468 37 463 41 461 c 0 64 446 69 414 54 391 c 0 38 369 6 362 -16 378 c 0 -42 398 -66 427 -66 474 c 0 -66 559 10 583 79 583 c 2 332 583 l 1 445 583 528 513 528 418 c 0 528 372 509 339 465 305 c 1 537 269 571 223 571 160 c 0 571 64 492 0 374 0 c 2 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 35 13 50 c 0 13 67 22 84 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 EndSplineSet MinimumDistance: x22,-1 EndChar StartChar: uni0182 Encoding: 386 386 Width: 600 Flags: W HStem: 0 100<68 102 202 390> 242 100<202 390> 483 100<68 102 202 458> VStem: 102 100<100 241 341 483> 458 100<415 483> 475 104<159 179> Ref: 1041 N 1 0 0 1 0 0 EndChar StartChar: uni0183 Encoding: 387 387 Width: 600 Flags: W HStem: -14 100<312 344> 0 100<40 73> 351 100<312 344> 524 100<40 73 175 488> VStem: 74 100<210 226 402 524> 471 100<210 226> Fore 323 351 m 0 274 351 241 339 213 311 c 0 188 286 174 253 174 220 c 0 174 141 235 86 323 86 c 0 370 86 404 99 432 126 c 0 457 151 471 185 471 219 c 0 471 252 456 286 432 311 c 1 403 339 371 351 323 351 c 0 58 624 m 2 473 624 l 2 499 624 509 622 519 615 c 0 532 605 539 590 539 574 c 0 539 557 530 540 515 531 c 0 507 526 495 524 473 524 c 2 174 524 l 1 174 401 l 1 217 435 264 451 324 451 c 0 399 451 455 430 501 386 c 0 547 342 571 284 571 218 c 0 571 153 547 96 501 51 c 0 455 7 399 -14 325 -14 c 0 266 -14 226 -1 174 35 c 1 174 0 l 1 58 0 l 2 34 0 21 3 12 9 c 0 0 19 -8 34 -8 50 c 0 -8 67 1 84 16 93 c 0 25 99 33 100 58 100 c 2 74 100 l 1 74 524 l 1 58 524 l 2 32 524 22 526 12 533 c 0 0 543 -8 558 -8 574 c 0 -8 591 1 608 16 617 c 0 25 623 34 624 58 624 c 2 EndSplineSet MinimumDistance: x17,-1 EndChar StartChar: uni0186 Encoding: 390 390 Width: 600 Flags: W HStem: -14 100<269 308.488> 0 216<96 100> 497 100<244 292> VStem: 464 100<261 341> Ref: 67 N -1 0 0 -1 597 583 EndChar StartChar: uni0187 Encoding: 391 391 Width: 600 Flags: W HStem: -14 100<305 353> 497 100<288.512 328> 579 100<557 563> VStem: 33 100<242 322> Fore 449.162 562.135 m 1 454.143 616.503 485.957 679 558 679 c 0 605 679 634 655 654 629 c 0 670 607 663 575 641 559 c 0 618 544 586 549 571 572 c 0 569 576 564 579 558 579 c 16 553 579 549 573 549 534 c 2 549 433 l 2 549 408 547 397 540 388 c 0 530 375 515 367 499 367 c 0 486 367 472 373 464 381 c 0 456 389 454 396 450 420 c 0 445 444 435 457 406 473 c 0 379 488 343 497 309 497 c 0 207 497 133 420 133 315 c 2 133 251 l 2 133 151 210 86 330 86 c 0 375 86 415 94 440 109 c 0 451 115 451 115 478 143 c 0 489 154 501 159 514 159 c 0 541 159 564 136 564 109 c 0 564 86 545 60 511 36 c 0 467 4 399 -14 327 -14 c 0 157 -14 33 97 33 249 c 2 33 315 l 2 33 475 151 597 305 597 c 0 357 597 392 589 447 563 c 2 449.162 562.135 l 1 EndSplineSet MinimumDistance: x14,-1 EndChar StartChar: uni0188 Encoding: 392 392 Width: 600 Flags: W HStem: -16 100<309 358> 350 100<294 332> 446 100<548 551> VStem: 54 100<192 224> Fore 439.948 426.606 m 1 444.163 481.545 475.838 546 549 546 c 0 596 546 625 522 645 496 c 0 661 474 654 442 632 426 c 0 609 411 577 416 562 439 c 0 560 443 555 446 549 446 c 16 544 446 540 440 540 401 c 2 540 307 l 2 540 281 538 271 531 262 c 0 521 249 506 241 490 241 c 0 477 241 462 247 454 255 c 1 446 261 444 267 439 289 c 0 435 307 429 316 416 325 c 0 390 341 354 350 310 350 c 0 259 350 222 336 194 307 c 0 168 281 154 245 154 207 c 0 154 125 213 84 330 84 c 0 370 84 411 89 435 97 c 0 454 103 459 107 485 128 c 0 494 136 503 140 515 140 c 0 542 140 565 117 565 89 c 0 565 63 542 37 501 16 c 0 460 -4 396 -16 323 -16 c 0 226 -16 164 5 115 53 c 0 75 93 54 146 54 207 c 0 54 350 159 450 310 450 c 0 360.334 450 403.65 442.202 439.948 426.606 c 1 EndSplineSet MinimumDistance: x15,-1 EndChar StartChar: uni0189 Encoding: 393 393 Width: 600 Flags: W HStem: 0 100<67.5 74 174 284> 243 100<67 74 174 248> 483 100<174 174 174 284> VStem: 74 100<100 243 343 483> 450 100<261 305> Ref: 208 N 1 0 0 1 0 0 EndChar StartChar: uni018A Encoding: 394 394 Width: 600 Flags: W HStem: 0 100<72 73 175 312> 483 100<40 73 175 296> VStem: -88 100<473 476> 74 100<101 482> 450 100<240 320> Fore 174 100 m 1 285 100 l 2 345 100 378 112 409 144 c 1 437 175 450 210 450 261 c 2 450 307 l 2 450 354 434 398 405 432 c 0 375 467 337 483 284 483 c 2 174 483 l 1 174 100 l 1 57 583 m 2 292 583 l 2 438 583 550 462 550 305 c 2 550 258 l 2 550 185 526 123 480 75 c 0 431 23 371 0 284 0 c 2 80 0 l 2 56 0 43 3 34 10 c 0 21 19 13 35 13 50 c 0 13 82 36 100 74 100 c 1 74 483 l 1 57 483 l 0 18 483 12 479 12 474 c 8 12 468 15 463 19 461 c 0 42 446 47 414 32 391 c 0 16 369 -16 362 -38 378 c 0 -64 398 -88 427 -88 474 c 0 -88 559 0 583 57 583 c 2 EndSplineSet MinimumDistance: x10,-1 EndChar StartChar: uni018B Encoding: 395 395 Width: 600 Flags: W HStem: 0 100<210 398 498 532> 242 100<210 398> 483 100<142 398 498 532> VStem: 21 104<159 179> 42 100<415 483> 398 100<100 241 341 483> Ref: 1041 N -1 0 0 1 600 0 EndChar StartChar: uni018C Encoding: 396 396 Width: 600 Flags: W HStem: -14 100<273 289> 0 100<531 561> 351 100<273 289> 524 100<113 430> VStem: 33 100<210 226> 431 100<210 226 402 524> Fore 281 351 m 0 233 351 200 339 172 311 c 0 147 286 133 252 133 219 c 0 133 185 147 152 172 126 c 1 200 99 234 86 282 86 c 0 330 86 364 99 392 126 c 0 417 151 431 185 431 217 c 0 431 253 417 286 392 311 c 0 363 339 331 351 281 351 c 0 431 524 m 1 131 524 l 1 106 524 95 526 86 533 c 0 73 543 65 558 65 574 c 0 65 591 74 607 89 617 c 0 98 623 106 624 131 624 c 1 531 624 l 1 531 100 l 1 547 100 l 2 574 100 583 98 593 91 c 0 605 81 613 66 613 50 c 0 613 33 604 16 589 7 c 0 581 2 570 0 547 0 c 2 431 0 l 1 431 35 l 1 378 -1 339 -14 280 -14 c 0 205 -14 149 7 103 51 c 0 57 96 33 153 33 219 c 0 33 284 57 342 103 386 c 0 149 430 205 451 281 451 c 0 341 451 388 435 431 401 c 1 431 524 l 1 EndSplineSet MinimumDistance: x14,-1 x13,15 y15,13 y15,14 EndChar StartChar: uni018D Encoding: 397 397 Width: 600 Flags: W HStem: -204 100<328 366> -198 169<94 100> 350 100<286 318 286 318> VStem: 458 100<-69 -51 210 226 210 226> Ref: 948 N -1 0 0 -1 600 434 EndChar StartChar: uni018E Encoding: 398 398 Width: 600 Flags: W HStem: 0 100<135 368 470 502> 241 99<284 368> 364 219<54 70> 483 100<113 368 470 502> VStem: 35 100<100 168 412 483> 185 99<214 240 341 365> 369 100<101 240 341 482> Ref: 69 N -1 0 0 -1 563 583 EndChar StartChar: uni0190 Encoding: 400 400 Width: 600 Flags: W HStem: -14 100<286 309> 1 198<478 494> 240 101<297 382> 497 100<286 318> VStem: 62 104<153 164> 83 104<418 431> Fore 366 341 m 6 391 341 399 339 408 333 c 4 423 324 432 307 432 290 c 4 432 275 424 259 412 249 c 4 403 243 390 240 366 240 c 6 307 240 l 6 239 240 223 226 202 215 c 4 180 203 166 183 166 162 c 4 166 119 224 86 298 86 c 4 364 86 427 115 437 151 c 4 445 178 445 178 452 185 c 4 461 194 474 199 488 199 c 4 504 199 519 192 529 179 c 4 536 169 538 158 538 133 c 6 538 67 l 6 538 22 522 1 487 1 c 4 471 1 464 5 447 25 c 5 398 -1 345 -14 291 -14 c 4 154 -14 62 56 62 160 c 4 62 212 81 253 121 285 c 4 127 290 133 294 139 298 c 5 106 317 83 363 83 420 c 4 83 521 176 597 300 597 c 4 351 597 395 586 430 564 c 5 440 589 449 597 469 597 c 4 486 597 503 588 511 574 c 4 517 565 518 557 518 531 c 6 518 443 l 6 518 415 516 407 509 397 c 4 499 384 484 376 469 376 c 4 455 376 441 382 433 390 c 4 426 398 426 398 419 430 c 4 410 470 362 497 300 497 c 4 237 497 187 464 187 421 c 4 187 400 202 377 224 366 c 4 244 356 250 341 324 341 c 6 366 341 l 6 EndSplineSet MinimumDistance: x33,-1 EndChar StartChar: uni0191 Encoding: 401 401 Width: 600 Flags: W HStem: -123 100<9 25> 243 99<194 279> 483 100<57 93 195 450> VStem: 94 100<53 242 343 482> 279 99<213.14 242 343 367> 450 100<414 483> Fore 194 243 m 1 194 66 l 2 194 -41 118 -123 19 -123 c 0 -58 -123 -103 -99 -103 -59 c 0 -103 -32 -80 -9 -55 -9 c 0 -49 -9 -46 -10 -32 -15 c 0 -16 -20 0 -23 16 -23 c 0 62 -23 94 13 94 66 c 2 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 550 583 l 1 550 432 l 2 550 405 548 397 541 387 c 0 531 374 516 366 500 366 c 0 483 366 467 375 457 390 c 0 452 398 450 409 450 432 c 2 450 483 l 1 194 483 l 1 194 342 l 1 279 342 l 1 279 349 l 2 279 374 281 385 288 394 c 0 298 407 313 415 329 415 c 0 346 415 362 406 371 391 c 0 377 381 378 374 378 349 c 2 378 236 l 2 378 209 376 200 369 190 c 0 359 177 344 169 329 169 c 0 312 169 295 179 286 193 c 0 281 202 279 213 279 236 c 2 279 243 l 1 194 243 l 1 EndSplineSet MinimumDistance: x14,-1 EndChar StartChar: florin Encoding: 402 402 Width: 600 Flags: HMW HStem: -123 100<168 199> -9 20 304 100<197 254 354 411> 538 100<407 436> VStem: 254 100<66 304 404 456> Fore 354 404 m 1 411 404 l 2 440 404 447 403 457 395 c 0 470 385 478 370 478 354 c 0 478 337 469 320 454 311 c 0 446 306 434 304 411 304 c 2 354 304 l 1 354 66 l 2 354 -41 278 -123 179 -123 c 0 102 -123 57 -99 57 -59 c 0 57 -32 80 -9 105 -9 c 0 111 -9 114 -10 128 -15 c 0 144 -20 160 -23 176 -23 c 0 222 -23 254 13 254 66 c 2 254 304 l 1 197 304 l 2 171 304 160 306 151 313 c 0 138 323 130 338 130 354 c 0 130 371 139 388 154 397 c 0 163 403 170 404 197 404 c 2 254 404 l 1 254 459 l 2 254 558 332 638 428 638 c 0 503 638 548 615 548 577 c 0 548 547 527 524 500 524 c 0 493 524 488 525 476 529 c 0 460 535 445 538 427 538 c 0 387 538 354 501 354 456 c 2 354 404 l 1 EndSplineSet EndChar StartChar: uni0193 Encoding: 403 403 Width: 600 Flags: W HStem: -14 100<304 353> 180 100<330 449> 497 100<304 337> 576 100<558 561> VStem: 33 100<229 322> 284 308<226 232> 450 100<111 180> Fore 451.501 569.976 m 1 459.514 621.473 491.708 676 559 676 c 0 606 676 635 652 655 626 c 0 671 604 664 572 642 556 c 0 619 541 587 546 572 569 c 0 570 573 565 576 559 576 c 16 554 576 550 570 550 531 c 2 550 453 l 2 550 425 549 418 541 408 c 0 531 395 516 387 500 387 c 0 487 387 473 393 465 402 c 0 459 409 459 409 451 440 c 0 441 475 391 497 318 497 c 0 262 497 217 481 186 450 c 0 153 417 133 367 133 317 c 2 133 253 l 2 133 195 147 156 178 130 c 0 212 101 262 86 325 86 c 0 373 86 412 94 450 111 c 1 450 180 l 1 350 180 l 2 325 180 314 182 305 190 c 1 292 199 284 214 284 230 c 0 284 247 293 264 308 273 c 0 317 279 325 280 350 280 c 2 525 280 l 2 552 280 561 278 571 271 c 0 585 261 592 246 592 230 c 0 592 205 578 188 550 180 c 1 550 48 l 1 461 1 409 -14 331 -14 c 0 233 -14 148 15 99 65 c 0 58 108 33 176 33 246 c 2 33 317 l 2 33 393 64 467 117 520 c 0 170 572 235 597 317 597 c 4 366.561 597 411.91 587.734 451.501 569.976 c 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: uni0195 Encoding: 405 405 Width: 600 Flags: W HStem: -13 100<437.93 457> 0 100<37 54 156 181> 337 100<485 512> 350 100<213 230> 524 100<21 54> VStem: 55 100<100 315 422 524> 289 100<147 291> 513 100<147 337> Fore 389 284 m 2 389 159 l 2 389 110 413 87 451 87 c 24 489 87 513 110 513 159 c 2 513 337 l 1 486 337 l 2 453 337 431 358 431 387 c 0 431 404 440 421 455 430 c 0 464 436 472 437 497 437 c 2 613 437 l 1 613 156 l 2 613 97 604 56 562 24 c 0 528 -2 496 -13 451 -13 c 0 406 -13 374 -2 340 24 c 0 298 56 289 97 289 156 c 2 289 271 l 2 289 305 286.077 317.929 272 331 c 0 258 344 248 350 217 350 c 0 187 350 166 332 155 315 c 1 155 100 l 1 161 100 l 2 189 100 197 98 207 91 c 0 220 81 228 66 228 50 c 0 228 33 219 17 204 7 c 0 196 2 182 0 161 0 c 2 49 0 l 2 25 0 13 3 4 9 c 0 -9 19 -17 35 -17 50 c 0 -17 67 -8 84 7 93 c 0 16 98 24 100 49 100 c 2 55 100 l 1 55 524 l 1 39 524 l 2 13 524 3 526 -7 533 c 0 -19 543 -27 559 -27 574 c 0 -27 591 -18 608 -3 617 c 0 6 622 15 624 39 624 c 2 155 624 l 1 155 421 l 1 170 438 195 450 228 450 c 0 334 450 389 384 389 284 c 2 EndSplineSet EndChar StartChar: uni0196 Encoding: 406 406 Width: 600 Flags: W HStem: -16 100<424 441> 483 100<153 250> VStem: 250 100<160 483> Fore 350 583 m 1 350 173 l 2 350 120 382 84 428 84 c 0 444 84 460 87 476 92 c 0 490 97 493 98 499 98 c 0 524 98 547 75 547 48 c 0 547 8 502 -16 425 -16 c 0 326 -16 250 66 250 173 c 2 250 483 l 1 172 483 l 2 147 483 135 485 126 493 c 1 113 502 105 517 105 533 c 0 105 550 114 567 129 576 c 0 138 582 146 583 172 583 c 2 350 583 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni0197 Encoding: 407 407 Width: 600 Flags: W HStem: 0 100<131 249 351 467> 234 100<131 249 351 467> 483 100<131 249 351 467> VStem: 250 100<100 234 334 483> Fore 250 334 m 1 250 483 l 1 149 483 l 2 124 483 113 485 104 492 c 0 91 502 83 517 83 533 c 0 83 550 92 567 107 576 c 0 116 582 123 583 149 583 c 2 451 583 l 2 478 583 486 581 496 574 c 0 510 564 517 549 517 533 c 0 517 516 508 499 493 490 c 0 485 485 474 483 451 483 c 2 350 483 l 1 350 334 l 1 451 334 l 2 477 334 487 332 497 325 c 0 510 315 517 300 517 284 c 0 517 267 508 250 493 241 c 0 485 236 473 234 451 234 c 2 350 234 l 1 350 100 l 1 451 100 l 2 478 100 486 98 496 91 c 0 510 81 517 66 517 50 c 0 517 17 495 0 451 0 c 2 149 0 l 2 125 0 113 3 104 10 c 0 91 19 83 35 83 50 c 0 83 67 92 84 107 93 c 0 116 99 123 100 149 100 c 2 250 100 l 1 250 234 l 1 149 234 l 2 124 234 113 236 104 243 c 0 91 253 83 268 83 284 c 0 83 301 92 317 107 327 c 0 116 333 124 334 149 334 c 2 250 334 l 1 EndSplineSet MinimumDistance: x12,-1 EndChar StartChar: uni0199 Encoding: 409 409 Width: 600 Flags: W HStem: 0 100<81.7263 115 471 525> 337 100<429 473> 538 100<277 305> VStem: 115 100<100 164 288 464> 278 245<384 389> 320 251<48 52> DStem: 233 178 311 241 336 87 471 100 294 350 429 337 215 287 311 241 Fore 115 100 m 1 115 459 l 2 115 558 193 638 289 638 c 0 364 638 409 615 409 577 c 0 409 547 388 524 361 524 c 0 354 524 349 525 337 529 c 0 321 535 306 538 288 538 c 0 248 538 215 501 215 456 c 2 215 287 l 1 294 350 l 1 282 364 278 373 278 387 c 0 278 404 287 420 302 430 c 0 310 435 321 437 345 437 c 2 457 437 l 2 482 437 493 435 503 428 c 0 516 418 523 403 523 387 c 0 523 370 514 354 499 344 c 0 491 339 480 337 457 337 c 2 429 337 l 1 311 241 l 1 471 100 l 1 504 100 l 2 532 100 540 98 550 91 c 0 563 81 571 66 571 50 c 0 571 33 562 17 547 7 c 0 539 2 526 0 504 0 c 2 386 0 l 2 342 0 320 17 320 50 c 0 320 64 324 74 336 87 c 1 233 178 l 1 215 164 l 1 215 0 l 1 99 0 l 2 55 0 33 17 33 50 c 0 33 67 42 84 57 93 c 0 66 99 74 100 99 100 c 2 115 100 l 1 EndSplineSet MinimumDistance: x23,-1 EndChar StartChar: uni019A Encoding: 410 410 Width: 600 Flags: W HStem: 0 100<109 249 351 478> 234 100<127 249 350 472> 524 100<150 249> VStem: 250 100<100 234 334 524> Fore 250 334 m 5 250 524 l 1 172 524 l 2 147 524 135 526 126 534 c 1 112 543 105 558 105 574 c 0 105 592 114 608 129 617 c 0 138 623 147 624 172 624 c 2 350 624 l 1 350 334 l 5 451 334 l 6 477 334 487 332 497 325 c 4 510 315 517 300 517 284 c 4 517 267 508 250 493 241 c 4 485 236 473 234 451 234 c 6 350 234 l 5 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 530 81 538 66 538 50 c 0 538 33 529 17 514 7 c 0 507 3 492 0 472 0 c 2 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 35 62 50 c 0 62 67 71 84 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 234 l 5 149 234 l 6 124 234 113 236 104 243 c 4 91 253 83 268 83 284 c 4 83 301 92 317 107 327 c 4 116 333 124 334 149 334 c 6 250 334 l 5 EndSplineSet MinimumDistance: x7,-1 x6,8 y8,6 y8,7 EndChar StartChar: uni019B Encoding: 411 411 Width: 600 Flags: W HStem: 0 21G<87 177 421 513> 0.943346 99.0567<405 417> 524 100<81 196> VStem: 21 222<48 52> 30.8324 409.168<565 568> 354 225<48 52> DStem: 240.889 431.843 298 323 70 100 184 100 298 323 329.863 478.218 418 100 527 100 Fore 240.889 431.843 m 1 155.525 387.349 l 2 148.15 383.505 140.253 381.682 132.47 381.682 c 0 107.323 381.682 82.4102 402.503 82.4102 431.632 c 0 82.4102 449.678 92.2051 467.113 109.305 476.025 c 2 197.125 521.799 l 1 196 524 l 1 96 524 l 2 72 524 63 526 54 531 c 0 39 540 30 557 30 574 c 0 30 590 37 603 51 614 c 24 66 625 71 624 96 624 c 2 193 624 l 2 246.339 624 268.814 598.281 285.049 567.628 c 1 366.885 610.283 l 2 374.26 614.128 382.156 615.95 389.939 615.95 c 0 415.087 615.95 440 595.129 440 566 c 0 440 547.955 430.205 530.52 413.105 521.606 c 2 329.863 478.218 l 1 527 100 l 1 560 97 579 79 579 50 c 0 579 34 572 19 558 9 c 0 549 2 539 0 513 0 c 2 421 0 l 2 382.534 0 354 14.7805 354 50 c 0 354 82 377 100 418 100 c 1 298 323 l 1 184 100 l 1 222 99 243 81 243 50 c 0 243 34 235 19 223 9 c 0 213 2 203 0 177 0 c 2 87 0 l 2 49.1707 0 21 15.2882 21 50 c 0 21 78 39 96 70 100 c 1 240.889 431.843 l 1 EndSplineSet MinimumDistance: x20,-1 x24,20 x32,28 EndChar StartChar: uni019C Encoding: 412 412 Width: 600 Flags: W HStem: -13 100<171 189 377 389> 0 21G<463 556> 483 99.8486<40 40 237.633 251.969 447.872 462.969 564 576> 563 20G<47 141 258 352 468 556> VStem: 41 100<115 483> 252 100<132 483> 463 100<132 483> Fore 463 0 m 1 463 24 l 1 428 -4 408 -13 378 -13 c 0 339 -13 306 3 276 36 c 1 245 2 213 -13 172 -13 c 0 97 -13 41 43 41 118 c 2 41 483 l 1 3 483 -19 501 -19 533 c 0 -19 566 3 583 47 583 c 2 141 583 l 1 141 126 l 2 141 97 150 87 176 87 c 0 202 87 218 96 252 132 c 1 252 483 l 1 214 483 192 502 192 533 c 0 192 550 201 566 216 576 c 0 224 581 237 583 258 583 c 2 352 583 l 1 352 126 l 2 352 98 362 87 387 87 c 0 414 87 433 98 463 132 c 1 463 483 l 1 424 483 402 501 402 533 c 0 402 550 411 566 426 576 c 0 434 581 447 583 468 583 c 2 556 583 l 2 580 583 593 580 602 573 c 0 615 564 623 548 623 533 c 0 623 501 601 483 563 483 c 1 563 100 l 1 601 99 623 81 623 50 c 0 623 24 606 5 577 2 c 0 566 0 564 0 556 0 c 2 463 0 l 1 EndSplineSet MinimumDistance: x28,-1 EndChar StartChar: uni019D Encoding: 413 413 Width: 600 Flags: W HStem: -123 100<-12 4> 0 21G<432 531> 483 100<36 72 372.499 430 531.031 546.331> VStem: 73 100<53 393> 330 262<523.191 535> 431 100<192 483> DStem: 173 394 173 583 432 0 431 191 Fore 173 394 m 1 173 66 l 2 173 -41 97 -123 -2 -123 c 0 -79 -123 -124 -99 -124 -59 c 0 -124 -32 -101 -9 -76 -9 c 0 -70 -9 -67 -10 -53 -15 c 0 -37 -20 -21 -23 -5 -23 c 0 41 -23 73 13 73 66 c 2 73 483 l 1 58 483 l 2 33 483 22 485 13 492 c 0 0 502 -8 517 -8 533 c 0 -8 550 1 567 16 576 c 0 25 582 32 583 58 583 c 2 173 583 l 5 431 191 l 1 431 483 l 1 396 483 l 2 371 483 360 485 351 492 c 0 338 502 330 517 330 533 c 0 330 550 339 567 354 576 c 0 363 582 370 583 396 583 c 2 526 583 l 2 553 583 561 581 571 574 c 0 584 564 592 549 592 533 c 0 592 501 571 483 531 483 c 1 531 0 l 1 432 0 l 1 173 394 l 1 EndSplineSet MinimumDistance: x25,-1 EndChar StartChar: uni019E Encoding: 414 414 Width: 600 Flags: W HStem: -205 21G<416 505> -204.757 99.7568<407 409 510 525.03> 0 100<71 94 196 215> 350 100<311 334> 417 20G<101 195> VStem: 95 100<100 282> 410 100<-105 291> Fore 195 437 m 1 195 389 l 1 243 435 277 450 332 450 c 0 377 450 418 437 451 413 c 0 491 383 510 341 510 282 c 2 510 -105 l 1 549 -105 571 -123 571 -155 c 0 571 -172 562 -189 547 -198 c 0 539 -203 526 -205 505 -205 c 2 416 -205 l 2 371 -205 349 -188 349 -155 c 0 349 -123 371 -105 410 -105 c 1 410 278 l 2 410 327 382 350 320 350 c 0 274 350 242 333 195 282 c 1 195 100 l 1 201 100 l 2 228 100 236 98 246 91 c 0 259 81 267 66 267 50 c 0 267 33 258 17 243 7 c 0 235 2 222 0 201 0 c 2 89 0 l 2 65 0 53 3 43 10 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 98 64 100 89 100 c 2 95 100 l 1 95 337 l 1 56 338 34 355 34 387 c 0 34 414 51 432 80 435 c 0 91 437 93 437 101 437 c 2 195 437 l 1 EndSplineSet MinimumDistance: x4,-1 EndChar StartChar: uni019F Encoding: 415 415 Width: 600 Flags: W HStem: -14 100<293 309> 229 100<131 470> 497 100<293 309> VStem: 21 558<274 306> Fore 300 597 m 0 367 597 432 570 485 520 c 0 548 460 579 383 579 287 c 0 579 123 452 -14 300 -14 c 0 146 -14 21 123 21 292 c 0 21 460 146 597 300 597 c 0 476 329 m 1 460 425 387 497 300 497 c 0 213 497 139 424 124 329 c 1 476 329 l 1 471 229 m 1 130 229 l 1 153 146 221 86 300 86 c 0 379 86 447 147 471 229 c 1 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: Ohorn Encoding: 416 416 Width: 600 Flags: W HStem: -14 100<293 309> 497 100<293 309> VStem: 21 100<274 306> 479 100<274 306> 501 100<558 562> Fore 300 497 m 0 202 497 121 404 121 292 c 0 121 179 202 86 300 86 c 0 397 86 479 179 479 289 c 0 479 404 399 497 300 497 c 0 533 462 m 1 564 413 579 354 579 287 c 0 579 123 452 -14 300 -14 c 0 146 -14 21 123 21 292 c 0 21 460 146 597 300 597 c 0 352 597 403 581 448 550 c 1 456 550 l 2 495 550 501 554 501 559 c 8 501 565 498 570 494 572 c 0 471 587 466 619 481 642 c 0 497 664 529 671 551 655 c 0 577 635 601 606 601 559 c 0 601 508 570 477 533 462 c 1 EndSplineSet EndChar StartChar: ohorn Encoding: 417 417 Width: 600 Flags: W HStem: -16 100<282 314> 350 100<282 314> VStem: 42 100<208 224> 458 100<208 224> 503 100<414 417> Fore 302 350 m 0 211 350 142 293 142 217 c 0 142 142 211 84 300 84 c 0 389 84 458 142 458 217 c 0 458 291 389 350 302 350 c 0 533 317 m 1 549 287 558 253 558 217 c 0 558 87 444 -16 300 -16 c 0 156 -16 42 87 42 217 c 0 42 349 155 450 303 450 c 0 359 450 410 434 452 406 c 1 458 406 l 2 497 406 503 410 503 415 c 8 503 421 500 426 496 428 c 0 473 443 468 475 483 498 c 0 499 520 531 527 553 511 c 0 579 491 603 462 603 415 c 0 603 364 571 333 533 317 c 1 EndSplineSet EndChar StartChar: uni01A2 Encoding: 418 418 Width: 600 Flags: W HStem: -15 100<211 227> 0 100<457 479 580 595> 497 100<211 227> 528 100<439 457> VStem: 3 100<241 337> 337 100<241 337> 480 100<100 481> Fore 103 325 m 2 103 257 l 2 103 153 149 85 220 85 c 0 291 85 337 153 337 257 c 2 337 325 l 2 337 429 291 497 220 497 c 0 149 497 103 429 103 325 c 2 321.033 571.964 m 1 348.639 596.336 393.243 628 458 628 c 0 544 628 580 548 580 458 c 2 580 100 l 1 585 100 l 2 612 100 620 98 630 91 c 0 643 81 651 66 651 50 c 0 651 33 642 17 627 7 c 0 619 2 606 0 585 0 c 2 473 0 l 2 449 0 437 3 427 10 c 0 415 19 407 35 407 50 c 0 407 67 416 84 431 93 c 0 440 98 448 100 473 100 c 2 479 100 l 1 480 100 l 1 480 458 l 2 480 524 461.119 528 450 528 c 0 424 528 406.332 512.994 390.816 500.307 c 1 420.719 450.969 437 387.392 437 318 c 2 437 264 l 2 437 173 409 92 359 40 c 0 325 4 277 -15 220 -15 c 0 163 -15 115 4 81 40 c 0 31 92 3 173 3 264 c 2 3 318 l 2 3 409 31 490 81 542 c 0 115 578 163 597 220 597 c 0 258.229 597 292.409 588.453 321.033 571.964 c 1 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: uni01A3 Encoding: 419 419 Width: 600 Flags: W HStem: -16 100<191 208> 0 100<463 478 579 591> 350 100<191 223> 386 100<428 463> VStem: 479 100<100 358> Fore 206 350 m 0 114 348 70 296 67 217 c 0 69 139 116 86 204 84 c 0 292 86 339 139 341 217 c 0 339 294 291 349 206 350 c 0 388.097 365.618 m 1 421.633 324.742 441.444 272.925 441 217 c 0 443 90 342 -18 204 -16 c 0 66 -18 -35 90 -33 217 c 0 -35 345 66 453 206 450 c 0 243.896 450.277 278.884 442.213 309.653 427.735 c 1 311.903 430.382 l 0 350.114 478.671 407.4 486 446 486 c 0 522 486 579 431.384 579 358 c 2 579 100 l 1 580 100 l 1 585 100 l 2 612 100 620 98 630 91 c 0 643 81 651 66 651 50 c 0 651 33 642 17 627 7 c 0 619 2 606 0 585 0 c 2 473 0 l 2 449 0 437 3 427 10 c 0 415 19 407 35 407 50 c 0 407 67 416 84 431 93 c 0 440 98 448 100 473 100 c 2 479 100 l 1 479 358 l 2 479 389.554 468 386 446 386 c 0 422 386 402 382 388.097 365.618 c 1 EndSplineSet MinimumDistance: x12,-1 EndChar StartChar: uni01A4 Encoding: 420 420 Width: 600 Flags: W HStem: 0 100<61 93 195 311> 200 100<195 317> 483 100<62 93 195 317> VStem: -83 100<473 476> 13 346<48 52> 94 100<100 200 301 482> 423 106<377 400> Fore 194 483 m 1 194 300 l 1 312 300 l 2 381 300 423 335 423 391 c 0 423 448 381 483 312 483 c 2 194 483 l 1 94 483 m 1 62 483 l 2 23 483 17 479 17 474 c 8 17 468 20 463 24 461 c 0 47 446 52 414 37 391 c 0 21 369 -11 362 -33 378 c 0 -59 398 -83 427 -83 474 c 0 -83 559 3.78516 583 62 583 c 2 312 583 l 2 439 583 529 505 529 394 c 0 529 348 511 301 479 266 c 0 435 217 385 200 292 200 c 2 194 200 l 1 194 100 l 1 293 100 l 2 320 100 328 98 338 91 c 0 351 81 359 66 359 50 c 0 359 33 350 16 335 7 c 0 328 3 313 0 293 0 c 2 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 35 13 50 c 0 13 67 22 84 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 483 l 1 EndSplineSet MinimumDistance: x14,-1 EndChar StartChar: uni01A5 Encoding: 421 421 Width: 600 Flags: W HStem: -205 100<40 74 175 250> 10 100<312 331> 350 100<312 344> 538 100<235.642 264> VStem: -8 306<-157 -153> 74 100<-105 65 223 243 393 467> 471 100<223 243> Fore 174 231 m 0 174 160 235 110 323 110 c 0 409 110 471 160 471 230 c 0 471 263 452 300 423 321 c 0 397 341 364 350 323 350 c 0 281 350 248 341 222 321 c 0 193 300 174 263 174 231 c 0 174 392 m 1 223 434 265 450 327 450 c 0 467 450 571 353 571 224 c 0 571 101 468 10 329 10 c 0 270 10 226 26 174 66 c 1 174 -105 l 1 232 -105 l 2 258 -105 268 -107 278 -114 c 0 291 -124 298 -139 298 -155 c 0 298 -172 289 -188 274 -198 c 0 266 -203 254 -205 232 -205 c 2 58 -205 l 2 33 -205 22 -203 12 -195 c 0 0 -186 -8 -171 -8 -155 c 0 -8 -138 1 -121 16 -112 c 0 25 -106 34 -105 58 -105 c 2 74 -105 l 1 74 459 l 2 74 558 152 638 248 638 c 0 323 638 368 615 368 577 c 0 368 547 347 524 320 524 c 0 313 524 308 525 296 529 c 0 280 535 265 538 247 538 c 0 207 538 174 501 174 456 c 2 174 392 l 1 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: uni01A7 Encoding: 423 423 Width: 600 Flags: W HStem: -14 100<261 318> 497 100<275.5 332.5> VStem: 414 104<140.5 172.5 410.5 442.5> Ref: 83 N -1 0 0 1 600 0 EndChar StartChar: uni01A8 Encoding: 424 424 Width: 600 Flags: W HStem: -16 100<268 324.5> 350 100<278 324.5> VStem: 398 110<115.5 133.5 310.5 324> Ref: 115 N -1 0 0 1 600 0 EndChar StartChar: uni01A9 Encoding: 425 425 Width: 600 Flags: W HStem: 0 100<202 427> 0 238<473 479> 483 100<203 427> VStem: 73 454<1 100 486 582> 427 100<101 192 400 482> DStem: 73 486 202 483 225 293 352 293 225 293 352 293 73 100 201 100 Fore 225 293 m 1 73 486 l 1 73 583 l 1 527 583 l 1 527 413 l 2 527 388 525 380 520 371 c 0 510 356 494 347 477 347 c 0 461 347 446 355 436 368 c 0 429 377 427 386 427 413 c 2 427 483 l 1 202 483 l 1 352 293 l 1 201 100 l 1 427 100 l 1 427 172 l 2 427 197 429 208 436 218 c 0 446 230 461 238 477 238 c 0 494 238 511 229 520 214 c 0 526 205 527 198 527 172 c 2 527 0 l 1 73 0 l 1 73 100 l 1 225 293 l 1 EndSplineSet MinimumDistance: x3,-1 EndChar StartChar: uni01AB Encoding: 427 427 Width: 600 Flags: W HStem: -203 100<334.58 356> -16 100<279 317> 337 100<61 114 215 413> VStem: 114 100<122 337 437 533> 429 100<-27 4> Fore 429 5 m 1 386 -8 336 -16 299 -16 c 0 185 -16 114 37 114 122 c 2 114 337 l 1 79 337 l 2 54 337 43 339 33 347 c 0 21 356 13 372 13 387 c 0 13 404 22 421 37 430 c 0 46 436 53 437 79 437 c 2 114 437 l 1 114 525 l 2 114 551 116 561 124 571 c 0 133 583 148 591 164 591 c 0 181 591 198 582 207 567 c 0 213 558 214 551 214 525 c 2 214 437 l 1 395 437 l 2 422 437 426 439 441 428 c 28 455 417 461 403 461 387 c 0 461 370 452 353 437 344 c 0 429 339 417 337 395 337 c 2 214 337 l 1 214 141 l 2 214 120 216 111 222 104 c 0 234 91 262 84 300 84 c 0 353 84 401 95 446 118 c 0 463 127 470 129 481 129 c 0 508 129 529 106 529 78 c 2 529 -14 l 2 529 -121 453 -203 354 -203 c 0 277 -203 232 -179 232 -139 c 0 232 -112 255 -89 280 -89 c 0 286 -89 289 -90 303 -95 c 0 319 -100 335 -103 351 -103 c 0 397 -103 429 -67 429 -14 c 2 429 5 l 1 EndSplineSet MinimumDistance: x27,-1 EndChar StartChar: uni01AC Encoding: 428 428 Width: 600 Flags: W HStem: 0 100<173 248 350 429> 483 100<125 248 350 458> VStem: -3 100<473 476> 249 100<100 482> 458 100<369 482> Fore 142 483 m 2 104 483 97 479 97 474 c 8 97 468 100 463 104 461 c 0 118 452 126 436 126 420 c 4 126 390 101 369 74 369 c 4 65 369 55 372 47 378 c 0 21 398 -3 427 -3 474 c 0 -3 559 82 583 142 583 c 2 558 583 l 1 558 390 l 2 558 362 557 355 549 345 c 0 539 332 524 324 508 324 c 0 491 324 474 334 465 348 c 0 460 357 458 367 458 390 c 2 458 483 l 1 349 483 l 1 349 100 l 1 415 100 l 2 442 100 450 98 460 91 c 0 473 81 481 66 481 50 c 0 481 33 472 16 457 7 c 0 450 3 435 0 415 0 c 2 184 0 l 2 161 0 148 3 139 10 c 0 126 19 118 35 118 50 c 0 118 67 127 84 142 93 c 0 151 99 158 100 184 100 c 2 249 100 l 1 249 483 l 1 142 483 l 2 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: uni01AD Encoding: 429 429 Width: 600 Flags: W HStem: -16 100<285 317> 337 100<61 114 215 413> 538 100<285 302> VStem: 114 100<122 337 437 464> Fore 114 437 m 1 114 459 l 2 114 558 192 638 288 638 c 0 363 638 408 615 408 577 c 0 408 547 387 524 360 524 c 0 353 524 348 525 336 529 c 0 320 535 305 538 287 538 c 0 247 538 214 501 214 456 c 2 214 437 l 1 395 437 l 2 422 437 426 439 441 428 c 24 455 417 461 403 461 387 c 0 461 370 452 353 437 344 c 0 429 339 417 337 395 337 c 2 214 337 l 1 214 141 l 2 214 120 216 111 222 104 c 0 234 91 262 84 300 84 c 0 353 84 401 95 446 118 c 0 463 127 470 129 481 129 c 0 508 129 529 106 529 78 c 0 529 54 517 41 479 24 c 0 430 1 351 -16 299 -16 c 0 185 -16 114 37 114 122 c 2 114 337 l 1 79 337 l 2 54 337 43 339 33 347 c 0 21 356 13 372 13 387 c 0 13 404 22 421 37 430 c 0 46 436 53 437 79 437 c 2 114 437 l 1 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: uni01AE Encoding: 430 430 Width: 600 Flags: W HStem: -123 100<423 442> 483 100<142 249 350 458> VStem: 42 100<373 482> 249 100<53 482> 458 100<373 482> Fore 349 483 m 1 349 66 l 2 349 13 381 -23 427 -23 c 0 443 -23 459 -20 475 -15 c 0 489 -10 492 -9 498 -9 c 0 523 -9 546 -32 546 -59 c 0 546 -99 501 -123 424 -123 c 0 325 -123 249 -41 249 66 c 2 249 483 l 1 142 483 l 1 142 390 l 2 142 363 140 355 133 345 c 0 123 332 108 324 92 324 c 0 75 324 58 333 49 348 c 0 44 357 42 367 42 390 c 2 42 583 l 1 558 583 l 1 558 390 l 2 558 362 557 355 549 345 c 0 539 332 524 324 508 324 c 0 491 324 474 334 465 348 c 0 460 357 458 367 458 390 c 2 458 483 l 1 349 483 l 1 EndSplineSet MinimumDistance: x16,-1 EndChar StartChar: Uhorn Encoding: 431 431 Width: 600 Flags: W HStem: -14 100<282.431 314> 483 100<172 218 378 428> VStem: 10 262<530 535> 71 100<194 483> 429 100<194 483> 569 100<591 594> Fore 529 483 m 1 529 205 l 2 529 134 502 78 445 35 c 0 402 2 355 -14 300 -14 c 0 246 -14 198 2 155 35 c 0 99 78 71 134 71 205 c 2 71 483 l 1 31 484 10 501 10 533 c 0 10 550 19 567 34 576 c 0 43 582 51 583 76 583 c 2 206 583 l 2 234 583 241 582 252 574 c 0 264 564 272 549 272 533 c 0 272 516 263 499 248 490 c 0 240 485 229 483 206 483 c 2 171 483 l 1 171 196 l 2 171 135 229 86 300 86 c 0 371 86 429 135 429 196 c 2 429 483 l 1 394 483 l 2 368 483 358 485 349 492 c 0 336 502 328 517 328 533 c 0 328 550 337 567 352 576 c 0 361 582 368 583 394 583 c 2 524 583 l 2 563 583 569 587 569 592 c 8 569 598 566 603 562 605 c 0 539 620 534 652 549 675 c 0 565 697 597 704 619 688 c 0 645 668 669 639 669 592 c 0 669 509.41 586.863 480.032 529 483 c 1 EndSplineSet EndChar StartChar: uhorn Encoding: 432 432 Width: 600 Flags: W HStem: -13 100<269 285> 0 21G<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 95 349.509 409 510.062 530.885> VStem: 95 100<147 337> 410 100<155 337> 555 100<445 451> Fore 510 437 m 2 549 437 555 441 555 446 c 8 555 452 552 457 548 459 c 0 525 474 520 506 535 529 c 0 551 551 583 558 605 542 c 0 631 522 655 493 655 446 c 0 655 361 568 337 510 337 c 1 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 17 547 7 c 0 539 2 526 0 505 0 c 2 410 0 l 1 410 48 l 1 360 1 328 -13 273 -13 c 0 228 -13 186 0 154 24 c 0 114 54 95 97 95 156 c 2 95 337 l 1 68 337 l 2 35 337 13 358 13 387 c 0 13 404 22 421 37 430 c 0 46 436 54 437 79 437 c 2 195 437 l 1 195 159 l 2 195 110 223 87 283 87 c 0 333 87 358 100 410 155 c 1 410 337 l 1 375 337 l 2 350 337 345 336 330 347 c 24 316 358 309 372 309 387 c 0 309 404 318 421 333 430 c 0 342 436 351 437 375 437 c 2 510 437 l 2 EndSplineSet EndChar StartChar: uni01B3 Encoding: 435 435 Width: 600 Flags: W HStem: 0 100<176 249 351 423> 483 100<68 85 514 516> VStem: -60 100<473 476> 250 100<100 245> 354 225<528 535> DStem: 85 483 205 484 250 245 300 348 394 484 514 483 300 348 350 245 Fore 85 583 m 2 177 583 l 2 204 583 213 581 223 574 c 0 235 564 243 549 243 533 c 0 243 510 231 495 205 484 c 1 300 348 l 1 394 484 l 1 367 494 354 510 354 533 c 0 354 550 363 567 378 576 c 0 387 582 396 583 421 583 c 2 513 583 l 2 540 583 549 581 558 574 c 0 572 564 579 549 579 533 c 0 579 502 551 479 516 483 c 2 514 483 l 1 350 245 l 1 350 100 l 1 415 100 l 2 443 100 451 98 461 91 c 0 474 81 482 66 482 50 c 0 482 33 473 16 458 7 c 0 451 3 436 0 415 0 c 2 185 0 l 2 161 0 148 3 139 10 c 0 126 19 118 34 118 50 c 0 118 67 127 84 142 93 c 0 151 99 158 100 185 100 c 2 250 100 l 1 250 245 l 1 85 483 l 1 46 483 40 479 40 474 c 8 40 468 43 463 47 461 c 0 70 446 75 414 60 391 c 0 44 369 12 362 -10 378 c 0 -36 398 -60 427 -60 474 c 0 -60 559 26.7852 583 85 583 c 2 EndSplineSet MinimumDistance: x12,-1 EndChar StartChar: uni01B4 Encoding: 436 436 Width: 600 Flags: W HStem: -205 100<66 187 298 309> 337 99.9864<405.713 417.969> 417 20G<87 177> VStem: 21 222<376.035 389> 21 347<-157 -153> 572 100<445 451> DStem: 70 337 184 337 242 3 298 114 242 3 527 337 187 -105 297 -105 418 337 527 337 298 114 297 -105 Fore 421 437 m 2 527 437 l 2 566 437 572 441 572 446 c 8 572 452 569 457 565 459 c 0 542 474 537 506 552 529 c 0 568 551 600 558 622 542 c 0 648 522 672 493 672 446 c 0 672 361 585 332 527 337 c 1 297 -105 l 1 302 -105 l 2 328 -105 338 -107 348 -114 c 0 360 -124 368 -139 368 -155 c 0 368 -172 359 -188 344 -198 c 0 336 -203 324 -205 302 -205 c 2 87 -205 l 2 62 -205 57 -206 42 -195 c 24 28 -184 21 -171 21 -155 c 0 21 -138 30 -121 45 -112 c 0 54 -107 63 -105 87 -105 c 2 187 -105 l 1 242 3 l 1 70 337 l 1 39 341 21 359 21 387 c 0 21 414 38 432 67 435 c 0 78 437 80 437 87 437 c 2 177 437 l 2 203 437 213 435 223 428 c 0 235 418 243 403 243 387 c 0 243 356 222 338 184 337 c 1 298 114 l 1 418 337 l 1 377 337 354 355 354 387 c 0 354 414 371 432 400 435 c 0 411 437 413 437 421 437 c 2 EndSplineSet MinimumDistance: x22,27 EndChar StartChar: uni01B5 Encoding: 437 437 Width: 600 Flags: W HStem: 0 100<202 427> 0 190<473 483> 234 100<121.498 169 393 436> 483 100<196 374> VStem: 73 454<1 100> 79 402<274.191 288> 96 100<448 482> 96 408<486 582> 427 100<101 144> DStem: 178.661 234 306.187 234 73 100 201 100 375 483 504 486 257.512 334 384.684 334 Fore 306.187 234 m 5 201 100 l 1 427 100 l 1 427 124 l 2 427 149 429 160 436 170 c 0 446 182 461 190 477 190 c 0 494 190 511 181 520 166 c 0 526 157 527 150 527 124 c 2 527 0 l 1 73 0 l 1 73 100 l 1 178.661 234 l 5 145 234 l 6 120 234 109 236 100 243 c 4 87 253 79 268 79 284 c 4 79 301 88 317 103 327 c 4 112 333 120 334 145 334 c 6 257.512 334 l 5 375 483 l 1 196 483 l 1 196 461 l 2 196 434 194 425 187 416 c 0 177 403 162 395 146 395 c 0 129 395 113 404 103 419 c 0 98 428 96 436 96 461 c 2 96 583 l 1 504 583 l 1 504 486 l 1 384.684 334 l 5 415 334 l 6 441 334 451 332 461 325 c 4 474 315 481 300 481 284 c 4 481 267 472 250 457 241 c 4 449 236 437 234 415 234 c 6 306.187 234 l 5 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: uni01B6 Encoding: 438 438 Width: 600 Flags: W HStem: 0 100<245 419> 0 154<457.65 471> 0 254<160 244> 337 100<197 345> VStem: 97 100<320 336> 97 409<356 436> 119 334<194.1 208> Fore 299.266 154 m 1 244 100 l 1 419 100 l 1 421 135 439 154 469 154 c 0 486 154 503 145 512 130 c 0 518 121 519 114 519 88 c 2 519 0 l 1 85 0 l 1 85 83 l 1 159.371 155.377 l 1 135.203 159.06 119 181.117 119 204 c 0 119 221 128 237 143 247 c 0 152 253 160 254 185 254 c 2 260.713 254 l 1 346 337 l 1 197 337 l 1 197 328 l 2 197 301 195 293 188 283 c 0 178 270 163 262 147 262 c 0 130 262 113 271 104 286 c 0 99 295 97 305 97 328 c 2 97 437 l 1 506 437 l 1 506 356 l 1 401.315 253.712 l 1 417.168 252.949 425.084 250.541 433 245 c 0 446 235 453 220 453 204 c 0 453 187 444 170 429 161 c 0 421 156 409 154 387 154 c 2 299.266 154 l 1 EndSplineSet MinimumDistance: x26,-1 EndChar StartChar: uni01B7 Encoding: 439 439 Width: 600 Flags: W HStem: -50 100<300 332> 234 100<252 258> 483 100<196 374> VStem: 96 100<446 482> 96 408<486 582> 463 100<140 158> DStem: 375 483 504 486 258 334 385 334 Fore 385 334 m 1 491.479 338.413 563 249.5 563 154 c 0 563 6.9966 423.041 -50 314 -50 c 0 199 -50 100 10 54 68 c 1 38 90 42 121 64 138 c 0 86 154 117 150 134 128 c 1 152 102 239.5 50 314 50 c 0 401.052 50 463 84.5 463 154 c 0 463 208.009 440 234 384 234 c 2 258 234 l 2 230 234 208 256 208 284 c 0 208 312 230 334 258 334 c 1 375 483 l 1 196 483 l 1 196 461 l 2 196 434 194 425 187 416 c 0 177 403 162 395 146 395 c 0 129 395 113 404 103 419 c 0 98 428 96 436 96 461 c 2 96 583 l 1 504 583 l 1 504 486 l 1 385 334 l 1 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni01B8 Encoding: 440 440 Width: 600 Flags: W HStem: -50 100<275.268 307.268> 234 100<349.268 355.268> 483 100<233.268 411.268> VStem: 44.268 100<140 158> 103.268 408<486 582> 411.268 100<446 482> DStem: 103.268 486 232.268 483 222.268 334 349.268 334 Ref: 439 N -1 0 0 1 607.268 0 EndChar StartChar: uni01BB Encoding: 443 443 Width: 600 Flags: W HStem: 0 100<216 424> 0 154<470 476> 234 100<166 230> 498 100<278 294> VStem: 54 470<1 100> 111 402<274.191 288> 403 100<400 416> Fore 489.883 327.013 m 1 504.582 318.343 513 300.895 513 284 c 0 513 267 504 250 489 241 c 0 481 236 469 234 447 234 c 2 402.93 234 l 1 342.976 186.644 277.433 144.877 215 100 c 1 424 100 l 1 427 136 443 154 474 154 c 0 491 154 508 145 517 130 c 0 522 121 524 112 524 88 c 2 524 0 l 1 54 0 l 1 54 105 l 1 233.921 234 l 1 177 234 l 2 152 234 141 236 132 243 c 0 119 253 111 268 111 284 c 0 111 301 120 317 135 327 c 0 144 333 152 334 177 334 c 2 364.303 334 l 1 393.08 359.77 403 378.098 403 408 c 0 403 458 353 498 288 498 c 0 248 498 213 483 191 457 c 0 181 445 180 443 169 411 c 0 164 394 145 382 124 382 c 0 97 382 74 404 74 430 c 0 74 462 100 511 134 542 c 0 174 578 231 598 290 598 c 0 412 598 503 515 503 404 c 0 503 372.045 499.344 348.158 489.883 327.013 c 1 EndSplineSet MinimumDistance: x28,-1 EndChar StartChar: uni01C0 Encoding: 448 448 Width: 600 Flags: W VStem: 250 100<-87 556> Ref: 124 N 1 0 0 1 0 0 EndChar StartChar: uni01C1 Encoding: 449 449 Width: 600 Flags: W HStem: -153 775<202 206 394 398> VStem: 154 100<-105 567> 346 100<-105 567> Fore 446 556 m 2 446 -87 l 2 446 -112 444 -122 437 -132 c 0 427 -145 412 -153 396 -153 c 0 379 -153 363 -144 353 -129 c 0 348 -121 346 -110 346 -87 c 2 346 556 l 2 346 582 348 592 355 602 c 0 365 614 380 622 396 622 c 0 413 622 430 613 439 598 c 0 444 589 446 580 446 556 c 2 254 556 m 2 254 -87 l 2 254 -112 252 -122 245 -132 c 0 235 -145 220 -153 204 -153 c 0 187 -153 171 -144 161 -129 c 0 156 -121 154 -110 154 -87 c 2 154 556 l 2 154 582 156 592 163 602 c 0 173 614 188 622 204 622 c 0 221 622 238 613 247 598 c 0 252 589 254 580 254 556 c 2 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni01C3 Encoding: 451 451 Width: 600 Flags: W HStem: -15 20 Ref: 33 N 1 0 0 1 0 0 EndChar StartChar: uni01C8 Encoding: 456 456 Width: 600 Flags: W HStem: -205 100<249 390> 0 100<73 107 209 311> 0 259<350.683 368> 337 100<345 467> 483 100<73 107 209 249> 518 105<392 509> VStem: 108 100<100 483> 311 100<100 211> 391 119<519 622> 468 100<-29 337> Fore 208 483 m 1 208 100 l 1 311 100 l 1 311 192 l 2 311 219 313 228 320 238 c 0 330 252 345 259 361 259 c 0 378 259 394 250 404 235 c 0 410 226 411 217 411 192 c 2 411 0 l 1 91 0 l 2 68 0 54 3 46 10 c 0 33 19 25 34 25 50 c 0 25 67 34 84 49 93 c 0 58 99 65 100 91 100 c 2 108 100 l 1 108 483 l 1 91 483 l 2 66 483 55 485 46 492 c 0 33 502 25 517 25 533 c 0 25 550 34 567 49 576 c 0 58 582 65 583 91 583 c 2 233 583 l 2 260 583 268 581 278 574 c 0 291 564 299 549 299 533 c 0 299 516 290 499 275 490 c 0 267 485 256 483 233 483 c 2 208 483 l 1 468 337 m 1 366 337 l 2 341 337 330 339 321 347 c 1 308 356 300 372 300 387 c 0 300 404 309 421 324 430 c 0 333 436 340 437 366 437 c 2 568 437 l 1 568 -20 l 2 568 -125 486 -205 377 -205 c 2 263 -205 l 2 238 -205 227 -203 218 -195 c 1 205 -186 197 -170 197 -155 c 0 197 -138 207 -121 221 -112 c 0 230 -106 238 -105 263 -105 c 2 374 -105 l 2 431 -105 468 -72 468 -20 c 2 468 337 l 1 510 623 m 1 510 518 l 1 391 518 l 1 391 623 l 1 510 623 l 1 EndSplineSet MinimumDistance: x32,-1 EndChar StartChar: uni01C9 Encoding: 457 457 Width: 600 Flags: W HStem: -205 100<234 374> 0 100<74 153 254 330> 337 100<330 451> 518 105<376 493> 524 100<90 153> VStem: 154 100<100 524> 375 119<519 622> 452 100<-29 337> Fore 452 337 m 1 350 337 l 2 325 337 314 339 305 347 c 1 292 356 284 372 284 387 c 0 284 404 293 421 308 430 c 0 317 436 324 437 350 437 c 2 552 437 l 1 552 -20 l 2 552 -125 470 -205 361 -205 c 2 247 -205 l 2 222 -205 211 -203 202 -195 c 1 189 -186 181 -170 181 -155 c 0 181 -138 191 -121 205 -112 c 0 214 -106 222 -105 247 -105 c 2 358 -105 l 2 415 -105 452 -72 452 -20 c 2 452 337 l 1 494 623 m 1 494 518 l 1 375 518 l 1 375 623 l 1 494 623 l 1 254 624 m 1 254 100 l 1 316 100 l 2 343 100 351 98 361 91 c 0 374 81 382 66 382 50 c 0 382 33 373 17 358 7 c 0 351 3 336 0 316 0 c 2 92 0 l 2 69 0 55 3 47 10 c 0 34 19 26 35 26 50 c 0 26 67 35 84 50 93 c 0 59 99 66 100 92 100 c 2 154 100 l 1 154 524 l 1 108 524 l 2 83 524 71 526 62 534 c 1 48 543 41 558 41 574 c 0 41 592 50 608 65 617 c 0 74 623 83 624 108 624 c 2 254 624 l 1 EndSplineSet MinimumDistance: x6,-1 x38,21 y21,38 y21,20 EndChar StartChar: uni01CD Encoding: 461 461 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 706 20<247 247> Ref: 711 N 1 0 0 1 -54 140 Ref: 65 N 1 0 0 1 0 0 EndChar StartChar: uni01CE Encoding: 462 462 Width: 600 HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 559 20<293 293> VStem: 42 106<118 128> 389 100<135 185 279 304> Ref: 711 N 1 0 0 1 -8 -7 Ref: 97 N 1 0 0 1 0 0 EndChar StartChar: uni01CF Encoding: 463 463 Width: 600 HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> 706 20<301 301> VStem: 250 100<100 483> Ref: 711 N 1 0 0 1 -0 140 Ref: 73 N 1 0 0 1 0 0 EndChar StartChar: uni01D0 Encoding: 464 464 Width: 600 HStem: 0 100<128 250 350 472> 337 100<172 250> 559 20<301 301> VStem: 250 100<100 337 337 337> Ref: 711 N 1 0 0 1 -0 -7 Ref: 305 N 1 0 0 1 0 0 EndChar StartChar: uni01D1 Encoding: 465 465 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> 706 20<301 301> VStem: 21 100<235.5 348> 479 100<234 335> Ref: 711 N 1 0 0 1 -0 140 Ref: 79 N 1 0 0 1 0 0 EndChar StartChar: uni01D2 Encoding: 466 466 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 559 20<303 303> VStem: 42 100<179.5 255> 458 100<179.5 254> Ref: 711 N 1 0 0 1 2 -7 Ref: 111 N 1 0 0 1 0 0 EndChar StartChar: uni01D3 Encoding: 467 467 Width: 600 HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 706 20<301 301> VStem: 71 100<205 483> 429 100<196 205 205 483> Ref: 711 N 1 0 0 1 -0 140 Ref: 85 N 1 0 0 1 0 0 EndChar StartChar: uni01D4 Encoding: 468 468 Width: 600 HStem: -13 100<253 300.5> 337 100<375 410> 559 20<295 295> VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337> Ref: 711 N 1 0 0 1 -6 -7 Ref: 117 N 1 0 0 1 0 0 EndChar StartChar: uni01D5 Encoding: 469 469 Width: 600 HStem: -14 100<282.431 314> 483 100<172 218 378 428 529.031 544.331> 678 120<186 206 394 410> 838 80<178 422> VStem: 10 262<530 535> 71 100<194 483> 136 120<736 740> 328 262<530 535> 344 120<736 740> 429 100<194 483> Ref: 175 N 1 0 0 1 0 292 Ref: 220 N 1 0 0 1 0 0 EndChar StartChar: uni01D6 Encoding: 470 470 Width: 600 HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 338 99<79 95 365 409> 534 120<189 197 397 409> 694 80<173 417> VStem: 95 100<147 337> 131 120<592 596> 339 120<592 596> 410 100<155 337> Ref: 175 N 1 0 0 1 -5 148 Ref: 252 N 1 0 0 1 0 0 EndChar StartChar: uni01D7 Encoding: 471 471 Width: 600 HStem: -14 100<282.431 314> 483 100<172 218 378 428 529.031 544.331> 678 120<186 206 394 410> VStem: 10 262<530 535> 71 100<194 483> 136 120<736 740> 328 262<530 535> 344 120<736 740> 429 100<194 483> DStem: 419 1022 465 966 286 911 332 854 Ref: 180 N 1 0 0 1 13 342 Ref: 220 N 1 0 0 1 0 0 EndChar StartChar: uni01D8 Encoding: 472 472 Width: 600 HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 338 99<79 95 365 409> 534 120<189 197 397 409> VStem: 95 100<147 337> 131 120<592 596> 339 120<592 596> 410 100<155 337> DStem: 414 878 460 822 281 767 327 710 Ref: 180 N 1 0 0 1 8 198 Ref: 252 N 1 0 0 1 0 0 EndChar StartChar: uni01D9 Encoding: 473 473 Width: 600 HStem: -14 100<282.431 314> 483 100<172 218 378 428 529.031 544.331> 678 120<186 206 394 410> 907 20<301 301> VStem: 10 262<530 535> 71 100<194 483> 136 120<736 740> 328 262<530 535> 344 120<736 740> 429 100<194 483> Ref: 711 N 1 0 0 1 -0 341 Ref: 220 N 1 0 0 1 0 0 EndChar StartChar: uni01DA Encoding: 474 474 Width: 600 HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 338 99<79 95 365 409> 534 120<189 197 397 409> 763 20<295 295> VStem: 95 100<147 337> 131 120<592 596> 339 120<592 596> 410 100<155 337> Ref: 711 N 1 0 0 1 -6 197 Ref: 252 N 1 0 0 1 0 0 EndChar StartChar: uni01DB Encoding: 475 475 Width: 600 HStem: -14 100<282.431 314> 483 100<172 218 378 428 529.031 544.331> 678 120<186 206 394 410> VStem: 10 262<530 535> 71 100<194 483> 136 120<736 740> 328 262<530 535> 344 120<736 740> 429 100<194 483> DStem: 135 966 181 1022 268 854 314 911 Ref: 96 N 1 0 0 1 -13 342 Ref: 220 N 1 0 0 1 0 0 EndChar StartChar: uni01DC Encoding: 476 476 Width: 600 HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 338 99<79 95 365 409> 534 120<189 197 397 409> VStem: 95 100<147 337> 131 120<592 596> 339 120<592 596> 410 100<155 337> DStem: 130 822 176 878 263 710 309 767 Ref: 96 N 1 0 0 1 -18 198 Ref: 252 N 1 0 0 1 0 0 EndChar StartChar: uni01DD Encoding: 477 477 Width: 600 Flags: W HStem: -16 100<254.5 327.5> 174 88<144 438> 350 100<254 321> Ref: 101 N -1 0 0 -1 583 434 EndChar StartChar: uni01DE Encoding: 478 478 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 838 80<161 405> VStem: -21 120 187 120 Ref: 175 N 1 0 0 1 -17 292 Ref: 196 N 1 0 0 1 0 0 EndChar StartChar: uni01DF Encoding: 479 479 Width: 600 HStem: -16 100<218 246> 0 100<489 522> 196 92<266 298> 350 100<277 314> 534 120<178 187 387 395> 694 80<167 411> VStem: 42 106<118 128> 125 120<592 596> 333 120<592 596> 389 100<135 185 279 304> Ref: 175 N 1 0 0 1 -11 148 Ref: 228 N 1 0 0 1 0 0 EndChar StartChar: uni01E0 Encoding: 480 480 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 637 120<235.067 250> 797 80<124 368> VStem: 186 120<695 701> Ref: 175 N 1 0 0 1 -54 251 Ref: 550 N 1 0 0 1 0 0 EndChar StartChar: uni01E1 Encoding: 481 481 Width: 600 HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 490 120<281.067 296> 650 80<170 414> VStem: 42 106<118 128> 232 120<548 554> 389 100<135 185 279 304> Ref: 175 N 1 0 0 1 -8 104 Ref: 551 N 1 0 0 1 0 0 EndChar StartChar: uni01E2 Encoding: 482 482 Width: 600 HStem: 0 100<28.7264 53 258 266 368 514> 0 189<556 572> 158 101<204 266> 187 210<428 444> 243 99<368 386> 483 100<140 167 368 493> 637 80<252 496> VStem: -20 218<48 55> 267 100<101 157 343 470> 267 219<260 342> 493 100<396 482> 514 100<100 144> DStem: 168 483 267 471 53 100 203 259 Ref: 175 N 1 0 0 1 74 91 Ref: 198 N 1 0 0 1 0 0 EndChar StartChar: uni01E3 Encoding: 483 483 Width: 600 HStem: -16 100<147 163 431 451> 172 86<363 501> 197 89<194 211> 350 100<194 211 431 441> 490 80<199 443> VStem: -13 101<131 147> 255 356<172 189> Ref: 175 N 1 0 0 1 21 -56 Ref: 230 N 1 0 0 1 0 0 EndChar StartChar: Gcaron Encoding: 486 486 Width: 600 HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344> 686 20<315 315> VStem: 33 100<246 253 253 317> 450 100<111 180> Ref: 711 N 1 0 0 1 14 120 Ref: 71 N 1 0 0 1 0 0 EndChar StartChar: gcaron Encoding: 487 487 Width: 600 HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296> 540 20<285 285> VStem: 33 100<182 255.5> 410 100<-20 35 35 35 181 254.5> Ref: 711 S 1 0 0 1 -16 -26 Ref: 103 N 1 0 0 1 0 0 EndChar StartChar: uni01E8 Encoding: 488 488 Width: 600 HStem: 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5> 676 20<285 285> VStem: 94 100<100 208 334 483> Ref: 711 N 1 0 0 1 -16 110 Ref: 75 N 1 0 0 1 0 0 EndChar StartChar: uni01E9 Encoding: 489 489 Width: 600 HStem: 0 100<81.7263 114 471 525> 337 100<429 473> 524 100<81 114> 733 20<157 157> VStem: 115 100<100 164 288 524> 278 245<384 389> 320 251<48 52> DStem: 233 178 311 241 336 87 471 100 294 350 429 337 215 287 311 241 Ref: 711 N 1 0 0 1 -144 167 Ref: 107 N 1 0 0 1 0 0 EndChar StartChar: uni01EA Encoding: 490 490 Width: 600 HStem: -215 76<265.5 279> -14 100<251 348.5> 497 100<251 333.5> VStem: 21 100<235.5 348> 172 77<-125.5 -103> 479 100<234 335> Ref: 731 N 1 0 0 1 -78 -7 Ref: 79 N 1 0 0 1 0 0 EndChar StartChar: uni01EB Encoding: 491 491 Width: 600 HStem: -217 76<265.5 279> -16 100<255.5 344.5> 350 100<256.5 345.5> VStem: 42 100<179.5 255> 172 77<-127.5 -105> 458 100<179.5 254> Ref: 731 N 1 0 0 1 -78 -9 Ref: 111 N 1 0 0 1 0 0 EndChar StartChar: uni01EC Encoding: 492 492 Width: 600 HStem: -215 76<265.5 279> -14 100<251 348.5> 497 100<251 333.5> 637 80<178 422> VStem: 21 100<235.5 348> 172 77<-125.5 -103> 479 100<234 335> Ref: 175 N 1 0 0 1 0 91 Ref: 490 N 1 0 0 1 0 0 EndChar StartChar: uni01ED Encoding: 493 493 Width: 600 HStem: -217 76<265.5 279> -16 100<255.5 344.5> 350 100<256.5 345.5> 490 80<181 425> VStem: 42 100<179.5 255> 172 77<-127.5 -105> 458 100<179.5 254> Ref: 175 N 1 0 0 1 3 -56 Ref: 491 N 1 0 0 1 0 0 EndChar StartChar: uni01EE Encoding: 494 494 Width: 600 HStem: -50 100<300 332> 234 100<252 258> 483 100<196 374> 676 20<300.5 300.5> VStem: 96 100<446 482> 96 408<486 582> 463 100<140 158> DStem: 375 483 504 486 258 334 385 334 Ref: 711 S 1 0 0 1 -0.5 110 Ref: 439 N 1 0 0 1 0 0 EndChar StartChar: uni01F0 Encoding: 496 496 Width: 600 HStem: -205 100<165 309> 337 100<165 387> 546 20<391 391> VStem: 388 100<-29 337> Ref: 711 S 1 0 0 1 90 -20 Ref: 63166 N 1 0 0 1 0 0 EndChar StartChar: uni01F4 Encoding: 500 500 Width: 600 HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344> VStem: 33 100<246 253 253 317> 450 100<111 180> DStem: 433 821 479 765 300 710 346 653 Ref: 180 S 1 0 0 1 27 141 Ref: 71 N 1 0 0 1 0 0 EndChar StartChar: uni01F5 Encoding: 501 501 Width: 600 HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296> VStem: 33 100<182 255.5> 410 100<-20 35 35 35 181 254.5> DStem: 388 675 434 619 255 564 301 507 Ref: 180 N 1 0 0 1 -18 -5 Ref: 103 N 1 0 0 1 0 0 EndChar StartChar: uni01F6 Encoding: 502 502 Width: 600 Flags: W HStem: 0 100<69 94 367 400> 241 100<195 266> 350 100<439 467> 563 20G<109 195 266 352> VStem: 95 100<100 240 342 483> 266 100<101 240 342 483> 266 152<528 535> 468 100<160 350> Fore 380 100 m 18 440 100 468 123 468 172 c 2 468 270 l 1 468 350 l 1 441 350 l 2 408 350 386 371 386 400 c 0 386 417 395 434 410 443 c 0 419 449 427 450 452 450 c 2 568 450 l 1 568 270 l 1 568 169 l 2 568 110 551.43 69.4463 509 37 c 0 475 11 435 0 390 0 c 10 266 0 l 1 266 100 l 1 266 241 l 1 195 241 l 1 195 100 l 1 195 0 l 1 89 0 l 2 65 0 52 3 43 9 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 99 64 100 89 100 c 2 95 100 l 1 95 483 l 1 62 486 43 504 43 533 c 0 43 550 52 567 67 576 c 0 76 582 84 583 109 583 c 2 195 583 l 1 195 483 l 1 195 341 l 1 266 341 l 1 266 483 l 1 266 583 l 1 352 583 l 2 379 583 388 581 398 574 c 0 410 564 418 549 418 533 c 0 418 504 399 486 366 483 c 1 366 100 l 1 380 100 l 18 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: uni01F8 Encoding: 504 504 Width: 600 HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5> VStem: 73 100<100 394> 431 100<191 483> DStem: 127 765 173 821 260 653 306 710 Ref: 96 N 1 0 0 1 -21 141 Ref: 78 N 1 0 0 1 0 0 EndChar StartChar: uni01F9 Encoding: 505 505 Width: 600 HStem: 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20<101 195> VStem: 95 100<100 282> 410 100<100 288> DStem: 132 618 178 674 265 506 311 563 Ref: 96 N 1 0 0 1 -16 -6 Ref: 110 N 1 0 0 1 0 0 EndChar StartChar: Aringacute Encoding: 506 506 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 630 54<264 301.5> 818 53<264 302> VStem: -21 53 172 53 DStem: 402 1095 448 1039 269 984 315 927 Ref: 180 N 1 0 0 1 -4 415 Ref: 197 N 1 0 0 1 0 0 EndChar StartChar: aringacute Encoding: 507 507 Width: 600 HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 486 54<278 298> 674 53<278 298> VStem: 42 106<118 128> 166 53<604 609> 359 53<604 609> 389 100<135 185 279 304> DStem: 408 951 454 895 275 840 321 783 Ref: 180 N 1 0 0 1 2 271 Ref: 229 N 1 0 0 1 0 0 EndChar StartChar: AEacute Encoding: 508 508 Width: 600 HStem: 0 100<28.7264 53 258 266 368 514> 0 189<556 572> 158 101<204 266> 187 210<428 444> 243 99<368 386> 483 100<140 167 368 493> VStem: -20 218<48 55> 267 100<101 157 343 470> 267 219<260 342> 493 100<396 482> 514 100<100 144> DStem: 168 483 267 471 53 100 203 259 492 821 538 765 359 710 405 653 Ref: 180 N 1 0 0 1 86 141 Ref: 198 N 1 0 0 1 0 0 EndChar StartChar: aeacute Encoding: 509 509 Width: 600 HStem: -16 100<147 163 431 451> 172 86<363 501> 197 89<194 211> 350 100<194 211 431 441> VStem: -13 101<131 147> 255 356<172 189> DStem: 440 674 486 618 307 563 353 506 Ref: 180 N 1 0 0 1 34 -6 Ref: 230 N 1 0 0 1 0 0 EndChar StartChar: Oslashacute Encoding: 510 510 Width: 600 HStem: -14 100<286.5 348.5> 497 100<250 314.5> VStem: 20 100<270 348> 479 100<234.5 309> DStem: 415 835 461 779 282 724 328 667 Ref: 180 S 1 0 0 1 9 155 Ref: 216 N 1 0 0 1 0 0 EndChar StartChar: oslashacute Encoding: 511 511 Width: 600 HStem: -16 100<289 344> 350 100<255.5 309.5> VStem: 42 100<204.5 254.5> 458 100<179.5 229> DStem: 413 688 459 632 280 577 326 520 Ref: 180 S 1 0 0 1 7 8 Ref: 248 N 1 0 0 1 0 0 EndChar StartChar: uni0200 Encoding: 512 512 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> DStem: 33 763 76 820 135 653 178 710 197 763 240 820 299 653 342 710 Ref: 783 N 1 0 0 1 -112 141 Ref: 65 N 1 0 0 1 0 0 EndChar StartChar: uni0201 Encoding: 513 513 Width: 600 HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> VStem: 42 106<118 128> 389 100<135 185 279 304> DStem: 79 616 122 673 181 506 224 563 243 616 286 673 345 506 388 563 Ref: 783 N 1 0 0 1 -66 -6 Ref: 97 N 1 0 0 1 0 0 EndChar StartChar: uni0202 Encoding: 514 514 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 761 68<218.5 273.5> Ref: 728 S 1 0 0 -1 -54 1332 Ref: 65 N 1 0 0 1 0 0 EndChar StartChar: uni0203 Encoding: 515 515 Width: 600 HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 632 68<264.5 319.5> VStem: 42 106<118 128> 389 100<135 185 279 304> Ref: 728 N 1 0 0 -1 -8 1203 Ref: 97 N 1 0 0 1 0 0 EndChar StartChar: uni0204 Encoding: 516 516 Width: 600 HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> DStem: 91 763 134 820 193 653 236 710 255 763 298 820 357 653 400 710 Ref: 783 N 1 0 0 1 -54 141 Ref: 69 N 1 0 0 1 0 0 EndChar StartChar: uni0205 Encoding: 517 517 Width: 600 HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> DStem: 78 616 121 673 180 506 223 563 242 616 285 673 344 506 387 563 Ref: 783 N 1 0 0 1 -67 -6 Ref: 101 N 1 0 0 1 0 0 EndChar StartChar: uni0206 Encoding: 518 518 Width: 600 HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 761 68<276.5 331.5> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> Ref: 728 S 1 0 0 -1 4 1332 Ref: 69 N 1 0 0 1 0 0 EndChar StartChar: uni0207 Encoding: 519 519 Width: 600 HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 632 68<263.5 318.5> Ref: 728 N 1 0 0 -1 -9 1203 Ref: 101 N 1 0 0 1 0 0 EndChar StartChar: uni0208 Encoding: 520 520 Width: 600 HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> VStem: 250 100<100 483> DStem: 87 763 130 820 189 653 232 710 251 763 294 820 353 653 396 710 Ref: 783 N 1 0 0 1 -58 141 Ref: 73 N 1 0 0 1 0 0 EndChar StartChar: uni0209 Encoding: 521 521 Width: 600 HStem: 0 100<128 250 350 472> 337 100<172 250> VStem: 250 100<100 337 337 337> DStem: 87 616 130 673 189 506 232 563 251 616 294 673 353 506 396 563 Ref: 783 N 1 0 0 1 -58 -6 Ref: 305 N 1 0 0 1 0 0 EndChar StartChar: uni020A Encoding: 522 522 Width: 600 HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> 761 68<272.5 327.5> VStem: 250 100<100 483> Ref: 728 S 1 0 0 -1 0 1332 Ref: 73 N 1 0 0 1 0 0 EndChar StartChar: uni020B Encoding: 523 523 Width: 600 HStem: 0 100<128 250 350 472> 337 100<172 250> 632 68<272.5 327.5> VStem: 250 100<100 337 337 337> Ref: 728 N 1 0 0 -1 0 1203 Ref: 305 N 1 0 0 1 0 0 EndChar StartChar: uni020C Encoding: 524 524 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> VStem: 21 100<235.5 348> 479 100<234 335> DStem: 87 763 130 820 189 653 232 710 251 763 294 820 353 653 396 710 Ref: 783 N 1 0 0 1 -58 141 Ref: 79 N 1 0 0 1 0 0 EndChar StartChar: uni020D Encoding: 525 525 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> VStem: 42 100<179.5 255> 458 100<179.5 254> DStem: 90 616 133 673 192 506 235 563 254 616 297 673 356 506 399 563 Ref: 783 N 1 0 0 1 -55 -6 Ref: 111 N 1 0 0 1 0 0 EndChar StartChar: uni020E Encoding: 526 526 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> 761 68<272.5 327.5> VStem: 21 100<235.5 348> 479 100<234 335> Ref: 728 S 1 0 0 -1 0 1332 Ref: 79 N 1 0 0 1 0 0 EndChar StartChar: uni020F Encoding: 527 527 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 632 68<275.5 330.5> VStem: 42 100<179.5 255> 458 100<179.5 254> Ref: 728 N 1 0 0 -1 3 1203 Ref: 111 N 1 0 0 1 0 0 EndChar StartChar: uni0210 Encoding: 528 528 Width: 600 HStem: 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306> VStem: 94 100<100 222 322 483> 416 106<383 429.5> DStem: 73 763 116 820 175 653 218 710 237 763 280 820 339 653 382 710 Ref: 783 S 1 0 0 1 -72 141 Ref: 82 N 1 0 0 1 0 0 EndChar StartChar: uni0211 Encoding: 529 529 Width: 600 HStem: 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447> VStem: 178 100<100 247> DStem: 99 616 142 673 201 506 244 563 263 616 306 673 365 506 408 563 Ref: 783 N 1 0 0 1 -46 -6 Ref: 114 N 1 0 0 1 0 0 EndChar StartChar: uni0212 Encoding: 530 530 Width: 600 HStem: 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306> 761 68<226.5 281.5> VStem: 94 100<100 222 322 483> 416 106<383 429.5> Ref: 728 S 1 0 0 -1 -46 1332 Ref: 82 N 1 0 0 1 0 0 EndChar StartChar: uni0213 Encoding: 531 531 Width: 600 HStem: 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447> 632 68<284.5 339.5> VStem: 178 100<100 247> Ref: 728 N 1 0 0 -1 12 1203 Ref: 114 N 1 0 0 1 0 0 EndChar StartChar: uni0214 Encoding: 532 532 Width: 600 HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> VStem: 71 100<205 483> 429 100<196 205 205 483> DStem: 87 763 130 820 189 653 232 710 251 763 294 820 353 653 396 710 Ref: 783 N 1 0 0 1 -58 141 Ref: 85 N 1 0 0 1 0 0 EndChar StartChar: uni0215 Encoding: 533 533 Width: 600 HStem: -13 100<253 300.5> 337 100<375 410> VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337> DStem: 81 616 124 673 183 506 226 563 245 616 288 673 347 506 390 563 Ref: 783 N 1 0 0 1 -64 -6 Ref: 117 N 1 0 0 1 0 0 EndChar StartChar: uni0216 Encoding: 534 534 Width: 600 HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 761 68<272.5 327.5> VStem: 71 100<205 483> 429 100<196 205 205 483> Ref: 728 S 1 0 0 -1 0 1332 Ref: 85 N 1 0 0 1 0 0 EndChar StartChar: uni0217 Encoding: 535 535 Width: 600 HStem: -13 100<253 300.5> 337 100<375 410> 632 68<266.5 321.5> VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337> Ref: 728 N 1 0 0 -1 -6 1203 Ref: 117 N 1 0 0 1 0 0 EndChar StartChar: Scommaaccent Encoding: 536 536 Width: 600 Flags: HMW HStem: -14 100<282 339> 497 100<267.5 324.5> VStem: 82 104<410.5 442.5> 434 104<140.5 172.5> Fore 517 531 m 2 517 443 l 2 517 415 515 407 508 397 c 0 498 384 483 376 468 376 c 0 454 376 440 382 432 390 c 0 425 398 425 398 418 430 c 0 409 470 361 497 299 497 c 0 236 497 186 464 186 421 c 0 186 400 201 377 223 366 c 0 243 356 248 354 323 340 c 0 410 324 448 310 479 285 c 0 519 253 538 212 538 160 c 0 538 56 446 -14 309 -14 c 0 255 -14 202 -1 153 25 c 1 136 5 129 1 113 1 c 0 78 1 62 22 62 67 c 2 62 133 l 2 62 158 64 169 71 179 c 0 81 192 96 199 112 199 c 0 126 199 139 194 148 185 c 0 155 178 155 178 163 151 c 0 173 115 236 86 302 86 c 0 376 86 434 119 434 162 c 0 434 183 420 203 398 215 c 0 377 226 361 230 293 242 c 0 228 253 196 263 164 281 c 0 113 310 82 363 82 420 c 0 82 521 175 597 299 597 c 0 350 597 394 586 429 564 c 1 439 589 448 597 468 597 c 0 485 597 502 588 510 574 c 0 516 565 517 557 517 531 c 2 338 -126 m 2 256 -252 l 2 243 -272 234 -278 220 -278 c 0 200 -278 183 -262 183 -243 c 0 183 -234 187 -223 195 -211 c 2 277 -85 l 2 290 -65 299 -59 315 -59 c 0 335 -59 351 -76 351 -96 c 0 351 -103 346 -114 338 -126 c 2 EndSplineSet EndChar StartChar: scommaaccent Encoding: 537 537 Width: 600 Flags: HMW HStem: -16 100<275.5 332> 350 100<275.5 322> VStem: 92 110<310.5 324> 417 110<115.5 133.5> Fore 409 312 m 2 404 321 l 1 376 341 343 350 301 350 c 0 250 350 202 333 202 315 c 0 202 306 212 297 228 291 c 0 242 286 248 285 312 276 c 0 387 266 427 255 457 238 c 0 501 214 527 171 527 125 c 0 527 43 433 -16 304 -16 c 0 247 -16 196 -6 156 13 c 1 145 4 137 1 124 1 c 0 106 1 90 9 80 25 c 0 75 34 73 43 73 67 c 2 73 100 l 2 73 127 75 136 83 146 c 0 93 160 107 167 124 167 c 0 150 167 166 153 175 123 c 1 204 97 246 84 300 84 c 0 364 84 417 104 417 127 c 0 417 140 404 154 383 162 c 0 366 169 345 173 291 179 c 0 151 194 92 234 92 313 c 0 92 393 178 450 298 450 c 0 347 450 388 442 427 424 c 1 435 443 444 450 459 450 c 0 491 450 506 430 506 384 c 2 506 347 l 2 506 321 504 311 497 301 c 0 487 289 471 281 456 281 c 0 435 281 421 290 409 312 c 2 338 -126 m 2 256 -252 l 2 243 -272 234 -278 220 -278 c 0 200 -278 183 -262 183 -243 c 0 183 -234 187 -223 195 -211 c 2 277 -85 l 2 290 -65 299 -59 315 -59 c 0 335 -59 351 -76 351 -96 c 0 351 -103 346 -114 338 -126 c 2 EndSplineSet EndChar StartChar: Tcommaaccent Encoding: 538 538 Width: 600 Flags: HMW HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349> VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483> Fore 349 483 m 1 349 100 l 1 415 100 l 2 442 100 450 98 460 91 c 0 473 81 481 66 481 50 c 0 481 33 472 16 457 7 c 0 450 3 435 0 415 0 c 2 184 0 l 2 161 0 148 3 139 10 c 0 126 19 118 35 118 50 c 0 118 67 127 84 142 93 c 0 151 99 158 100 184 100 c 2 249 100 l 1 249 483 l 1 142 483 l 1 142 390 l 2 142 363 140 355 133 345 c 0 123 332 108 324 92 324 c 0 75 324 58 333 49 348 c 0 44 357 42 367 42 390 c 2 42 583 l 1 558 583 l 1 558 390 l 2 558 362 557 355 549 345 c 0 539 332 524 324 508 324 c 0 491 324 474 334 465 348 c 0 460 357 458 367 458 390 c 2 458 483 l 1 349 483 l 1 338 -126 m 2 256 -252 l 2 243 -272 234 -278 220 -278 c 0 200 -278 183 -262 183 -243 c 0 183 -234 187 -223 195 -211 c 2 277 -85 l 2 290 -65 299 -59 315 -59 c 0 335 -59 351 -76 351 -96 c 0 351 -103 346 -114 338 -126 c 2 EndSplineSet EndChar StartChar: tcommaaccent Encoding: 539 539 Width: 600 Flags: HMW HStem: -16 100<281 325> 337 100<79 114 214 395> 571 20<156 172.5> VStem: 114 100<130.5 141 141 337 437 525> Fore 214 337 m 1 214 141 l 2 214 120 216 111 222 104 c 0 234 91 262 84 300 84 c 0 353 84 401 95 446 118 c 0 463 127 470 129 481 129 c 0 508 129 529 106 529 78 c 0 529 54 517 41 479 24 c 0 430 1 351 -16 299 -16 c 4 185 -16 114 37 114 122 c 2 114 337 l 1 79 337 l 2 54 337 43 339 33 347 c 0 21 356 13 372 13 387 c 0 13 404 22 421 37 430 c 0 46 436 53 437 79 437 c 2 114 437 l 1 114 525 l 2 114 551 116 561 124 571 c 0 133 583 148 591 164 591 c 0 181 591 198 582 207 567 c 0 213 558 214 551 214 525 c 2 214 437 l 1 395 437 l 2 422 437 430 435 441 428 c 1 453 418 461 403 461 387 c 0 461 370 452 353 437 344 c 0 429 339 417 337 395 337 c 2 214 337 l 1 338 -126 m 2 256 -252 l 2 243 -272 234 -278 220 -278 c 0 200 -278 183 -262 183 -243 c 0 183 -234 187 -223 195 -211 c 2 277 -85 l 2 290 -65 299 -59 315 -59 c 0 335 -59 351 -76 351 -96 c 0 351 -103 346 -114 338 -126 c 2 EndSplineSet EndChar StartChar: uni021E Encoding: 542 542 Width: 600 HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5> 706 20<303 303> VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483> Ref: 711 N 1 0 0 1 2 140 Ref: 72 N 1 0 0 1 0 0 EndChar StartChar: uni021F Encoding: 543 543 Width: 600 HStem: 0 20 350 100<306 336.5> 733 20<297 297> VStem: 95 100<100 283 389 524 524 524> 409 100<100 271 271 284> Ref: 711 N 1 0 0 1 -4 167 Ref: 104 N 1 0 0 1 0 0 EndChar StartChar: uni0224 Encoding: 548 548 Width: 600 Flags: W HStem: -203 100<345 361> 0 100<202 426> 483 100<196 374> VStem: 96 100<389.566 482> 96 408<486 582> 427 100<-27 -1 101 181> DStem: 375 483 504 486 73 100 201 100 Fore 427 0 m 1 73 0 l 1 73 100 l 1 375 483 l 1 196 483 l 1 196 413 l 2 196 386 194 377 187 368 c 0 177 355 162 347 146 347 c 0 129 347 113 356 103 371 c 0 98 380 96 388 96 413 c 2 96 583 l 1 504 583 l 1 504 486 l 1 201 100 l 1 427 100 l 1 427 172 l 2 427 197 429 208 436 218 c 0 446 230 461 238 477 238 c 0 494 238 511 229 520 214 c 0 526 205 527 198 527 172 c 2 527 -14 l 2 527 -121 451 -203 352 -203 c 0 275 -203 230 -179 230 -139 c 0 230 -112 253 -89 278 -89 c 0 284 -89 287 -90 301 -95 c 0 317 -100 333 -103 349 -103 c 0 395 -103 427 -67 427 -14 c 2 427 0 l 1 EndSplineSet MinimumDistance: x19,-1 x0,2 x0,1 EndChar StartChar: uni0225 Encoding: 549 549 Width: 600 Flags: W HStem: -203 100<325 348> 0 100<245 418> 337 100<197 345> VStem: 85 434<0 83> 97 100<309 336> 97 409<356 436> 419 100<-27 -1> DStem: 346 337 506 356 85 83 244 100 Fore 512 130 m 0 519 119 519 107 519 88 c 2 519 -14 l 2 519 -121 443 -203 344 -203 c 0 267 -203 222 -179 222 -139 c 0 222 -112 245 -89 270 -89 c 0 276 -89 279 -90 293 -95 c 0 309 -100 325 -103 341 -103 c 0 387 -103 419 -67 419 -14 c 2 419 0 l 1 85 0 l 1 85 83 l 1 346 337 l 1 197 337 l 1 197 328 l 2 197 301 195 293 188 283 c 0 178 270 163 262 147 262 c 0 130 262 113 271 104 286 c 0 99 295 97 305 97 328 c 2 97 437 l 1 506 437 l 1 506 356 l 1 244 100 l 1 419 100 l 1 421 135 439 154 469 154 c 0 486 154 503 145 512 130 c 0 EndSplineSet MinimumDistance: x1,-1 y11,9 x9,11 x9,10 EndChar StartChar: uni0226 Encoding: 550 550 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 637 120<235.067 250> VStem: 186 120<695 701> Ref: 729 N 1 0 0 1 -54 103 Ref: 65 N 1 0 0 1 0 0 EndChar StartChar: uni0227 Encoding: 551 551 Width: 600 HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 490 120<281.067 296> VStem: 42 106<118 128> 232 120<548 554> 389 100<135 185 279 304> Ref: 729 S 1 0 0 1 -8 -44 Ref: 97 N 1 0 0 1 0 0 EndChar StartChar: uni0228 Encoding: 552 552 Width: 600 HStem: -221 70<310.5 330.5> 0 100<61 93 195 450 299.5 319> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 280 70<-33 8> 355 70<-134 -115.5> 428 100<415 483> 450 100<100 171> Ref: 184 N 1 0 0 1 18 8 Ref: 69 N 1 0 0 1 0 0 EndChar StartChar: uni0229 Encoding: 553 553 Width: 600 HStem: -237 70<292.5 312.5> -16 100<262 329 281.5 301> 172 88<145 439> 350 100<255.5 328.5> VStem: 262 70<-49 -8> 337 70<-150 -131.5> Ref: 184 N 1 0 0 1 0 -8 Ref: 101 N 1 0 0 1 0 0 EndChar StartChar: uni022A Encoding: 554 554 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> 838 80<178 422> VStem: 21 100<235.5 348> 229 120 479 100<234 335> Ref: 175 N 1 0 0 1 0 292 Ref: 214 N 1 0 0 1 0 0 EndChar StartChar: uni022B Encoding: 555 555 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 694 80<178 422> VStem: 42 100<179.5 255> 250 120 458 100<179.5 254> Ref: 175 N 1 0 0 1 0 148 Ref: 246 N 1 0 0 1 0 0 EndChar StartChar: uni022C Encoding: 556 556 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> 730 69<225 241> 839 80<224 468> VStem: 21 100<235.5 348> 479 100<234 335> Ref: 175 N 1 0 0 1 46 293 Ref: 213 N 1 0 0 1 0 0 EndChar StartChar: uni022D Encoding: 557 557 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 587 69<225 241> 696 80<224 468> VStem: 42 100<179.5 255> 458 100<179.5 254> Ref: 175 N 1 0 0 1 46 150 Ref: 245 N 1 0 0 1 0 0 EndChar StartChar: uni022E Encoding: 558 558 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> 637 120<289.067 304> VStem: 21 100<235.5 348> 240 120<695 701> 479 100<234 335> Ref: 729 N 1 0 0 1 0 103 Ref: 79 N 1 0 0 1 0 0 EndChar StartChar: uni022F Encoding: 559 559 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 490 120<292.067 307> VStem: 42 100<179.5 255> 243 120<548 554> 458 100<179.5 254> Ref: 729 N 1 0 0 1 3 -44 Ref: 111 N 1 0 0 1 0 0 EndChar StartChar: uni0230 Encoding: 560 560 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> 637 120<289.067 304> 797 80<178 422> VStem: 21 100<235.5 348> 240 120<695 701> 479 100<234 335> Ref: 175 N 1 0 0 1 0 251 Ref: 558 N 1 0 0 1 0 0 EndChar StartChar: uni0231 Encoding: 561 561 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 490 120<292.067 307> 650 80<181 425> VStem: 42 100<179.5 255> 243 120<548 554> 458 100<179.5 254> Ref: 175 N 1 0 0 1 3 104 Ref: 559 N 1 0 0 1 0 0 EndChar StartChar: uni0232 Encoding: 562 562 Width: 600 HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> 637 80<178 422> VStem: 250 100<100 245> Ref: 175 N 1 0 0 1 0 91 Ref: 89 N 1 0 0 1 0 0 EndChar StartChar: uni0233 Encoding: 563 563 Width: 600 HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> 490 80<178 422> Ref: 175 N 1 0 0 1 0 -56 Ref: 121 N 1 0 0 1 0 0 EndChar StartChar: uni0250 Encoding: 592 592 Width: 600 Flags: W HStem: -13 100<299 336> 149 92<315 347> 353 100<91 124 379 395> VStem: 124 100<133 158 252 302> 465 106<309 319> Ref: 97 S -1 0 0 -1 613 437 EndChar StartChar: uni0251 Encoding: 593 593 Width: 600 Flags: W HStem: -14 100<257 289> 0 100<531 561> 0 467<471.156 483> 351 100<273 289> VStem: 33 100<210 226> 431 100<210 226 401.032 423.889> Fore 281 351 m 0 233 351 200 339 172 311 c 0 147 286 133 252 133 219 c 0 133 185 143 154 172 126 c 24 206 94 234 86 282 86 c 0 330 86 364 99 392 126 c 0 417 151 431 185 431 217 c 0 431 253 417 286 392 311 c 0 363 339 331 351 281 351 c 0 531 401 m 2 531 100 l 1 547 100 l 2 574 100 583 98 593 91 c 0 605 81 613 66 613 50 c 0 613 33 604 16 589 7 c 0 581 2 570 0 547 0 c 2 431 0 l 1 431 35 l 1 378 -1 339 -14 280 -14 c 0 205 -14 149 7 103 51 c 0 57 96 33 153 33 219 c 0 33 284 57 342 103 386 c 0 149 430 205 451 281 451 c 0 341 451 388 435 431 401 c 1 431 427 433 437 441 447 c 0 450 459 465 467 481 467 c 0 498 467 515 458 524 443 c 0 530 434 531 427 531 401 c 2 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: uni0252 Encoding: 594 594 Width: 600 Flags: W HStem: -18 467<163 174.844> 363 100<85 115 357 373 357 389> VStem: 513 100<25.1109 47.9685 223 239 223 239> Ref: 593 S -1 0 0 -1 646 449 EndChar StartChar: uni0253 Encoding: 595 595 Width: 600 Flags: W HStem: -14 100<312 344> 0 100<40 74> 351 100<312 344> 538 100<235.642 264> VStem: 74 100<210 226 402 466> 471 100<210 226> Fore 323 351 m 0 274 351 241 339 213 311 c 0 188 286 174 253 174 220 c 0 174 141 235 86 323 86 c 0 370 86 404 99 432 126 c 0 457 151 471 185 471 219 c 0 471 252 456 286 432 311 c 1 403 339 371 351 323 351 c 0 74 100 m 1 74 459 l 2 74 558 152 638 248 638 c 0 323 638 368 615 368 577 c 0 368 547 347 524 320 524 c 0 313 524 308 525 296 529 c 0 280 535 265 538 247 538 c 0 207 538 174 501 174 456 c 2 174 401 l 1 217 435 264 451 324 451 c 0 399 451 455 430 501 386 c 0 547 342 571 284 571 218 c 0 571 153 547 96 501 51 c 0 455 7 399 -14 325 -14 c 0 266 -14 226 -1 174 35 c 1 174 0 l 1 58 0 l 2 34 0 21 3 12 9 c 0 0 19 -8 34 -8 50 c 0 -8 67 1 84 16 93 c 0 25 99 33 100 58 100 c 2 74 100 l 1 EndSplineSet MinimumDistance: x18,-1 EndChar StartChar: uni0254 Encoding: 596 596 Width: 600 Flags: W HStem: -16 100<269 344.5> 350 100<287 334.5> VStem: 465 100<176.5 226> Ref: 99 N -1 0 0 1 619 0 EndChar StartChar: uni0256 Encoding: 598 598 Width: 600 Flags: W HStem: -203 100<605 625> -14 100<257 289> 351 100<273 289> 525 99<392 430> VStem: 33 100<213 229> 431 100<-27 34 213 229 402 525> Fore 281 351 m 0 233 351 200 339 172 311 c 0 147 286 133 252 133 219 c 0 133 185 143 154 172 126 c 24 206 94 234 86 282 86 c 0 330 86 364 99 392 126 c 0 417 151 431 185 431 217 c 0 431 253 417 286 392 311 c 0 363 339 331 351 281 351 c 0 531 624 m 1 531 -14 l 2 531 -67 563 -103 609 -103 c 0 625 -103 641 -100 657 -95 c 0 671 -90 674 -89 680 -89 c 0 705 -89 728 -112 728 -139 c 0 728 -179 683 -203 606 -203 c 0 507 -203 431 -121 431 -14 c 2 431 35 l 1 378 -1 339 -14 280 -14 c 0 205 -14 149 7 103 51 c 0 57 96 33 153 33 219 c 0 33 284 57 342 103 386 c 0 149 430 205 451 281 451 c 0 341 451 388 435 431 401 c 1 431 525 l 1 415 525 l 2 389 525 379 527 369 534 c 0 357 544 349 559 349 575 c 0 349 591 358 608 373 617 c 0 382 623 389 624 415 624 c 2 531 624 l 1 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: uni0257 Encoding: 599 599 Width: 600 Flags: W HStem: -14 100<273 289> 0 100<532 561> 351 100<273 289> 538 100<593 615> VStem: 33 100<210 226> 431 100<210 226 402 466> Fore 281 351 m 0 233 351 200 339 172 311 c 0 147 286 133 252 133 219 c 0 133 185 147 152 172 126 c 1 200 99 234 86 282 86 c 0 330 86 364 99 392 126 c 0 417 151 431 185 431 217 c 0 431 253 417 286 392 311 c 0 363 339 331 351 281 351 c 0 431 401 m 1 431 459 l 2 431 558 509 638 605 638 c 0 680 638 725 615 725 577 c 0 725 547 704 524 677 524 c 0 670 524 665 525 653 529 c 0 637 535 622 538 604 538 c 0 564 538 531 501 531 456 c 2 531 100 l 1 547 100 l 2 574 100 583 98 593 91 c 0 605 81 613 66 613 50 c 0 613 33 604 16 589 7 c 0 581 2 570 0 547 0 c 2 431 0 l 1 431 35 l 1 378 -1 339 -14 280 -14 c 0 205 -14 149 7 103 51 c 0 57 96 33 153 33 219 c 0 33 284 57 342 103 386 c 0 149 430 205 451 281 451 c 0 341 451 388 435 431 401 c 1 EndSplineSet MinimumDistance: x15,-1 EndChar StartChar: uni0258 Encoding: 600 600 Width: 600 Flags: W HStem: -16 100<254 321> 172 88<144 438> 350 100<254.5 327.5> Ref: 101 N -1 0 0 1 583 0 EndChar StartChar: uni0259 Encoding: 601 601 Width: 600 Flags: W HStem: -16 100<254.5 327.5> 174 88<144 438> 350 100<254 321> Ref: 101 N -1 0 0 -1 583 434 EndChar StartChar: uni025B Encoding: 603 603 Width: 600 Flags: W HStem: -16 100<286 320> 1 166<474 480> 178 100<286 365.108> 350 100<286 320> VStem: 73 110<121 129> 94 110<310 318> Ref: 1079 N -1 0 0 1 600 0 EndChar StartChar: uni025C Encoding: 604 604 Width: 600 Flags: W HStem: -16 100<280 314> 1 166<120 126> 178 100<234.892 314> 350 100<280 314> VStem: 396 110<310 318> 417 110<121 129> Ref: 1079 N 1 0 0 1 0 0 EndChar StartChar: uni025F Encoding: 607 607 Width: 600 Flags: W HStem: -205 100<165 309> 0 100<165 387 488 517> 337 100<165 387> VStem: 388 100<-29 0 100 337> Fore 388 1.37836e-07 m 1 320.667 2.24527e-07 186 0 186 0 c 2 161 0 150 2 141 9 c 0 128 19 120 34 120 50 c 0 120 67 129 83 144 93 c 0 153 99 161 100 186 100 c 2 388 100 l 1 388 337 l 1 186 337 l 2 161 337 150 339 141 347 c 1 128 356 120 372 120 387 c 0 120 404 129 421 144 430 c 0 153 436 160 437 186 437 c 2 488 437 l 1 488 100 l 1 498 100 l 2 524 100 534 98 544 91 c 0 557 81 564 66 564 50 c 0 564 33 555 16 540 7 c 0 532 2 520 0 498 0 c 2 488 9.59635e-06 l 1 488 -20 l 2 488 -125 406 -205 297 -205 c 2 183 -205 l 2 158 -205 147 -203 138 -195 c 1 125 -186 117 -170 117 -155 c 0 117 -138 127 -121 141 -112 c 0 150 -106 158 -105 183 -105 c 2 294 -105 l 2 351 -105 388 -72 388 -20 c 2 388 1.37836e-07 l 1 EndSplineSet MinimumDistance: x13,-1 x12,14 y14,12 y14,13 EndChar StartChar: uni0260 Encoding: 608 608 Width: 600 Flags: W HStem: -205 100<193 321> -14 100<257 273> 351 100<257 273> 538 100<577 593> VStem: 33 100<211 227> 410 100<-29 34 211 227 402 467> Fore 271 351 m 0 195 351 133 292 133 219 c 0 133 145 195 86 271 86 c 0 347 86 410 145 410 217 c 0 410 292 349 351 271 351 c 0 410 401 m 1 410 459 l 2 410 558 488 638 584 638 c 0 659 638 704 615 704 577 c 0 704 547 683 524 656 524 c 0 649 524 644 525 632 529 c 0 616 535 601 538 583 538 c 0 543 538 510 501 510 456 c 2 510 -20 l 2 510 -126 428 -205 319 -205 c 2 207 -205 l 2 182 -205 171 -203 162 -195 c 1 149 -186 141 -171 141 -155 c 0 141 -138 150 -121 165 -112 c 0 174 -106 181 -105 207 -105 c 2 316 -105 l 2 373 -105 410 -72 410 -20 c 2 410 35 l 1 364 1 321 -14 269 -14 c 0 135 -14 33 86 33 218 c 0 33 351 135 451 269 451 c 0 323 451 371 434 410 401 c 1 EndSplineSet MinimumDistance: x11,-1 EndChar StartChar: uni0261 Encoding: 609 609 Width: 600 Flags: W HStem: -205 100<193 321> -14 100<257 273> 351 100<257 273> 401 66<450.156 465> VStem: 33 100<211 227> 410 100<-29 34 211 227 401.032 423.889> 510 0<396 400> Fore 410 396 m 5 510 396 l 5 510 401 l 6 510 427 509 434 503 443 c 4 494 458 477 467 460 467 c 4 444 467 429 459 420 447 c 4 412 437 410 427 410 401 c 6 410 396 l 5 510 401 m 1 510 -20 l 2 510 -126 428 -205 319 -205 c 2 207 -205 l 2 182 -205 171 -203 162 -195 c 1 149 -186 141 -171 141 -155 c 0 141 -138 150 -121 165 -112 c 0 174 -106 181 -105 207 -105 c 2 316 -105 l 2 373 -105 410 -72 410 -20 c 2 410 35 l 1 364 1 321 -14 269 -14 c 0 135 -14 33 86 33 218 c 0 33 351 135 451 269 451 c 0 323 451 371 434 410 401 c 1 510 401 l 1 271 351 m 0 195 351 133 292 133 219 c 0 133 145 195 86 271 86 c 0 347 86 410 145 410 217 c 0 410 292 349 351 271 351 c 0 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni0265 Encoding: 613 613 Width: 600 Flags: W HStem: -15 100<257.5 288> 415 20 VStem: 399 100<-89 46 -89 -89 151 164 152 335 164 335> Ref: 104 S -1 0 0 -1 594 435 EndChar StartChar: uni0266 Encoding: 614 614 Width: 600 Flags: W HStem: 0 100<71 95 196 215 387 408 509 535> 350 100<316 342> 538 100<263 279> VStem: 95 100<100 283 390 464> 409 100<100 288> Fore 95 100 m 1 95 459 l 2 95 558 173 638 269 638 c 0 344 638 389 615 389 577 c 0 389 547 368 524 341 524 c 0 334 524 329 525 317 529 c 0 301 535 286 538 268 538 c 0 228 538 195 501 195 456 c 2 195 389 l 1 235 430 280 450 332 450 c 0 438 450 509 384 509 284 c 2 509 100 l 1 515 100 l 2 542 100 551 98 561 91 c 0 573 81 581 66 581 50 c 0 581 33 572 16 557 7 c 0 549 2 536 0 515 0 c 2 403 0 l 2 379 0 366 3 357 9 c 0 344 19 336 34 336 50 c 0 336 67 345 83 360 93 c 0 369 98 378 100 403 100 c 2 409 100 l 1 409 271 l 2 409 305 405 317 388 331 c 0 371 345 352 350 321 350 c 0 274 350 252 338 195 283 c 1 195 100 l 1 201 100 l 2 229 100 237 98 247 91 c 0 260 81 268 66 268 50 c 0 268 33 259 17 244 7 c 0 236 2 222 0 201 0 c 2 89 0 l 2 65 0 53 3 44 9 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 98 64 100 89 100 c 2 95 100 l 1 EndSplineSet MinimumDistance: x10,-1 EndChar StartChar: uni0267 Encoding: 615 615 Width: 600 Flags: W HStem: 0 20 350 100<306 336.5> VStem: 95 100<100 283 389 524 524 524> 409 100<100 271 271 284> Ref: 104 N 1 0 0 1 0 0 EndChar StartChar: uni0268 Encoding: 616 616 Width: 600 Flags: W HStem: 0 100<110 249 351 478> 154 100<158 249 350 446> 337 100<158 249> 518 105<219 335> VStem: 105 390<194.191 208> 218 118<519 622> 250 100<100 154 254 337> Fore 336 623 m 1 336 518 l 1 218 518 l 1 218 623 l 1 336 623 l 1 250 154 m 5 171 154 l 6 146 154 135 156 126 163 c 4 113 173 105 188 105 204 c 4 105 221 114 237 129 247 c 4 138 253 146 254 171 254 c 6 250 254 l 5 250 337 l 1 172 337 l 2 147 337 135 339 126 347 c 1 113 356 105 371 105 387 c 0 105 404 114 421 129 430 c 0 138 436 146 437 172 437 c 2 350 437 l 1 350 254 l 5 429 254 l 6 455 254 465 252 475 245 c 4 488 235 495 220 495 204 c 4 495 187 486 170 471 161 c 4 463 156 451 154 429 154 c 6 350 154 l 5 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 530 81 538 66 538 50 c 0 538 33 529 17 514 7 c 0 507 3 492 0 472 0 c 2 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 34 62 50 c 0 62 67 71 84 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 154 l 5 EndSplineSet MinimumDistance: x17,-1 x16,18 y18,16 y18,17 EndChar StartChar: uni0269 Encoding: 617 617 Width: 600 Flags: W HStem: -16 100<424 441> 337 100<153 250> VStem: 250 100<160 337> Fore 350 437 m 1 350 173 l 2 350 120 382 84 428 84 c 0 444 84 460 87 476 92 c 0 490 97 493 98 499 98 c 0 524 98 547 75 547 48 c 0 547 8 502 -16 425 -16 c 0 326 -16 250 66 250 173 c 2 250 337 l 1 172 337 l 2 147 337 135 339 126 347 c 1 113 356 105 371 105 387 c 0 105 404 114 421 129 430 c 0 138 436 146 437 172 437 c 2 350 437 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni026A Encoding: 618 618 Width: 600 Flags: W HStem: 0 100<158 249 351 430> 337 100<158 249 351 446> VStem: 250 100<100 337> Fore 350 337 m 1 350 100 l 1 424 100 l 2 451 100 459 98 469 91 c 0 483 81 490 66 490 50 c 0 490 17 468 0 424 0 c 2 176 0 l 2 152 0 140 3 131 10 c 0 118 19 110 35 110 50 c 0 110 67 119 84 134 93 c 0 143 99 150 100 176 100 c 2 250 100 l 1 250 337 l 1 176 337 l 2 151 337 140 339 131 346 c 0 118 356 110 371 110 387 c 0 110 404 119 421 134 430 c 0 143 436 150 437 176 437 c 2 424 437 l 2 451 437 459 435 469 428 c 0 483 418 490 403 490 387 c 0 490 370 481 353 466 344 c 0 458 339 447 337 424 337 c 2 350 337 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni026B Encoding: 619 619 Width: 600 Flags: W HStem: 0 100<110 249 351 490> 179 105<388 393> 281 104<211 215> 524 100<158 249> VStem: 250 100<100 186 380 524> Fore 250 379 m 1 250 524 l 1 172 524 l 2 147 524 135 526 126 534 c 1 112 543 105 558 105 574 c 0 105 592 114 608 129 617 c 0 138 623 147 624 172 624 c 2 350 624 l 1 350 307 l 1 368 292 380 284 389 284 c 0 400 284 413 297 438 330 c 0 458 357 468 364 488 364 c 0 515 364 538 341 538 314 c 0 538 294 530 280 497 241 c 0 460 197 430 179 391 179 c 0 378 179 364 182 350 187 c 1 350 100 l 1 472 100 l 2 499 100 507 98 517 91 c 0 530 81 538 66 538 50 c 0 538 33 529 17 514 7 c 0 507 3 492 0 472 0 c 2 128 0 l 2 105 0 91 3 83 10 c 0 70 19 62 35 62 50 c 0 62 67 71 84 86 93 c 0 95 99 102 100 128 100 c 2 250 100 l 1 250 257 l 1 231 273 219 281 212 281 c 0 202 281 192 272 165 239 c 0 139 207 131 201 113 201 c 0 86 201 62 225 62 252 c 0 62 271 72 290 101 322 c 0 140 367 172 385 213 385 c 0 226 385 238 384 250 379 c 1 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: uni026D Encoding: 621 621 Width: 600 Flags: W HStem: -203 100<424 441> 524 100<153 250> VStem: 250 100<-27 524> Fore 350 624 m 1 350 -14 l 6 350 -67 382 -103 428 -103 c 0 444 -103 460 -100 476 -95 c 0 490 -90 493 -89 499 -89 c 0 524 -89 547 -112 547 -139 c 0 547 -179 502 -203 425 -203 c 0 326 -203 250 -121 250 -14 c 6 250 524 l 1 172 524 l 2 147 524 135 526 126 534 c 1 112 543 105 558 105 574 c 0 105 592 114 608 129 617 c 0 138 623 147 624 172 624 c 2 350 624 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni026F Encoding: 623 623 Width: 600 Flags: W HStem: -13 100<170 177 376 388> 0 20<463 556> 337 99.033<31 41 237.633 251.969 447.955 462.969 564 576> 416 21<47 141 258 352 468 556> VStem: -19 160<385 389> 41 100<116 337> 192 160<385 389> 463 100<132 337 132 337> Ref: 109 S -1 0 0 -1 604 437 EndChar StartChar: uni0270 Encoding: 624 624 Width: 600 Flags: W HStem: -205 21G<463 556> -13 100<171 189 377 389> 337 99.8486<40 40 237.633 251.969 447.872 462.969 564 576> 417 20G<47 141 258 352 468 556> VStem: 41 100<115 337> 252 100<132 337> 463 100<-105 23 132 337> 463 160<-157 -153> Fore 463 -205 m 1 463 24 l 1 428 -4 408 -13 378 -13 c 0 339 -13 306 3 276 36 c 1 245 2 213 -13 172 -13 c 0 97 -13 41 43 41 118 c 2 41 337 l 1 3 337 -19 355 -19 387 c 0 -19 420 3 437 47 437 c 2 141 437 l 1 141 126 l 2 141 97 150 87 176 87 c 0 202 87 218 96 252 132 c 1 252 337 l 1 214 337 192 356 192 387 c 0 192 404 201 420 216 430 c 0 224 435 237 437 258 437 c 2 352 437 l 1 352 126 l 2 352 98 362 87 387 87 c 0 414 87 433 98 463 132 c 1 463 337 l 1 424 337 402 355 402 387 c 0 402 404 411 420 426 430 c 0 434 435 447 437 468 437 c 2 556 437 l 2 580 437 593 434 602 427 c 0 615 418 623 402 623 387 c 0 623 355 601 337 563 337 c 1 563 -105 l 1 601 -106 623 -124 623 -155 c 0 623 -181 606 -200 577 -203 c 0 566 -205 564 -205 556 -205 c 2 463 -205 l 1 EndSplineSet EndChar StartChar: uni0271 Encoding: 625 625 Width: 600 Flags: W HStem: -203 100<381 397> 0 21G<48 136 252 346> 0.967046 99.033<28 40 141.031 156.045 352.031 366.367> 350 100<216 228 427 434> 417 20G<48 141> VStem: 41 100<100 305> 252 100<100 305> 252 160<40.1911 53> 463 100<-27 325> Fore 563 319 m 2 563 -14 l 2 563 -121 487 -203 388 -203 c 0 311 -203 266 -179 266 -139 c 0 266 -112 289 -89 314 -89 c 0 320 -89 323 -90 337 -95 c 0 353 -100 369 -103 385 -103 c 0 431 -103 463 -67 463 -14 c 2 463 311 l 2 463 340 454 350 428 350 c 0 402 350 386 341 352 305 c 1 352 100 l 1 390 100 412 81 412 50 c 0 412 33 403 17 388 7 c 0 380 2 367 0 346 0 c 2 252 0 l 1 252 311 l 2 252 339 242 350 217 350 c 0 190 350 171 339 141 305 c 1 141 100 l 1 180 100 202 82 202 50 c 0 202 33 193 17 178 7 c 0 170 2 157 0 136 0 c 2 48 0 l 2 24 0 11 3 2 10 c 0 -11 19 -19 35 -19 50 c 0 -19 82 3 100 41 100 c 1 41 337 l 1 3 338 -19 356 -19 387 c 0 -19 413 -2 432 27 435 c 0 38 437 40 437 48 437 c 2 141 437 l 1 141 413 l 1 176 441 196 450 226 450 c 0 265 450 298 434 328 401 c 1 359 435 391 450 432 450 c 0 507 450 563 394 563 319 c 2 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni0272 Encoding: 626 626 Width: 600 Flags: W HStem: -203 100<10 26> 0 21G<416 505> 0.144728 99.8553<409 409 510 525.03> 350 100<314 334> 417 20G<101 195> VStem: 95 100<-27 282> 410 100<100 293> Fore 95 -14 m 2 95 337 l 1 56 338 34 355 34 387 c 0 34 414 51 432 80 435 c 0 91 437 93 437 101 437 c 2 195 437 l 1 195 389 l 1 243 435 277 450 332 450 c 0 377 450 418 437 451 413 c 0 491 383 510 341 510 282 c 2 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 16 547 7 c 0 539 2 526 0 505 0 c 2 416 0 l 2 371 0 349 17 349 50 c 0 349 82 371 100 410 100 c 1 410 278 l 2 410 327 382 350 320 350 c 0 274 350 242 333 195 282 c 1 195 -14 l 2 195 -121 119 -203 20 -203 c 0 -57 -203 -102 -179 -102 -139 c 0 -102 -112 -79 -89 -54 -89 c 0 -48 -89 -45 -90 -31 -95 c 0 -15 -100 1 -103 17 -103 c 0 63 -103 95 -67 95 -14 c 2 EndSplineSet MinimumDistance: x9,-1 EndChar StartChar: uni0273 Encoding: 627 627 Width: 600 Flags: W HStem: -203 100<583 599> 0 100<71 94 196 215> 350 100<311 334> 417 20G<101 195> VStem: 95 100<100 282> 410 100<-27 293> Fore 510 282 m 2 510 -14 l 2 510 -67 542 -103 588 -103 c 0 604 -103 620 -100 636 -95 c 0 650 -90 653 -89 659 -89 c 0 684 -89 707 -112 707 -139 c 0 707 -179 662 -203 585 -203 c 0 486 -203 410 -121 410 -14 c 2 410 278 l 2 410 327 382 350 320 350 c 0 274 350 242 333 195 282 c 1 195 100 l 1 201 100 l 2 228 100 236 98 246 91 c 0 259 81 267 66 267 50 c 0 267 33 258 17 243 7 c 0 235 2 222 0 201 0 c 2 89 0 l 2 65 0 53 3 43 10 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 98 64 100 89 100 c 2 95 100 l 1 95 337 l 1 56 338 34 355 34 387 c 0 34 414 51 432 80 435 c 0 91 437 93 437 101 437 c 2 195 437 l 1 195 389 l 1 243 435 277 450 332 450 c 0 377 450 418 437 451 413 c 0 491 383 510 341 510 282 c 2 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni0275 Encoding: 629 629 Width: 600 Flags: W HStem: -16 100<282 314> 178 80<150 450> 350 100<282 314> VStem: 42 516<208 224> Ref: 1257 N 1 0 0 1 0 0 EndChar StartChar: uni0279 Encoding: 633 633 Width: 600 Flags: W HStem: 337 100<178 187 203 346 448 491 448 524> VStem: 347 100<190 337> Ref: 114 S -1 0 0 -1 625 437 EndChar StartChar: uni027A Encoding: 634 634 Width: 600 Flags: W HStem: 542 100<178 187 203 346 448 491 448 524> VStem: 347 100<190 542> Ref: 636 N -1 0 0 -1 625 437 EndChar StartChar: uni027B Encoding: 635 635 Width: 600 Flags: W HStem: -203 100<518 534> -12 100<179 184> 337 100<198 346 448 524> VStem: 347 100<-27 64 190 337> Fore 447 337 m 1 447 -14 l 2 447 -67 479 -103 525 -103 c 0 541 -103 557 -100 573 -95 c 0 587 -90 590 -89 596 -89 c 0 621 -89 644 -112 644 -139 c 0 644 -179 599 -203 522 -203 c 0 423 -203 347 -121 347 -14 c 2 347 65 l 1 267 5 229 -12 180 -12 c 0 145 -12 113 0 82 26 c 0 61 43 54 55 54 73 c 0 54 101 77 124 104 124 c 0 118 124 128 119 143 106 c 0 158 93 168 88 182 88 c 0 214 88 252 112 347 190 c 1 347 337 l 1 208 337 l 2 180 337 172 339 162 346 c 0 149 356 141 371 141 387 c 0 141 404 150 421 165 430 c 0 172 434 187 437 208 437 c 2 505 437 l 2 528 437 542 434 551 427 c 0 563 418 571 402 571 387 c 0 571 370 562 353 547 344 c 0 538 338 531 337 505 337 c 2 447 337 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni027C Encoding: 636 636 Width: 600 Flags: W HStem: -205 100<101 177 279 422> 337 100<134 177> 349 100<438 447> VStem: 178 100<-105 247> Fore 278 437 m 1 278 372 l 1 358 432 396 449 445 449 c 0 480 449 512 437 543 411 c 0 564 394 571 382 571 364 c 0 571 336 548 313 521 313 c 0 507 313 497 318 482 331 c 0 467 344 457 349 443 349 c 0 411 349 373 325 278 247 c 1 278 -105 l 1 417 -105 l 2 445 -105 453 -107 463 -114 c 0 476 -124 484 -139 484 -155 c 0 484 -172 475 -189 460 -198 c 0 453 -202 438 -205 417 -205 c 2 120 -205 l 2 97 -205 83 -202 74 -195 c 0 62 -186 54 -170 54 -155 c 0 54 -138 63 -121 78 -112 c 0 87 -106 94 -105 120 -105 c 2 178 -105 l 1 178 337 l 1 143 337 l 2 118 337 107 339 98 347 c 1 85 356 77 371 77 387 c 0 77 404 86 420 101 429 c 1 107 434 126 437 143 437 c 2 278 437 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni027D Encoding: 637 637 Width: 600 Flags: W HStem: -203 100<349 365> 337 100<125.448 178> 349 100<431.619 447> VStem: 178 100<-27 247> Fore 278 247 m 1 278 -14 l 2 278 -67 310 -103 356 -103 c 0 372 -103 388 -100 404 -95 c 0 418 -90 421 -89 427 -89 c 0 452 -89 475 -112 475 -139 c 0 475 -179 430 -203 353 -203 c 0 254 -203 178 -121 178 -14 c 2 178 337 l 1 143 337 l 2 118 337 107 339 98 347 c 1 85 356 77 371 77 387 c 0 77 404 86 420 101 429 c 1 107 434 126 437 143 437 c 2 278 437 l 1 278 372 l 1 358 432 396 449 445 449 c 0 480 449 512 437 543 411 c 0 564 394 571 382 571 364 c 0 571 336 548 313 521 313 c 0 507 313 497 318 482 331 c 0 467 344 457 349 443 349 c 0 411 349 373 325 278 247 c 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni0282 Encoding: 642 642 Width: 600 Flags: W HStem: -203 100<247 265> -16 100<281 324> 350 100<281 324> VStem: 73 100<-27 5> 92 110<312 317> 417 110<122 133> Fore 173 6 m 1 173 -14 l 2 173 -67 205 -103 251 -103 c 0 267 -103 283 -100 299 -95 c 0 313 -90 316 -89 322 -89 c 0 347 -89 370 -112 370 -139 c 0 370 -179 325 -203 248 -203 c 0 149 -203 73 -121 73 -14 c 2 73 100 l 2 73 127 75 136 83 146 c 0 93 160 107 167 124 167 c 0 150 167 166 153 175 123 c 1 204 97 246 84 300 84 c 0 364 84 417 104 417 127 c 0 417 140 404 154 383 162 c 0 366 169 345 173 291 179 c 0 151 194 92 234 92 313 c 0 92 393 178 450 298 450 c 0 347 450 388 442 427 424 c 1 435 443 444 450 459 450 c 0 491 450 506 430 506 384 c 2 506 347 l 2 506 321 504 311 497 301 c 0 487 289 471 281 456 281 c 0 428 281 416 299 404 321 c 1 376 341 343 350 301 350 c 0 250 350 202 333 202 315 c 0 202 306 212 297 228 291 c 0 242 286 248 285 312 276 c 0 387 266 427 255 457 238 c 0 501 214 527 171 527 125 c 0 527 43 433 -16 304 -16 c 0 255 -16 210 -9 173 6 c 1 EndSplineSet MinimumDistance: x30,-1 EndChar StartChar: uni0283 Encoding: 643 643 Width: 600 Flags: W HStem: -123 100<169 185> 538 100<425 441> VStem: 254 100<53 469> Fore 254 66 m 6 254 459 l 6 254 558 332 638 428 638 c 4 503 638 548 615 548 577 c 4 548 547 527 524 500 524 c 4 493 524 488 525 476 529 c 4 460 535 445 538 427 538 c 4 387 538 354 501 354 456 c 6 354 66 l 6 354 -41 278 -123 179 -123 c 0 102 -123 57 -99 57 -59 c 0 57 -32 80 -9 105 -9 c 0 111 -9 114 -10 128 -15 c 0 144 -20 160 -23 176 -23 c 0 222 -23 254 13 254 66 c 6 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: uni0284 Encoding: 644 644 Width: 600 Flags: W HStem: -205 100<75 219> 0 100<75 297 399 427> 337 100<75 297> 538 100<459.642 476> VStem: 298 100<-29 0 100 337 437 467> Fore 298 1.37836e-07 m 1 230.667 2.24527e-07 163.333 -5.23342e-08 96 0 c 1 71 0 60 2 51 9 c 0 38 19 30 34 30 50 c 0 30 67 39 83 54 93 c 0 63 99 71 100 96 100 c 1 298 100 l 1 298 337 l 1 96 337 l 2 71 337 60 339 51 347 c 1 38 356 30 372 30 387 c 0 30 404 39 421 54 430 c 0 63 436 70 437 96 437 c 2 298 437 l 1 298 459 l 2 298 558 376 638 472 638 c 0 547 638 592 615 592 577 c 0 592 547 571 524 544 524 c 0 537 524 532 525 520 529 c 0 504 535 489 538 471 538 c 0 431 538 398 501 398 456 c 2 398 100 l 1 408 100 l 2 434 100 444 98 454 91 c 0 467 81 474 66 474 50 c 0 474 33 465 16 450 7 c 0 442 2 430 0 408 0 c 2 398 9.59635e-06 l 1 398 -20 l 2 398 -125 316 -205 207 -205 c 2 93 -205 l 2 68 -205 57 -203 48 -195 c 1 35 -186 27 -170 27 -155 c 0 27 -138 37 -121 51 -112 c 0 60 -106 68 -105 93 -105 c 2 204 -105 l 2 261 -105 298 -72 298 -20 c 2 298 1.37836e-07 l 1 EndSplineSet MinimumDistance: x20,-1 EndChar StartChar: uni0285 Encoding: 645 645 Width: 600 Flags: W HStem: -123 100<420 436> 538 100<164 180> VStem: 251 100<53 469> Ref: 643 N -1 0 0 1 605 0 EndChar StartChar: uni0287 Encoding: 647 647 Width: 600 Flags: W HStem: -16 20<369.5 386> 491 100<147 328 217 261 428 463> VStem: 328 100<50 138 238 434 434 444.5> Ref: 116 N -1 0 0 -1 542 575 EndChar StartChar: uni0288 Encoding: 648 648 Width: 600 Flags: W HStem: -206 100<285 317> 337 100<61 114 215 413> VStem: 114 100<-68 337 437 546> Fore 214 337 m 1 214 -49 l 2 214 -70 216 -79 222 -86 c 0 234 -99 262 -106 300 -106 c 0 353 -106 401 -95 446 -72 c 0 463 -63 470 -61 481 -61 c 0 508 -61 529 -84 529 -112 c 0 529 -136 517 -149 479 -166 c 0 430 -189 351 -206 299 -206 c 0 185 -206 114 -153 114 -68 c 2 114 337 l 1 79 337 l 2 54 337 43 339 33 347 c 0 21 356 13 372 13 387 c 0 13 404 22 421 37 430 c 0 46 436 53 437 79 437 c 2 114 437 l 1 114 525 l 2 114 551 116 561 124 571 c 0 133 583 148 591 164 591 c 0 181 591 198 582 207 567 c 0 213 558 214 551 214 525 c 2 214 437 l 1 395 437 l 2 422 437 430 435 441 428 c 1 453 418 461 403 461 387 c 0 461 370 452 353 437 344 c 0 429 339 417 337 395 337 c 2 214 337 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni0289 Encoding: 649 649 Width: 600 Flags: W HStem: -13 100<269 285> 0 21G<410 505> 0.0596637 99.9403<510.031 525.045> 154 100<61 95 197 397 510.031 527.235> 337 100<61 95 349.509 409> VStem: 95 100<254 337> 410 100<255 337> Fore 409.053 154 m 1 195.101 154 l 1 196.979 108.434 225.079 87 283 87 c 0 332.696 87 357.695 99.8422 409.053 154 c 1 510 154.037 m 1 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 17 547 7 c 0 539 2 526 0 505 0 c 2 410 0 l 1 410 48 l 1 360 1 328 -13 273 -13 c 0 228 -13 186 0 154 24 c 0 114.453 53.66 95.4334 96.0269 95.0073 154 c 1 79 154 l 2 54 154 43 156 34 163 c 0 21 173 13 188 13 204 c 0 13 221 22 237 37 247 c 0 46 253 54 254 79 254 c 2 95 254 l 1 95 337 l 1 68 337 l 2 35 337 13 358 13 387 c 0 13 404 22 421 37 430 c 0 46 436 54 437 79 437 c 2 195 437 l 1 195 254 l 1 410 254 l 1 410 337 l 1 375 337 l 2 350 337 345 336 330 347 c 24 316 358 309 372 309 387 c 0 309 404 318 421 333 430 c 0 342 436 351 437 375 437 c 2 510 437 l 1 510 253.972 l 1 532.336 253.711 541.668 251.533 551 245 c 0 564 235 571 220 571 204 c 0 571 187 562 170 547 161 c 0 539.628 156.393 528.86 154.333 510 154.037 c 1 EndSplineSet MinimumDistance: x3,-1 x23,25 y25,23 y25,24 EndChar StartChar: uni028C Encoding: 652 652 Width: 600 Flags: W HStem: 417 20<53 66 66 201 389 402 402 534> Ref: 118 N -1 0 0 -1 600 437 EndChar StartChar: uni028D Encoding: 653 653 Width: 600 Flags: W HStem: 417 20<53 66 66 159 429 442 442 534> Ref: 119 S -1 0 0 -1 600 437 EndChar StartChar: uni028E Encoding: 654 654 Width: 600 Flags: W HStem: 0 20<74 87 87 179 410 423 423 513> 542 100<298 303 413 513> Ref: 121 S -1 0 0 -1 600 437 EndChar StartChar: uni0290 Encoding: 656 656 Width: 600 Flags: W HStem: -203 100<593 613> 0 100<245 419> 337 100<197 345> VStem: 85 434<0 83> 97 100<309 336> 97 409<356 436> 419 100<-27 -1> DStem: 346 337 506 356 85 83 244 100 Fore 419 0 m 1 85 0 l 1 85 83 l 1 346 337 l 1 197 337 l 1 197 328 l 2 197 301 195 293 188 283 c 0 178 270 163 262 147 262 c 0 130 262 113 271 104 286 c 0 99 295 97 305 97 328 c 2 97 437 l 1 506 437 l 1 506 356 l 1 244 100 l 1 419 100 l 1 421 135 439 154 469 154 c 0 486 154 503 145 512 130 c 0 518 121 519 114 519 88 c 2 519 -14 l 2 519 -67 551 -103 597 -103 c 0 613 -103 629 -100 645 -95 c 0 659 -90 662 -89 668 -89 c 0 693 -89 716 -112 716 -139 c 0 716 -179 671 -203 594 -203 c 0 495 -203 419 -121 419 -14 c 2 419 0 l 1 EndSplineSet MinimumDistance: x17,-1 y2,0 x0,2 x0,1 EndChar StartChar: uni0294 Encoding: 660 660 Width: 600 Flags: W HStem: 0 100<216 253 354 376> 498 100<296 312> VStem: 104 100<448 474> 253 100<100 228> 417 100<408 420> Fore 353 228 m 1 353 100 l 1 369 100 l 2 395 100 405 98 415 91 c 0 428 81 435 66 435 50 c 0 435 33 426 17 411 7 c 0 403 2 391 0 369 0 c 2 237 0 l 2 212 0 201 2 191 10 c 0 179 19 171 34 171 50 c 0 171 67 180 84 195 93 c 0 204 99 213 100 237 100 c 2 253 100 l 1 253 296 l 1 381 345 417 371 417 414 c 0 417 464 373 498 309 498 c 0 271 498 237 490 204 474 c 1 204 460 l 2 204 434 202 424 195 415 c 0 185 402 169 394 154 394 c 0 137 394 120 404 111 418 c 0 106 426 104 437 104 460 c 2 104 539 l 1 200 585 244 598 308 598 c 0 432 598 517 521 517 409 c 0 517 328 474 281 353 228 c 1 EndSplineSet MinimumDistance: x24,-1 EndChar StartChar: uni0295 Encoding: 661 661 Width: 600 Flags: W HStem: 0 100<245 267 368 405> 498 100<309 325> VStem: 417 100<100 228 408 420 448 474> Ref: 660 N -1 0 0 1 621 0 EndChar StartChar: uni0296 Encoding: 662 662 Width: 600 Flags: W HStem: 483 100<245 267 309 325 368 405> VStem: 417 100<109 135 163 175 355 483> Ref: 660 N -1 0 0 -1 621 583 EndChar StartChar: uni0297 Encoding: 663 663 Width: 600 Flags: W HStem: -205 100<305 353> 367 216<497 501> 497 100<288.512 328> VStem: 33 100<51 323> Fore 447 563 m 2 457 559 l 1 470 577 482 583 499 583 c 0 517 583 533 574 542 559 c 0 548 550 549 542 549 517 c 2 549 433 l 2 549 408 547 397 540 388 c 0 530 375 515 367 499 367 c 0 486 367 472 373 464 381 c 0 456 389 454 396 450 420 c 0 445 444 435 457 406 473 c 0 379 488 343 497 309 497 c 0 207 497 133 420 133 315 c 2 133 60 l 2 133 -40 210 -105 330 -105 c 0 375 -105 415 -97 440 -82 c 0 451 -76 451 -76 478 -48 c 0 489 -37 501 -32 514 -32 c 0 541 -32 564 -55 564 -82 c 0 564 -105 545 -131 511 -155 c 0 467 -187 399 -205 327 -205 c 0 157 -205 33 -94 33 58 c 2 33 315 l 2 33 475 151 597 305 597 c 0 357 597 392 589 447 563 c 2 EndSplineSet MinimumDistance: x12,-1 EndChar StartChar: uni0298 Encoding: 664 664 Width: 600 Flags: W HStem: -14 100<293 309> 232 120<293 309> 497 100<293 309> VStem: 21 100<274 306> 240 120<286 294> 479 100<274 306> Fore 300 352 m 0 334 352 360 325 360 291 c 0 360 259 333 232 300 232 c 0 267 232 240 259 240 292 c 0 240 325 267 352 300 352 c 0 300 597 m 0 367 597 432 570 485 520 c 0 548 460 579 383 579 287 c 0 579 123 452 -14 300 -14 c 0 146 -14 21 123 21 292 c 0 21 460 146 597 300 597 c 0 300 497 m 0 202 497 121 404 121 292 c 0 121 179 202 86 300 86 c 0 397 86 479 179 479 289 c 0 479 404 399 497 300 497 c 0 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: uni029C Encoding: 668 668 Width: 600 Flags: W HStem: 0 100<123 126 227.031 237.034 366.966 376.969 477.031 487.034> 178 100<228 376> 337 100<227.031 237.034 366.966 376.969> VStem: 127 100<100 177 279 337> 377 100<100 177 279 337> Fore 477 0 m 2 377 0 l 2 349.4 -0 327 22.4004 327 50 c 0 327 77.5996 349.4 100 377 100 c 1 377 178 l 1 227 178 l 1 227 100 l 1 254.6 100 277 77.5996 277 50 c 0 277 22.4004 254.6 0 227 0 c 2 127 0 l 2 99.4004 -0 77 22.4004 77 50 c 0 77 77.5996 99.4004 100 127 100 c 1 127 337 l 1 94 340 75 358 75 387 c 0 75 404 84 421 99 430 c 0 108 436 116 437 141 437 c 2 227 437 l 2 254.6 437 277 414.6 277 387 c 0 277 359.4 254.6 337 227 337 c 1 227 278 l 1 377 278 l 1 377 337 l 1 349.4 337 327 359.4 327 387 c 0 327 414.6 349.4 437 377 437 c 2 463 437 l 2 490 437 499 435 509 428 c 0 521 418 529 403 529 387 c 0 529 358 510 340 477 337 c 1 477 100 l 1 504.6 100 527 77.5996 527 50 c 0 527 22.4004 504.6 0 477 0 c 2 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni029E Encoding: 670 670 Width: 600 Flags: W HStem: 524 100<79 133 131 175 490 523 490 522.274> VStem: 33 251<572 576> 81 245<235 240> 389 100<100 336 460 524> DStem: 133 524 268 537 293 383 371 446 293 383 389 337 175 287 310 274 Ref: 107 N -1 0 0 -1 604 624 EndChar StartChar: uni029F Encoding: 671 671 Width: 600 Flags: W HStem: 0 100<114 163 265 439> 0 195<482 498> 337 100<114 163 265 306> VStem: 164 100<100 337> 439 100<100 144> Fore 264 337 m 1 264 100 l 1 439 100 l 1 439 128 l 2 439 155 441 164 448 174 c 0 458 188 473 195 489 195 c 0 506 195 522 186 532 171 c 0 538 162 539 153 539 128 c 2 539 0 l 1 132 0 l 2 109 0 95 3 87 10 c 0 74 19 66 34 66 50 c 0 66 67 75 84 90 93 c 0 99 99 106 100 132 100 c 2 164 100 l 1 164 337 l 1 132 337 l 2 107 337 96 339 87 346 c 0 74 356 66 371 66 387 c 0 66 404 75 421 90 430 c 0 99 436 106 437 132 437 c 2 297 437 l 2 324 437 332 435 342 428 c 0 355 418 363 403 363 387 c 0 363 370 354 353 339 344 c 0 331 339 320 337 297 337 c 2 264 337 l 1 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: uni02A0 Encoding: 672 672 Width: 600 Flags: W HStem: -205 100<353 430 532 561> 10 100<273 289> 350 100<273 289> 538 100<593 615> VStem: 33 100<223 243> 307 306<-157 -153> 431 100<-105 65 223 243 393 467> Fore 281 350 m 0 240 350 207 340 181 321 c 0 152 299 133 263 133 230 c 0 133 197 152 161 181 139 c 0 206 120 240 110 282 110 c 0 324 110 358 120 383 139 c 0 412 161 431 197 431 229 c 0 431 300 370 350 281 350 c 0 431 392 m 1 431 459 l 2 431 558 509 638 605 638 c 0 680 638 725 615 725 577 c 0 725 547 704 524 677 524 c 0 670 524 665 525 653 529 c 0 637 535 622 538 604 538 c 0 564 538 531 501 531 456 c 2 531 -105 l 1 547 -105 l 2 574 -105 583 -107 593 -114 c 0 605 -124 613 -139 613 -155 c 0 613 -172 604 -188 589 -198 c 0 581 -203 569 -205 547 -205 c 2 373 -205 l 2 348 -205 337 -203 327 -195 c 0 314 -185 307 -171 307 -155 c 0 307 -138 316 -121 331 -112 c 0 339 -107 349 -105 373 -105 c 2 431 -105 l 1 431 66 l 1 379 26 334 10 275 10 c 0 136 10 33 101 33 224 c 0 33 354 137 450 277 450 c 0 340 450 382 434 431 392 c 1 EndSplineSet MinimumDistance: x14,-1 EndChar StartChar: uni02A1 Encoding: 673 673 Width: 600 Flags: W HStem: 0 100<216 253 354 376> 148 100<153 253> 498 100<296 312> VStem: 104 100<448 474> 253 100<100 148> 417 100<408 420> Fore 253 148 m 1 170 148 l 2 126 148 104 165 104 198 c 0 104 214 111 229 124 239 c 0 135 246 143 248 170 248 c 2 253 248 l 1 253 296 l 1 381 345 417 371 417 414 c 0 417 464 373 498 309 498 c 0 271 498 237 490 204 474 c 1 204 460 l 2 204 434 202 424 195 415 c 0 185 402 169 394 154 394 c 0 137 394 120 404 111 418 c 0 106 426 104 437 104 460 c 2 104 539 l 1 200 585 244 598 308 598 c 0 432 598 517 521 517 409 c 0 517 328 474 281 353 228 c 1 353 100 l 1 369 100 l 2 395 100 405 98 415 91 c 0 428 81 435 66 435 50 c 0 435 33 426 17 411 7 c 0 403 2 391 0 369 0 c 2 237 0 l 2 212 0 201 2 191 10 c 0 179 19 171 34 171 50 c 0 171 67 180 84 195 93 c 0 204 99 213 100 237 100 c 2 253 100 l 1 253 148 l 1 EndSplineSet MinimumDistance: x17,-1 EndChar StartChar: uni02A2 Encoding: 674 674 Width: 600 Flags: W HStem: 0 100<245 267 368 405> 148 100<368 468> 498 100<309 325> VStem: 417 100<100 148 408 420 448 474> Ref: 673 N -1 0 0 1 621 0 EndChar StartChar: circumflex Encoding: 710 710 Width: 600 Flags: W DStem: 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 Fore 301 607 m 1 188 510 l 2 177 501 169 497 160 497 c 0 141 497 125 514 125 532 c 0 125 546 127 549 149 567 c 2 301 696 l 1 452 567 l 2 455 565 459 562 461 560 c 0 472 551 476 543 476 532 c 0 476 514 460 497 442 497 c 0 433 497 424 501 413 510 c 2 301 607 l 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: caron Encoding: 711 711 Width: 600 Flags: HMW HStem: 566 20<301 301> Fore 301 586 m 1 413 682 l 2 425 693 432 696 442 696 c 0 460 696 476 679 476 660 c 0 476 649 472 641 461 632 c 2 452 625 l 1 301 497 l 1 149 625 l 2 127 643 125 647 125 660 c 0 125 679 141 696 160 696 c 0 169 696 175 693 188 682 c 2 301 586 l 1 EndSplineSet EndChar StartChar: uni02D0 Encoding: 720 720 Width: 600 Flags: W HStem: 0 190.963<299 304> 246.037 190.963<299 304> VStem: 208.781 182.439<16 19 416 421> Fore 235 437 m 10 365 437 l 18 390 437 396 423 388 406 c 10 318 261 l 18 309 241 291 241 282 261 c 10 212 406 l 18 204 423 210 437 235 437 c 10 235 0 m 18 210 0 204 14 212 31 c 10 282 176 l 18 291 196 309 196 318 176 c 10 388 31 l 18 396 14 390 0 365 0 c 10 235 0 l 18 EndSplineSet EndChar StartChar: uni02D1 Encoding: 721 721 Width: 600 Flags: W HStem: 246.037 190.963<299 304> VStem: 208.704 182.592<418 422> Fore 235 437 m 10 365 437 l 18 390 437 396 423 388 406 c 10 318 261 l 18 309 241 291 241 282 261 c 10 212 406 l 18 204 423 210 437 235 437 c 10 EndSplineSet EndChar StartChar: breve Encoding: 728 728 Width: 600 Flags: HMW HStem: 503 68<272.5 327.5> Fore 159 687 m 0 179 687 186 678 193 647 c 0 203 601 245 571 300 571 c 0 355 571 397 601 407 647 c 0 414 678 421 687 441 687 c 0 461 687 475 672 475 649 c 0 475 573 392 503 300 503 c 0 208 503 125 573 125 649 c 0 125 672 139 687 159 687 c 0 EndSplineSet EndChar StartChar: dotaccent Encoding: 729 729 Width: 600 Flags: W HStem: 534 120<289.067 304> VStem: 240 120<592 598> Fore 300 654 m 0 334 654 360 627 360 593 c 0 360 561 333 534 300 534 c 0 267 534 240 561 240 594 c 0 240 627 267 654 300 654 c 0 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: ring Encoding: 730 730 Width: 600 Flags: HMW HStem: 486 54<281 318.5> 674 53<281 319> VStem: 177 53<589 625> 370 53<588.5 624.5> Fore 300 727 m 0 368 727 423 672 423 605 c 0 423 541 366 486 300 486 c 0 233 486 177 541 177 607 c 0 177 672 233 727 300 727 c 0 300 674 m 0 262 674 230 643 230 607 c 0 230 571 262 540 300 540 c 0 337 540 370 571 370 606 c 0 370 643 338 674 300 674 c 0 EndSplineSet EndChar StartChar: ogonek Encoding: 731 731 Width: 600 Flags: HMW HStem: -208 76<343.5 357> VStem: 250 77<-118.5 -96> Fore 329 0 m 1 427 0 l 1 354 -49 327 -80 327 -112 c 0 327 -125 336 -132 351 -132 c 0 363 -132 373 -128 402 -114 c 0 412 -109 417 -108 424 -108 c 0 446 -108 463 -125 463 -146 c 0 463 -164 452 -178 428 -189 c 0 401 -201 371 -208 344 -208 c 0 286 -208 250 -174 250 -119 c 0 250 -70 272 -36 329 0 c 1 EndSplineSet EndChar StartChar: tilde Encoding: 732 732 Width: 600 Flags: W HStem: 523 69<371 378> 587 69<224 229> Fore 453 656 m 0 470 656 485 642 485 628 c 0 485 613 477 598 456 571 c 0 429 537 405 523 376 523 c 0 354 523 321 537 277 566 c 0 250 584 241 587 227 587 c 0 209 587 201 580 172 541 c 0 164 530 156 526 146 526 c 0 129 526 115 540 115 556 c 0 115 570 125 590 142 611 c 0 167 640 196 656 225 656 c 0 248 656 265 649 315 618 c 0 349 598 362 592 373 592 c 0 388 592 392 596 414 626 c 0 428 646 441 656 453 656 c 0 EndSplineSet EndChar StartChar: hungarumlaut Encoding: 733 733 Width: 600 Flags: W DStem: 248 679 291 622 146 569 189 512 412 679 455 622 310 569 353 512 Fore 291 622 m 2 189 512 l 2 180 502 169 496 160 496 c 0 142 496 125 514 125 533 c 0 125 544 126 546 146 569 c 1 248 679 l 2 259 690 266 694 277 694 c 0 295 694 311 677 311 658 c 0 311 647 306 638 291 622 c 2 455 622 m 2 353 512 l 2 343 502 333 496 324 496 c 0 306 496 289 514 289 533 c 0 289 544 290 546 310 569 c 1 412 679 l 2 422 690 430 694 441 694 c 0 459 694 475 677 475 658 c 0 475 647 470 638 455 622 c 2 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: gravecomb Encoding: 768 768 Width: 600 Flags: W DStem: 148 624 194 680 281 512 327 569 Ref: 96 N 1 0 0 1 0 0 EndChar StartChar: acutecomb Encoding: 769 769 Width: 600 Flags: W DStem: 406 680 452 624 273 569 319 512 Ref: 180 N 1 0 0 1 0 0 EndChar StartChar: uni0302 Encoding: 770 770 Width: 600 Flags: W DStem: 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 Fore 301 607 m 1 188 510 l 2 177 501 169 497 160 497 c 0 141 497 125 514 125 532 c 0 125 546 127 549 149 567 c 2 301 696 l 1 452 567 l 2 455 565 459 562 461 560 c 0 472 551 476 543 476 532 c 0 476 514 460 497 442 497 c 0 433 497 424 501 413 510 c 2 301 607 l 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: tildecomb Encoding: 771 771 Width: 600 Flags: W HStem: 523 69<371 378> 587 69<224 229> Ref: 732 N 1 0 0 1 0 0 EndChar StartChar: uni0304 Encoding: 772 772 Width: 600 Flags: W HStem: 546 80<178 422> Ref: 175 N 1 0 0 1 0 0 EndChar StartChar: uni0305 Encoding: 773 773 Width: 600 Flags: W HStem: 546 80<103 503> VStem: 55 490<585 588> Fore 108 626 m 2 492 626 l 2 515 626 527 623 534 615 c 0 540 608 545 594 545 586 c 0 545 561 525 546 492 546 c 2 108 546 l 2 83 546 75 548 66 558 c 0 60 566 55 578 55 586 c 0 55 611 74 626 108 626 c 2 EndSplineSet MinimumDistance: x3,-1 EndChar StartChar: uni0306 Encoding: 774 774 Width: 600 Flags: W HStem: 503 68<272.5 327.5> Ref: 728 N 1 0 0 1 0 0 EndChar StartChar: uni0307 Encoding: 775 775 Width: 600 Flags: W HStem: 534 120<289.067 304> VStem: 240 120<592 598> Ref: 729 N 1 0 0 1 0 0 EndChar StartChar: uni0308 Encoding: 776 776 Width: 600 Flags: W VStem: 136 120<577.5 610> 344 120<577.5 610> Ref: 168 N 1 0 0 1 0 0 EndChar StartChar: hookabovecomb Encoding: 777 777 Width: 600 Flags: W HStem: 674 53<289 305> VStem: 177 53<597.668 612> 274 52<477 486> 370 53<595 612> Fore 300 727 m 16 364 727 423 677 423 610 c 0 423 582.596 413.675 545.527 381 520 c 0 337 486 326 499 326 484 c 2 326 478 l 2 326 463 315 451 300 451 c 0 285 451 274 463 274 478 c 2 274 484 l 2 274 555 309 533 345 560 c 0 365 574 370 585.706 370 607 c 16 370 643 338 674 300 674 c 8 261.241 674 230 643 230 607 c 1 230 588 220 577 204 577 c 0 187 577 177 589 177 607 c 1 177 674 231.264 727 300 727 c 16 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni030A Encoding: 778 778 Width: 600 Flags: W HStem: 486 54<281 318.5> 674 53<281 319> VStem: 177 53<589 625> 370 53<588.5 624.5> Ref: 730 N 1 0 0 1 0 0 EndChar StartChar: uni030B Encoding: 779 779 Width: 600 Flags: W DStem: 248 679 291 622 146 569 189 512 412 679 455 622 310 569 353 512 Ref: 733 N 1 0 0 1 0 0 EndChar StartChar: uni030C Encoding: 780 780 Width: 600 Flags: W HStem: 566 20<301 301> Ref: 711 N 1 0 0 1 0 0 EndChar StartChar: uni030D Encoding: 781 781 Width: 600 Flags: W HStem: 514 218<292 308> VStem: 260 80<546 694> Fore 340 692 m 2 340 554 l 2 340 532 322 514 300 514 c 0 278 514 260 532 260 554 c 2 260 692 l 2 260 714 278 732 300 732 c 0 322 732 340 714 340 692 c 2 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni030E Encoding: 782 782 Width: 600 Flags: W HStem: 514 218<212 228 372 388> VStem: 180 80<546 694> 340 80<546 694> Fore 420 692 m 2 420 554 l 2 420 532 402 514 380 514 c 0 358 514 340 532 340 554 c 2 340 692 l 2 340 714 358 732 380 732 c 0 402 732 420 714 420 692 c 2 260 692 m 2 260 554 l 2 260 532 242 514 220 514 c 0 198 514 180 532 180 554 c 2 180 692 l 2 180 714 198 732 220 732 c 0 242 732 260 714 260 692 c 2 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni030F Encoding: 783 783 Width: 600 Flags: W DStem: 145 622 188 679 247 512 290 569 309 622 352 679 411 512 454 569 Fore 309 622 m 2 294 638 289 647 289 658 c 0 289 677 305 694 323 694 c 0 334 694 341 690 352 679 c 2 454 569 l 1 474 546 475 544 475 533 c 0 475 514 458 496 440 496 c 0 431 496 420 502 411 512 c 2 309 622 l 2 145 622 m 2 130 638 125 647 125 658 c 0 125 677 141 694 159 694 c 0 170 694 178 690 188 679 c 2 290 569 l 1 310 546 311 544 311 533 c 0 311 514 294 496 276 496 c 0 267 496 257 502 247 512 c 2 145 622 l 2 EndSplineSet MinimumDistance: x4,-1 EndChar StartChar: uni0310 Encoding: 784 784 Width: 600 Flags: W HStem: 503 68<285 317> 626 120<289.067 302> VStem: 240 120<679 695> Fore 159 687 m 0 179 687 186 678 193 647 c 0 203 601 245 571 300 571 c 0 355 571 397 601 407 647 c 0 414 678 421 687 441 687 c 0 461 687 475 672 475 649 c 0 475 573 392 503 300 503 c 0 208 503 125 573 125 649 c 0 125 672 139 687 159 687 c 0 300 746 m 0 334 746 360 719 360 685 c 0 360 653 333 626 300 626 c 0 267 626 240 653 240 686 c 0 240 719 267 746 300 746 c 0 EndSplineSet MinimumDistance: x9,-1 EndChar StartChar: uni0311 Encoding: 785 785 Width: 600 Flags: W HStem: 619 68<272.5 327.5> Ref: 728 S 1 0 0 -1 0 1190 EndChar StartChar: uni031B Encoding: 795 795 Width: 600 Flags: W HStem: 484 100<247 263> VStem: 246 161.289<580 584> 308 100<592 596> Fore 246 584 m 1 263 584 l 0 302 584 308 588 308 593 c 8 308 599 305 604 301 606 c 0 278 621 273 653 288 676 c 0 304 698 336 705 358 689 c 0 384 669 408 640 408 593 c 0 408 508 321 479 263 484 c 0 246 484 l 1 246 584 l 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: uni0321 Encoding: 801 801 Width: 600 Flags: W HStem: -203 100<158 176> -20 20<250 350> VStem: 250 100<-27 -1> Ref: 802 N -1 0 0 1 600 0 EndChar StartChar: uni0322 Encoding: 802 802 Width: 600 Flags: W HStem: -203 100<424 442> -20 20G<250 350> VStem: 250 100<-27 -1> Fore 250 0 m 25 350 0 l 25 350 -14 l 2 350 -67 382 -103 428 -103 c 0 444 -103 460 -100 476 -95 c 0 490 -90 493 -89 499 -89 c 0 524 -89 547 -112 547 -139 c 0 547 -179 502 -203 425 -203 c 0 326 -203 250 -121 250 -14 c 2 250 0 l 25 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni0327 Encoding: 807 807 Width: 600 Flags: W HStem: -229 70<292.5 312.5> -100 100<281.5 301> VStem: 262 70<-41 0> 337 70<-142 -123.5> Ref: 184 N 1 0 0 1 0 0 EndChar StartChar: uni0328 Encoding: 808 808 Width: 600 Flags: W HStem: -208 76<343.5 357> VStem: 250 77<-118.5 -96> Ref: 731 N 1 0 0 1 0 0 EndChar StartChar: uni0337 Encoding: 823 823 Width: 600 Flags: W DStem: 412 451 459 362 155 316 201 228 Fore 155 316 m 2 412 451 l 2 420 454 428 456 436 456 c 0 461 456 486 435 486 406 c 0 486 388 476 371 459 362 c 2 201 228 l 2 194 224 186 222 178 222 c 0 153 222 128 243 128 272 c 0 128 290 138 307 155 316 c 2 EndSplineSet MinimumDistance: x4,-1 EndChar StartChar: uni0374 Encoding: 884 884 Width: 600 Flags: W Ref: 8242 N 1 0 0 1 0 0 EndChar StartChar: uni0375 Encoding: 885 885 Width: 600 Flags: W Ref: 8242 S 1 0 0 1 0 -480 EndChar StartChar: uni037A Encoding: 890 890 Width: 600 Flags: W HStem: -203 100<405 423> -20 20G<231 331> VStem: 231 100<-27 -1> Fore 231 0 m 29 331 0 l 29 331 -14 l 6 331 -67 363 -103 409 -103 c 4 425 -103 441 -100 457 -95 c 4 471 -90 474 -89 480 -89 c 4 505 -89 528 -112 528 -139 c 4 528 -179 483 -203 406 -203 c 4 307 -203 231 -121 231 -14 c 6 231 0 l 29 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni037E Encoding: 894 894 Width: 600 Flags: W HStem: 417 20<253.5 299> Ref: 59 N 1 0 0 1 0 0 EndChar StartChar: tonos Encoding: 900 900 Width: 600 Flags: W HStem: 514 218<292 308> VStem: 260 80<546 694> Ref: 781 N 1 0 0 1 0 0 EndChar StartChar: dieresistonos Encoding: 901 901 Width: 600 Flags: W HStem: 526 218<292 308> VStem: 136 120<577.5 610> 260 80<558 706> 344 120<577.5 610> Ref: 168 N 1 0 0 1 0 0 Ref: 781 N 1 0 0 1 0 12 EndChar StartChar: Alphatonos Encoding: 902 902 Width: 600 Flags: W HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 379 218<50 66> 430 20<297 297> 483 100<138 201> VStem: 18 80<411 559> Ref: 900 N 1 0 0 1 -242 -135 Ref: 913 N 1 0 0 1 0 0 EndChar StartChar: anoteleia Encoding: 903 903 Width: 600 Flags: W HStem: 214 132<289 311> VStem: 225 150<278 282> Ref: 183 N 1 0 0 1 0 0 EndChar StartChar: Epsilontonos Encoding: 904 904 Width: 600 Flags: W HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 379 218<-9 7> 483 100<61 93 195 428> VStem: -41 80<411 559> 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> Ref: 900 N 1 0 0 1 -301 -135 Ref: 917 N 1 0 0 1 0 0 EndChar StartChar: Etatonos Encoding: 905 905 Width: 600 Flags: W HStem: 0 20 241 100<195 409> 379 218<-3 13> 563 20<109 210 210 223.5 394 495 495 508.5> VStem: -35 80<411 559> 95 100<100 241 341 483> 409 100<100 241 241 241 341 483> Ref: 900 S 1 0 0 1 -295 -135 Ref: 919 N 1 0 0 1 0 0 EndChar StartChar: Iotatonos Encoding: 906 906 Width: 600 Flags: W HStem: 0 100<149 250 350 451> 379 218<29 45> 483 100<149 250 350 451 350 350> VStem: -3 80<411 559> 250 100<100 483> Ref: 900 S 1 0 0 1 -263 -135 Ref: 921 N 1 0 0 1 0 0 EndChar StartChar: Omicrontonos Encoding: 908 908 Width: 600 Flags: W HStem: -14 100<251 348.5> 379 218<-18 -2> 497 100<251 333.5> VStem: -50 80<411 559> 21 100<235.5 348> 479 100<234 335> Ref: 900 S 1 0 0 1 -310 -135 Ref: 927 N 1 0 0 1 0 0 EndChar StartChar: Upsilontonos Encoding: 910 910 Width: 600 Flags: W HStem: 0 100<185 250 350 415> 379 218<-24 -8> 563 20<88 177 177 190.5 421 513 513 526.5> VStem: -56 80<411 559> 250 100<100 245> Ref: 900 N 1 0 0 1 -316 -135 Ref: 933 N 1 0 0 1 0 0 EndChar StartChar: Omegatonos Encoding: 911 911 Width: 600 Flags: W HStem: 0 100<129 179 421 471> 0 158<77 81 510.788 525> 0 202<253 279 321 349> 379 218<-19 -3> 483 100<257 344> VStem: -51 80<411 559> 29 100<101 118> 29 251<1 100> 40 100<336 352> 180 100<101 118> 320 100<101 118> 320 251<1 100> 460 100<336 352> 471 100<101 118> Ref: 900 S 1 0 0 1 -311 -135 Ref: 937 N 1 0 0 1 0 0 EndChar StartChar: iotadieresistonos Encoding: 912 912 Width: 600 Flags: W HStem: -16 100<424 441> 337 100<153 250> 494 218<292 308> VStem: 136 120<545.5 578> 250 100<160 337> 260 80<526 674> 344 120<545.5 578> Ref: 168 S 1 0 0 1 0 -32 Ref: 781 S 1 0 0 1 0 -20 Ref: 617 N 1 0 0 1 0 0 EndChar StartChar: Alpha Encoding: 913 913 Width: 600 Flags: W HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> Ref: 65 N 1 0 0 1 0 0 EndChar StartChar: Beta Encoding: 914 914 Width: 600 Flags: W HStem: 0 100<61 93 195 381> 242 100<195 328> 483 100<61 93 195 334> VStem: 94 100<101 241 343 482> 428 100<416 421> 471 100<144 162> Ref: 66 N 1 0 0 1 0 0 EndChar StartChar: Gamma Encoding: 915 915 Width: 600 Flags: W HStem: 0 100<79 112 212 321> 483 100<79 112 212 468> VStem: 112 100<99 483> 468 100<415 483> Ref: 1043 N 1 0 0 1 0 0 EndChar StartChar: Delta Encoding: 916 916 Width: 600 Flags: W HStem: 0 100<70 78 185 412 521.031 539> 483 100<123 200> VStem: 11 578<48 52> DStem: 201 483 297 450 78 100 184 100 297 450 354 583 413 100 521 100 Fore 523 0 m 2 77 0 l 2 33 0 11 17 11 50 c 0 11 67 20 84 35 93 c 0 44 99 53 100 78 100 c 1 201 483 l 1 138 483 l 2 112 483 102 485 92 492 c 0 79 502 71 517 71 533 c 0 71 550 80 566 95 576 c 0 104 582 111 583 138 583 c 2 354 583 l 1 521 100 l 1 549 100 558 98 568 90 c 0 581 81 589 66 589 50 c 0 589 33 580 16 565 7 c 0 557 2 544 0 523 0 c 2 184 100 m 1 413 100 l 1 297 450 l 1 184 100 l 1 EndSplineSet MinimumDistance: x14,-1 EndChar StartChar: Epsilon Encoding: 917 917 Width: 600 Flags: W HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> Ref: 69 N 1 0 0 1 0 0 EndChar StartChar: Zeta Encoding: 918 918 Width: 600 Flags: W HStem: 0 100<201 427> 483 100<196 375 196 196> VStem: 96 100<413 483> 427 100<100 172> Ref: 90 N 1 0 0 1 0 0 EndChar StartChar: Eta Encoding: 919 919 Width: 600 Flags: W HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5> VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483> Ref: 72 N 1 0 0 1 0 0 EndChar StartChar: Theta Encoding: 920 920 Width: 600 Flags: W HStem: -14 100<293 309> 247 87<240 355> 497 100<293 309> VStem: 21 100<274 306> 157 83<211.59 246 335 370> 355 83<211.107 246 335 370> 479 100<274 306> Fore 300 597 m 0 367 597 432 570 485 520 c 0 548 460 579 383 579 287 c 0 579 123 452 -14 300 -14 c 0 146 -14 21 123 21 292 c 0 21 460 146 597 300 597 c 0 300 497 m 0 202 497 121 404 121 292 c 0 121 179 202 86 300 86 c 0 397 86 479 179 479 289 c 0 479 404 399 497 300 497 c 0 438 225 m 2 438 207 434 195 427 186 c 1 419 179 409 173 396 173 c 0 385 173 372 181 366 186 c 1 359 195 355 208 355 225 c 2 355 247 l 1 240 247 l 1 240 225 l 2 240 198 230 187 213 177 c 0 208 174 203 173 198 173 c 0 187 173 174 180 166 186 c 1 160 193 157 206 157 225 c 2 157 359 l 2 157 377 160 390 166 397 c 1 176 404 187 408 198 408 c 0 219 408 229 395 236 382 c 0 239 375 240 368 240 359 c 2 240 334 l 1 355 334 l 1 355 359 l 2 355 379 357 389 370 400 c 0 376 405 385 408 396 408 c 0 407 408 417 404 427 397 c 1 435 387 438 378 438 359 c 2 438 225 l 2 EndSplineSet MinimumDistance: x2,-1 Back 566 287 m 0 566 228 553 173 528 124 c 0 503 71 477 34 448 14 c 0 406.979 -15.7046 357.834 -40 298 -40 c 0 227 -40 165 -9 112 53 c 0 59 115 32 193 32 287 c 0 32 380 58 458 111 520 c 0 164 581 226 612 298 612 c 0 362.679 612 398.417 594.722 446 563 c 0 476 543 500 513 519 473 c 0 546.242 412.461 566 363.069 566 287 c 0 480 287 m 0 480 350 463 405 429 454 c 0 395 502 351 526 298 526 c 0 249 526 206 503 171 456 c 0 135 409 117 353 117 287 c 0 117 212.087 136.716 155.012 174 114 c 0 202.683 80.7878 242.386 47 298 47 c 0 411.72 47 480 170.49 480 287 c 0 438 233 m 2 438 215.132 433.88 203.174 427 194 c 1 418.829 187.191 408.814 181 396 181 c 0 385.239 181 372.299 189.276 366 194 c 1 359 203 355 216 355 233 c 2 355 255 l 1 240 255 l 1 240 233 l 2 240 206.455 229.755 195.053 213 185 c 0 208 182 203 181 198 181 c 0 187.332 181 173.569 187.945 166 194 c 1 160 201 157 214 157 233 c 2 157 367 l 2 157 385 160 398 166 405 c 1 176 412 187 416 198 416 c 0 218.639 416 229.446 403.107 236 390 c 0 239 383 240 376 240 367 c 2 240 342 l 1 355 342 l 1 355 367 l 2 355 387.412 357.202 397.03 370 408 c 0 376 413 385 416 396 416 c 0 407 416 417 412 427 405 c 1 434.811 394.585 438 385.974 438 367 c 2 438 233 l 2 EndSplineSet EndChar StartChar: Iota Encoding: 921 921 Width: 600 Flags: W HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> VStem: 250 100<100 483> Ref: 73 N 1 0 0 1 0 0 EndChar StartChar: Kappa Encoding: 922 922 Width: 600 Flags: W HStem: 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5> VStem: 94 100<100 208 334 483> Ref: 75 N 1 0 0 1 0 0 EndChar StartChar: Lambda Encoding: 923 923 Width: 600 Flags: W HStem: 0 100<27.7264 46 156 187 395.592 438 553.031 571> 483 100<123 200> VStem: -21 265<48 52> 350 271<48 52> DStem: 201 483 297 450 46 100 155 100 297 450 354 583 439 100 553 100 Fore 155 100 m 1 178 100 l 2 205 100 213 98 223 91 c 0 236 81 244 66 244 50 c 0 244 33 235 16 220 7 c 0 212 2 199 0 178 0 c 2 45 0 l 2 1 0 -21 17 -21 50 c 0 -21 67 -12 84 3 93 c 0 12 99 21 100 46 100 c 1 201 483 l 1 138 483 l 2 112 483 102 485 92 492 c 0 79 502 71 517 71 533 c 0 71 550 80 566 95 576 c 0 104 582 111 583 138 583 c 2 354 583 l 1 553 100 l 1 581 100 590 98 600 90 c 0 613 81 621 66 621 50 c 0 621 33 612 16 597 7 c 0 589 2 576 0 555 0 c 2 416 0 l 2 392 0 380 3 371 10 c 0 358 19 350 34 350 50 c 0 350 67 359 84 374 93 c 0 383 99 390 100 416 100 c 2 439 100 l 1 297 450 l 1 155 100 l 1 EndSplineSet EndChar StartChar: Mu Encoding: 924 924 Width: 600 Flags: W HStem: 0 100<29 41 143 189 413 461 563 573> 563 20<438 548> VStem: -19 262<48 52> 42 100<100 388> 361 262<48 52> 462 100<100 388> DStem: 142 389 165 583 260 138 303 286 438 583 462 389 303 286 351 138 Ref: 77 N 1 0 0 1 0 0 EndChar StartChar: Nu Encoding: 925 925 Width: 600 Flags: W HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5> VStem: 73 100<100 394> 431 100<191 483> Ref: 78 N 1 0 0 1 0 0 EndChar StartChar: Xi Encoding: 926 926 Width: 600 Flags: W HStem: 0 100<135 465> 0 217<83 87 505 517> 255 87<246 355> 483 100<147 453> VStem: 35 100<101 176> 35 530<1 100> 47 100<406 482> 47 506<483 582> 163 83<216 254 343 369> 355 83<216 254 343 384> 453 100<406 482> 465 100<101 176> Fore 465 100 m 1 465 167 l 2 465 195 487 217 515 217 c 0 543 217 565 195 565 167 c 2 565 0 l 1 35 0 l 1 35 167 l 2 35 195 57 217 85 217 c 0 113 217 135 195 135 167 c 2 135 100 l 1 465 100 l 1 438 233 m 2 438 215 438 206 427 194 c 24 418 184 409 181 396 181 c 0 385 181 375 184 366 194 c 24 355 206 355 216 355 233 c 2 355 255 l 1 246 255 l 1 246 233 l 2 246 206 244 203 235 193 c 0 227 184 209 181 204 181 c 0 192 181 181 183 172 194 c 24 162 206 163 214 163 233 c 2 163 367 l 2 163 385 162 393 172 405 c 24 181 415 191 416 204 416 c 0 221 416 228 413 236 403 c 0 242 395 246 376 246 367 c 2 246 342 l 1 355 342 l 1 355 367 l 2 355 387 357 397 370 408 c 0 376 413 385 416 396 416 c 0 407 416 418 415 427 405 c 24 438 393 438 386 438 367 c 2 438 233 l 2 453 483 m 1 147 483 l 1 147 416 l 2 147 388 125 366 97 366 c 0 69 366 47 388 47 416 c 2 47 583 l 1 553 583 l 1 553 416 l 2 553 388 531 366 503 366 c 0 475 366 453 388 453 416 c 2 453 483 l 1 EndSplineSet MinimumDistance: x3,-1 y35,38 y35,36 y34,41 y34,43 y9,6 y9,8 y0,3 y0,1 EndChar StartChar: Omicron Encoding: 927 927 Width: 600 Flags: W HStem: -14 100<251 348.5> 497 100<251 333.5> VStem: 21 100<235.5 348> 479 100<234 335> Ref: 79 N 1 0 0 1 0 0 EndChar StartChar: Pi Encoding: 928 928 Width: 600 Flags: W HStem: 0 100<69 94 196 231 375 408 510 535> 483 100<196 408> VStem: 95 100<100 483> 409 100<100 483> Fore 409 483 m 1 195 483 l 1 195 100 l 1 210 100 l 2 236 100 246 98 255 91 c 0 268 81 276 66 276 50 c 0 276 33 267 16 252 7 c 0 244 2 231 0 210 0 c 2 89 0 l 2 65 0 52 3 43 9 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 99 64 100 89 100 c 2 95 100 l 1 95 483 l 1 62 486 43 504 43 533 c 0 43 550 52 567 67 576 c 0 76 582 84 583 109 583 c 2 495 583 l 2 522 583 531 581 541 574 c 0 553 564 561 549 561 533 c 0 561 504 542 486 509 483 c 1 509 100 l 1 515 100 l 2 542 100 551 98 560 91 c 0 573 81 581 66 581 50 c 0 581 33 572 16 557 7 c 0 549 2 536 0 515 0 c 2 394 0 l 2 370 0 358 3 349 9 c 0 336 19 328 35 328 50 c 0 328 67 337 84 352 93 c 0 361 99 370 100 394 100 c 2 409 100 l 1 409 483 l 1 EndSplineSet MinimumDistance: x21,-1 EndChar StartChar: Rho Encoding: 929 929 Width: 600 Flags: W HStem: 0 100<79 94 194 293> 200 100<194 292> 483 100<79 94 194 312 194 194> VStem: 94 100<100 200 300 483> 423 106<371 419.5> Ref: 80 N 1 0 0 1 0 0 EndChar StartChar: Sigma Encoding: 931 931 Width: 600 Flags: W HStem: 0 100<202 427> 0 238<473 479> 483 100<203 427> VStem: 73 454<1 100 486 582> 427 100<101 192 400 482> DStem: 73 486 202 483 225 293 352 293 225 293 352 293 73 100 201 100 Ref: 425 N 1 0 0 1 0 0 EndChar StartChar: Tau Encoding: 932 932 Width: 600 Flags: W HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349> VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483> Ref: 84 N 1 0 0 1 0 0 EndChar StartChar: Upsilon Encoding: 933 933 Width: 600 Flags: W HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> VStem: 250 100<100 245> Ref: 89 N 1 0 0 1 0 0 EndChar StartChar: Phi Encoding: 934 934 Width: 600 Flags: W HStem: 0 100<131 250 350 469> 121 100<211 250 350.125 398.707> 362 100<211 250 350.125 400.034> 483 100<131 250 350 469> VStem: 4 100<287 305> 250 100<99 121 221 362 461 483> 496 100<287 305> Ref: 1060 N 1 0 0 1 0 0 EndChar StartChar: Chi Encoding: 935 935 Width: 600 Flags: W HStem: 0 21<76 187 413 524> 0.749951 99.25<58 69> 563 20<85 176 422 512> VStem: 10 243<48 52> 19 224<528 535> 347 243<48 52> 355 223<528 535> DStem: 77 483 205 484 235 298 300 375 235 298 301 220 69 100 199 100 301 220 364 297 402 100 531 100 393 484 521 483 300 375 364 297 Ref: 88 N 1 0 0 1 0 0 EndChar StartChar: Psi Encoding: 936 936 Width: 600 Flags: W HStem: 0 100<205 249 351 392> 143 104<240 249 350.125 363.429> 483 100<32 50 227 249 351 368 550 560> VStem: 50 100<343 483> 250 100<100 143 249 483> 450 100<343 483> 450 166<528 535> Fore 550 483 m 1 550 360 l 2 550 241 453 143 350 143 c 1 350 100 l 1 375 100 l 2 402 100 410 98 420 91 c 0 434 81 441 66 441 50 c 0 441 17 419 0 375 0 c 2 225 0 l 2 201 0 189 3 180 10 c 0 167 19 159 35 159 50 c 0 159 67 168 84 183 93 c 0 192 99 199 100 225 100 c 2 250 100 l 1 250 143 l 1 147 143 50 241 50 360 c 2 50 483 l 1 45 483 l 2 5 483 -16 501 -16 533 c 0 -16 549 -8 564 5 574 c 0 15 581 23 583 50 583 c 2 127 583 l 1 150 583 l 1 150 344 l 2 150 298 197 247 250 247 c 1 250 483 l 1 249 483 l 2 224 483 213 485 204 492 c 0 191 502 183 517 183 533 c 0 183 550 192 567 207 576 c 0 216 582 223 583 249 583 c 2 351 583 l 2 378 583 386 581 396 574 c 0 410 564 417 549 417 533 c 0 417 516 408 499 393 490 c 0 385 485 374 483 351 483 c 2 350 483 l 1 350 248 l 1 405 248 450 298 450 344 c 2 450 583 l 1 473 583 l 1 550 583 l 2 577 583 585 581 595 574 c 0 608 564 616 549 616 533 c 0 616 501 595 483 555 483 c 2 550 483 l 1 EndSplineSet EndChar StartChar: Omega Encoding: 937 937 Width: 600 Flags: W HStem: 0 100<129 179 421 471> 0 158<77 81 510.788 525> 0 202<253 279 321 349> 483 100<257 344> VStem: 29 100<101 118> 29 251<1 100> 40 100<336 352> 180 100<101 118> 320 100<101 118> 320 251<1 100> 460 100<336 352> 471 100<101 118> Fore 180 118 m 1 92 156 40 251 40 344 c 0 40 469 127 583 276 583 c 2 324 583 l 2 480 583 560 451 560 344 c 0 560 251 508 156 420 118 c 1 420 100 l 1 471 100 l 1 471 108 l 2 471 136 493 158 521 158 c 0 549 158 571 136 571 108 c 2 571 0 l 1 320 0 l 1 320 202 l 1 342 202 l 2 403 202 460 270 460 344 c 0 460 419 425 483 324 483 c 2 276 483 l 2 179 483 140 432 140 344 c 0 140 270 196 202 258 202 c 2 280 202 l 1 280 0 l 1 29 0 l 1 29 108 l 2 29 136 51 158 79 158 c 0 107 158 129 136 129 108 c 2 129 100 l 1 180 100 l 1 180 118 l 1 EndSplineSet MinimumDistance: x10,-1 y26,23 y26,25 y7,10 y7,8 Back 563 -25 m 1 306 -25 l 1 306 193 l 1 353 200 366 199 396 218 c 0 417 228 430 244 443 265 c 0 455 284 467 323 467 353 c 0 467 400 455 436 430 463 c 0 405 490 378 505 347 509 c 1 260 509 l 2 233 505 206 484 191 471 c 0 184 464 177 455 170 442 c 1 157 426 149 382 149 353 c 0 149 307 164 266 188 242 c 0 211 217 236 202 265 198 c 1 308 195 l 1 308 -25 l 1 56 -25 l 1 56 142 l 2 56 172 71 192 99 192 c 0 117 192 120 189 128 179 c 0 136 168 141 160 141 142 c 2 141 63 l 1 222 63 l 1 222 118 l 1 210 120 188 132 172 141 c 0 141 157 116 188 97 218 c 0 78 248 66 307 66 355 c 0 66 424 90 490 125 527 c 0 159 561 200 587 257 594 c 1 350 594 l 1 385 591 415 582 438 567 c 1 469 551 492 529 509 502 c 0 535 458 552 409 552 348 c 0 552 273 520 216 478 173 c 0 453 146 424 128 392 119 c 1 392 63 l 1 477 63 l 1 477 142 l 2 477 161 487 184 500 189 c 0 505 191 511 192 518 192 c 0 533 192 543 188 549 180 c 0 557 166 563 160 563 142 c 2 563 -25 l 1 EndSplineSet EndChar StartChar: Iotadieresis Encoding: 938 938 Width: 600 Flags: W HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> VStem: 136 120<680.5 713> 250 100<100 483> 344 120<680.5 713> Ref: 168 N 1 0 0 1 0 103 Ref: 921 N 1 0 0 1 0 0 EndChar StartChar: Upsilondieresis Encoding: 939 939 Width: 600 Flags: W HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> VStem: 136 120<680.5 713> 250 100<100 245> 344 120<680.5 713> Ref: 168 N 1 0 0 1 0 103 Ref: 933 N 1 0 0 1 0 0 EndChar StartChar: alphatonos Encoding: 940 940 Width: 600 Flags: W HStem: -14 100<257 289> 0 100<531 561> 0 467<471.156 483> 351 100<273 289> 515 218<289 305> VStem: 33 100<210 226> 257 80<547 695> 431 100<210 226 401.032 423.889> Ref: 900 S 1 0 0 1 -3 1 Ref: 945 N 1 0 0 1 0 0 EndChar StartChar: epsilontonos Encoding: 941 941 Width: 600 Flags: W HStem: -16 100<286 320> 1 166<474 480> 178 100<286 365.108> 350 100<286 320> 513 218<291 307> VStem: 73 110<121 129> 94 110<310 318> 259 80<545 693> Ref: 900 N 1 0 0 1 -1 -1 Ref: 949 N 1 0 0 1 0 0 EndChar StartChar: etatonos Encoding: 942 942 Width: 600 Flags: W HStem: -205 21<410 505> -204.959 99.9592<510 525.03> 0 100<71 94 196 215> 350 100<311 334> 417 20<101 195> 498 218<324 340> VStem: 95 100<100 282> 292 80<530 678> 410 100<-105 291> 410 161<-157 -153> Ref: 900 N 1 0 0 1 32 -16 Ref: 951 N 1 0 0 1 0 0 EndChar StartChar: iotatonos Encoding: 943 943 Width: 600 Flags: W HStem: -16 100<424 441> 337 100<153 250> 498 218<253 269> VStem: 221 80<530 678> 250 100<160 337> Ref: 900 N 1 0 0 1 -39 -16 Ref: 953 N 1 0 0 1 0 0 EndChar StartChar: upsilondieresistonos Encoding: 944 944 Width: 600 Flags: W HStem: -16 100<282 298> 337 100<58 92 374 404 505 538> 494 218<292 308> VStem: 92 100<160 337> 136 120<545.5 578> 260 80<526 674> 344 120<545.5 578> 405 100<163 337> Ref: 168 S 1 0 0 1 0 -32 Ref: 781 S 1 0 0 1 0 -20 Ref: 965 N 1 0 0 1 0 0 EndChar StartChar: alpha Encoding: 945 945 Width: 600 Flags: W HStem: -14 100<257 289> 0 100<531 561> 0 467<471.156 483> 351 100<273 289> VStem: 33 100<210 226> 431 100<210 226 401.032 423.889> Ref: 593 N 1 0 0 1 0 0 EndChar StartChar: beta Encoding: 946 946 Width: 600 Flags: W HStem: -205 100<61 95> -16 100<317 352> 523 100<253 280> VStem: 13 225<-157 -152> 95 100<-105 -13 99 467> 346 100<451 467> 429 100<151.982 179> Fore 195 1.08574 m 1 195 -105 l 1 223 -110 238 -127 238 -154 c 0 238 -189 217 -205 172 -205 c 2 79 -205 l 2 55 -205 42 -202 33 -196 c 0 21 -186 13 -170 13 -155 c 0 13 -138 23 -121 37 -112 c 0 46 -106 54 -105 79 -105 c 2 95 -105 l 1 95 478 l 2 95 563 167 623 268 623 c 0 369 623 446 551 446 456 c 0 446 419 438 397 411 365 c 1 488 320 529 249 529 165 c 0 529 57 441 -16 342 -16 c 0 292.411 -16 224.702 -4.46357 195 1.08574 c 1 195 99.7696 m 1 218.714 93.9002 270.497 84 350 84 c 0 382 84 429 116 429 164 c 0 429 200 414 234 388 259 c 0 361 285 330 297 278 303 c 0 241 307 223 323 223 353 c 0 223 381 242 399 276 402 c 0 302 405 310 407 321 415 c 0 337 425 346 442 346 459 c 0 346 496 314 523 268 523 c 0 221 523 195 502 195 461 c 2 195 99.7696 l 1 EndSplineSet MinimumDistance: x14,-1 Back 557 223 m 1 557 153 534 95 487 50 c 0 440 4 379 -19 304 -19 c 0 272 -19 240 -15 207 -6 c 1 207 -59 l 1 222 -61 232 -64 237 -67 c 1 241 -72 245 -78 248 -84 c 0 251 -90 252 -96 252 -102 c 0 252 -107 251 -112 249 -116 c 0 247 -120 244 -125 239 -132 c 1 234 -136 229 -139 222 -142 c 0 215 -145 208 -146 201 -146 c 2 85 -146 l 2 78 -146 72 -145 66 -142 c 0 60 -140 54 -137 49 -132 c 0 42 -123 39 -113 39 -102 c 0 39 -89 42 -78 49 -68 c 1 56 -62 68 -59 85 -59 c 2 122 -59 l 1 122 484 l 2 122 505 126 527 135 552 c 0 144 577 156 598 173 617 c 1 195 639 221 652 252 655 c 0 283 658 308 660 329 660 c 0 377 660 414 648 440 623 c 0 466 598 482 577 489 560 c 0 496 543 499 521 499 496 c 0 499 477 495 457 487 437 c 0 478 417 466 400 451 386 c 1 490 365 516 343 529 318 c 0 542 293 551 261 557 223 c 1 471 216 m 1 461 299 402 341 293 341 c 0 280 341 271 345 264 352 c 0 257 359 253 368 253 380 c 0 253 381 253 383 253 384 c 0 253 395 257 404 264 413 c 1 274 420 285 424 296 424 c 0 308 424 324 425 343 428 c 0 362 430 375 433 382 436 c 0 389 439 394 444 398 451 c 0 401 458 404 464 407 470 c 0 410 476 412 482 414 487 c 0 416 492 417 497 417 501 c 0 417 523 409 541 393 556 c 0 377 571 356 578 329 578 c 0 310 578 292 577 276 574 c 0 259 571 246 566 236 558 c 0 225 549 218 538 214 525 c 0 210 512 208 499 208 488 c 2 208 91 l 1 229 84 248 79 265 76 c 0 282 73 298 72 315 72 c 0 358 72 394 86 425 113 c 0 456 140 471 174 471 216 c 1 EndSplineSet EndChar StartChar: gamma Encoding: 947 947 Width: 600 Flags: W HStem: -205 100<224 248 351 375> 337 99.0333<408 419> 417 20G<89 179 423 515> VStem: 23 222<376.035 389> 249 101<-105 -3> 356 225<375.996 389> DStem: 72 337 186 337 249 -3 300 114 420 337 529 337 300 114 350 -3 Fore 249 -3 m 1 72 337 l 1 41 341 23 359 23 387 c 0 23 414 40 432 69 435 c 0 80 437 82 437 89 437 c 2 179 437 l 2 205 437 215 435 225 428 c 0 237 418 245 403 245 387 c 0 245 356 224 338 186 337 c 1 300 114 l 1 420 337 l 1 379 337 356 355 356 387 c 0 356 414 373 432 402 435 c 0 413 437 415 437 423 437 c 2 515 437 l 2 541 437 551 435 560 428 c 0 574 418 581 403 581 387 c 0 581 358 562 340 529 337 c 1 350 -3 l 1 350 -105 l 1 361 -105 l 2 387 -105 397 -107 407 -114 c 0 419 -124 427 -139 427 -155 c 0 427 -172 418 -188 403 -198 c 0 395 -203 383 -205 361 -205 c 2 238 -205 l 2 213 -205 207.646 -206.203 193 -195 c 24 178.646 -184.021 172 -171 172 -155 c 0 172 -138 181 -121 196 -112 c 0 205 -107 214 -105 238 -105 c 2 249 -105 l 1 249 -3 l 1 EndSplineSet MinimumDistance: x16,-1 x11,16 x2,7 EndChar StartChar: delta Encoding: 948 948 Width: 600 Flags: W HStem: -16 100<282 314> 350 100<282 314> 463 169<500 506> 538 100<234 272> VStem: 42 100<208 224> 60 100<485 503> 458 100<208 224> Fore 302 350 m 0 211 350 142 293 142 217 c 0 142 142 211 84 300 84 c 0 389 84 458 142 458 217 c 0 458 291 389 350 302 350 c 0 449 503 m 1 400 514 316 538 248 538 c 0 176.5 538 160 521 160 492 c 0 160 474 173 453 270 450 c 0 303 450 l 2 444 450 558 346 558 217 c 0 558 87 444 -16 300 -16 c 0 156 -16 42 87 42 217 c 0 42 284 71 343 119 385 c 1 84 408 60 443 60 492 c 0 60 599 162.5 638 248 638 c 0 323 638 411 614 471 601 c 1 476 622 489 632 504 632 c 8 536 632 551 612 551 566 c 2 551 529 l 2 551 503 549 493 542 483 c 0 532 471 516 463 501 463 c 0 480 463 466 472 454 494 c 2 449 503 l 1 EndSplineSet MinimumDistance: x9,-1 Back 540 220 m 0 540 186 534 154 522 125 c 0 509 96 491 69 467 44 c 0 443 19 416 1 387 -12 c 0 358 -25 326 -32 293 -32 c 0 259 -32 227 -26 198 -13 c 0 169 0 136 25 100 63 c 0 64 100 46 153 46 220 c 0 46 290 61 340 91 371 c 0 121 402 143 421 156 428 c 1 138 440 124 454 113 469 c 0 102 484 97 502 97 523 c 0 97 570 110 603 136 623 c 0 161 643 197 653 242 653 c 0 249 653 255 653 262 653 c 0 269 653 276 652 285 651 c 0 302 651 322 649 343 644 c 0 364 639 394 632 434 623 c 1 434 632 435 639 437 646 c 0 439 653 442 658 445 662 c 1 455 669 466 673 477 673 c 0 489 673 498 670 503 665 c 0 508 659 512 653 515 646 c 0 518 639 519 631 519 624 c 2 519 546 l 2 519 537 518 529 516 523 c 0 513 517 509 511 503 504 c 0 496 497 488 494 477 494 c 0 472 494 467 495 461 498 c 0 454 501 449 504 445 507 c 1 438 516 434 529 434 546 c 1 421 550 396 555 358 562 c 0 320 568 294 572 279 574 c 0 264 575 250 576 238 576 c 0 196 576 175 560 175 529 c 1 180 512 191 498 210 488 c 0 229 478 257 473 295 473 c 0 362 473 414 455 450 418 c 0 485 381 509 348 522 318 c 0 534 287 540 255 540 220 c 0 456 220 m 0 456 266 439 305 405 338 c 1 376 369 338 385 293 385 c 0 270 385 249 381 231 374 c 0 212 366 191 350 167 326 c 0 143 302 131 267 131 220 c 0 131 175 147 137 180 104 c 0 213 71 250 55 293 55 c 0 338 55 372 67 395 92 c 0 418 117 434 139 443 159 c 0 452 178 456 199 456 220 c 0 EndSplineSet EndChar StartChar: epsilon Encoding: 949 949 Width: 600 Flags: W HStem: -16 100<286 320> 1 166<474 480> 178 100<286 365.108> 350 100<286 320> VStem: 73 110<121 129> 94 110<310 318> Ref: 1079 N -1 0 0 1 600 0 Back 515 37 m 2 515 27 514 19 511 14 c 0 508 9 503 5 498 2 c 0 491 -4 482 -7 473 -7 c 0 464 -7 456 -4 449 1 c 0 443 4 439 8 436 14 c 0 433 19 431 29 431 42 c 1 450 42 l 1 450 30 l 1 425 13 401 0 378 -10 c 0 355 -20 330 -25 305 -25 c 0 276 -25 253 -22 235 -15 c 0 216 -8 196 2 175 16 c 1 143 44 127 78 127 119 c 1 124 132 l 1 124 151 129 171 138 190 c 0 147 209 161 225 178 238 c 1 163 247 153 259 146 273 c 0 139 286 135 301 135 317 c 0 135 362 151 397 182 424 c 1 197 439 214 450 231 456 c 0 248 462 270 465 299 465 c 0 363 465 426 442 489 396 c 1 506 373 l 1 506 363 506 356 505 351 c 0 504 346 501 341 498 336 c 1 488 327 479 322 472 322 c 0 469 322 l 0 464 322 458 323 451 325 c 0 442 328 433 331 425 336 c 0 416 340 410 344 405 348 c 0 400 352 394 357 387 363 c 0 380 369 368 375 353 381 c 0 338 386 322 389 307 389 c 0 276 389 254 382 239 368 c 0 224 353 216 339 216 325 c 1 219 314 222 306 226 300 c 0 229 294 237 289 248 285 c 0 259 280 270 278 283 278 c 2 295 278 l 2 310 278 321 276 327 271 c 1 338 266 344 254 344 237 c 0 344 228 339 219 330 208 c 1 319 199 308 195 297 195 c 2 283 195 l 1 275 195 l 2 268 195 260 194 253 192 c 0 246 190 239 187 233 183 c 0 227 178 222 170 218 157 c 0 213 144 211 132 211 120 c 0 211 106 217 94 228 84 c 0 239 73 249 66 259 61 c 0 269 56 282 53 297 53 c 0 312 53 327 55 341 60 c 0 354 64 370 70 389 79 c 2 431 101 l 1 431 111 l 2 431 127 434 139 441 147 c 1 451 154 462 158 473 158 c 0 484 158 494 154 502 147 c 1 511 136 515 124 515 111 c 2 515 37 l 2 EndSplineSet EndChar StartChar: zeta Encoding: 950 950 Width: 600 Flags: W HStem: -205 100<329 361> 0 100<293 340> 524 100<197 316> VStem: 92 100<179 195> 97 100<499 523> 97 409<543 623> 273 244<-157 -153> 378 99.5483<-29 -20> DStem: 329.977 524 506 543 238 446 302 370 Fore 467.339 -105.397 m 1 481.856 -106.266 489.428 -108.7 497 -114 c 0 509 -124 517 -139 517 -155 c 0 517 -172 508 -188 493 -198 c 0 485 -203 473 -205 451 -205 c 2 339 -205 l 2 314 -205 308.645 -206.203 294 -195 c 24 279.646 -184.021 273 -171 273 -155 c 0 273 -138 282 -121 297 -112 c 0 306 -107 315 -105 339 -105 c 2 361.525 -105 l 1 373.871 -79.0084 378 -44.8154 378 -22 c 0 378 -4 363 0 300 0 c 0 164 0 92 79 92 182 c 0 92 277 145.427 367.494 238 446 c 2 329.977 524 l 1 197 524 l 1 197 515 l 2 197 488 195 480 188 470 c 0 178 457 163 449 147 449 c 0 130 449 113 458 104 473 c 0 99 482 97 492 97 515 c 2 97 624 l 1 506 624 l 1 506 543 l 1 302 370 l 2 222.502 302.583 192 244 192 182 c 0 192 146 238 100 300 100 c 0 434 100 478 94 478 -6 c 0 478 -26.9424 476.957 -68.9234 467.339 -105.397 c 1 EndSplineSet MinimumDistance: x23,-1 Back 500 -169 m 0 500 -177 498 -183 495 -188 c 0 491 -193 488 -196 485 -198 c 0 482 -201 477 -204 470 -207 c 0 462 -211 455 -213 450 -213 c 2 324 -213 l 2 316 -213 309 -212 304 -210 c 0 298 -208 293 -205 289 -202 c 0 280 -198 275 -187 275 -169 c 0 275 -158 276 -150 278 -145 c 0 280 -141 284 -138 289 -136 c 1 295 -131 307 -128 324 -128 c 2 352 -128 l 1 367 -103 375 -83 377 -66 c 1 374 -35 341 -15 280 -6 c 0 219 3 173 14 144 28 c 0 114 42 99 83 99 151 c 0 99 229 122 302 168 371 c 0 213 439 270 501 338 556 c 1 190 556 l 1 190 533 l 2 190 524 189 518 188 514 c 0 186 509 182 503 177 495 c 0 171 486 160 482 145 482 c 0 132 482 122 486 116 495 c 0 110 504 107 516 107 533 c 2 107 642 l 1 494 642 l 1 494 564 l 1 407 510 334 444 274 367 c 0 213 290 183 219 183 154 c 0 183 99 207 63 254 47 c 1 297 39 341 31 385 24 c 1 433 11 457 -18 457 -65 c 0 457 -76 456 -86 455 -94 c 0 453 -103 449 -114 444 -128 c 1 450 -128 l 2 464 -128 474 -130 480 -134 c 0 486 -139 491 -144 495 -150 c 0 498 -157 500 -163 500 -169 c 0 EndSplineSet EndChar StartChar: eta Encoding: 951 951 Width: 600 Flags: W HStem: -205 21G<410 505> -204.959 99.9592<510 525.03> 0 100<71 94 196 215> 350 100<311 334> 417 20G<101 195> VStem: 95 100<100 282> 410 100<-105 291> 410 161<-157 -153> Fore 410 -205 m 17 410 278 l 2 410 327 382 350 320 350 c 0 274 350 242 333 195 282 c 1 195 100 l 1 201 100 l 2 228 100 236 98 246 91 c 0 259 81 267 66 267 50 c 0 267 33 258 17 243 7 c 0 235 2 222 0 201 0 c 2 89 0 l 2 65 0 53 3 43 10 c 0 31 19 23 35 23 50 c 0 23 67 32 84 47 93 c 0 56 98 64 100 89 100 c 2 95 100 l 1 95 337 l 1 56 338 34 355 34 387 c 0 34 414 51 432 80 435 c 0 91 437 93 437 101 437 c 2 195 437 l 1 195 389 l 1 243 435 277 450 332 450 c 0 377 450 418 437 451 413 c 0 491 383 510 341 510 282 c 2 510 -105 l 1 549 -105 571 -123 571 -155 c 0 571 -172 562 -189 547 -198 c 0 539 -203 526 -205 505 -205 c 2 410 -205 l 17 EndSplineSet MinimumDistance: x26,-1 EndChar StartChar: theta Encoding: 952 952 Width: 600 Flags: W HStem: -15 100<291 307> 253 100<184 416> 523 100<291 307> VStem: 83 434<253 353> 83.6045 99.3955<241 252 353.125 375.056> 417 99.3955<241 252 353.125 375.056> Fore 517 344 m 2 517 264 l 2 517 173 489 92 439 40 c 0 405 4 357 -15 300 -15 c 0 243 -15 195 4 161 40 c 0 111 92 83 173 83 264 c 2 83 344 l 2 83 435 111 516 161 568 c 0 195 604 243 623 300 623 c 0 357 623 405 604 439 568 c 0 489 516 517 435 517 344 c 2 183 353 m 1 417 353 l 1 416 456 371 523 300 523 c 0 229 523 184 456 183 353 c 1 417 253 m 1 183 253 l 1 184 151 230 85 300 85 c 0 370 85 416 151 417 253 c 1 EndSplineSet EndChar StartChar: iota Encoding: 953 953 Width: 600 Flags: W HStem: -16 100<424 441> 337 100<153 250> VStem: 250 100<160 337> Ref: 617 N 1 0 0 1 0 0 EndChar StartChar: kappa Encoding: 954 954 Width: 600 Flags: W HStem: 0 100<100.726 133 447 501> 337 100<99 133 447 485> VStem: 134 100<99 164 287 337> DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227 Ref: 1082 N 1 0 0 1 0 0 EndChar StartChar: lambda Encoding: 955 955 Width: 600 Flags: W HStem: 0 21G<87 177 421 513> 0.0135736 99.9864<405.713 417.969> 524 100<85 196> VStem: 21 222<48 52> 354 225<48 52> DStem: 196 524 306 524 242 434 527 100 242 434 298 323 70 100 184 100 298 323 306 524 418 100 527 100 Fore 306 524 m 2 527 100 l 1 560 97 579 79 579 50 c 0 579 34 572 19 558 9 c 0 549 2 539 0 513 0 c 2 421 0 l 2 413 0 411 0 400 2 c 0 371 5 354 23 354 50 c 0 354 82 377 100 418 100 c 1 298 323 l 1 184 100 l 1 222 99 243 81 243 50 c 0 243 34 235 19 223 9 c 0 213 2 203 0 177 0 c 2 87 0 l 2 80 0 78 0 67 2 c 0 38 5 21 23 21 50 c 0 21 78 39 96 70 100 c 1 242 434 l 1 196 524 l 1 96 524 l 2 72 524 63 526 54 531 c 0 39 540 30 557 30 574 c 0 30 590 37 603 51 614 c 24 66 625 71 624 96 624 c 2 193 624 l 2 271 624 283 569 306 524 c 2 EndSplineSet MinimumDistance: x2,-1 x7,2 x16,11 EndChar StartChar: uni03BC Encoding: 956 956 Width: 600 Flags: W HStem: -205 100<67 94 196 221> -13 100<266 285> 0 21G<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 94 349.509 409> VStem: 95 100<-105 0 147 337> 410 100<155 337> Fore 195 1 m 1 195 -105 l 5 201 -105 l 6 227 -105 237 -107 247 -114 c 4 259 -124 267 -139 267 -155 c 4 267 -172 258 -188 243 -198 c 4 235 -203 223 -205 201 -205 c 6 89 -205 l 6 64 -205 59 -206 44 -195 c 28 30 -184 23 -171 23 -155 c 4 23 -138 32 -121 47 -112 c 4 56 -107 65 -105 89 -105 c 6 95 -105 l 5 95 337 l 1 68 337 l 2 35 337 13 358 13 387 c 0 13 404 22 421 37 430 c 0 46 436 54 437 79 437 c 2 195 437 l 1 195 159 l 2 195 110 223 87 283 87 c 0 333 87 358 100 410 155 c 1 410 337 l 1 375 337 l 2 350 337 345 336 330 347 c 24 316 358 309 372 309 387 c 0 309 404 318 421 333 430 c 0 342 436 351 437 375 437 c 2 510 437 l 1 510 100 l 1 549 100 571 82 571 50 c 0 571 33 562 17 547 7 c 0 539 2 526 0 505 0 c 2 410 0 l 1 410 48 l 1 360 1 328 -13 273 -13 c 0 245 -13 219 -8 195 1 c 1 EndSplineSet MinimumDistance: x28,-1 Back 553 20 m 0 553 10 549 0 541 -9 c 1 536 -13 531 -16 526 -19 c 0 521 -22 514 -23 505 -23 c 2 409 -23 l 1 409 13 l 1 364 -20 315 -37 263 -37 c 0 246 -37 232 -36 222 -34 c 0 211 -33 200 -29 187 -23 c 1 187 -128 l 1 241 -128 l 2 254 -128 265 -131 273 -137 c 1 284 -141 289 -152 289 -169 c 0 289 -175 288 -180 286 -184 c 0 284 -189 281 -193 278 -197 c 0 274 -202 269 -205 262 -208 c 0 255 -211 248 -213 241 -213 c 2 48 -213 l 2 40 -213 33 -212 28 -210 c 0 22 -208 17 -205 13 -202 c 1 4 -199 0 -188 0 -169 c 0 0 -157 1 -149 3 -145 c 0 5 -142 8 -139 13 -137 c 1 20 -131 32 -128 48 -128 c 2 102 -128 l 1 102 362 l 1 71 362 l 2 63 362 56 363 50 366 c 0 44 368 38 371 32 376 c 1 25 385 21 395 21 406 c 0 21 424 26 435 36 440 c 1 44 446 56 449 71 449 c 2 187 449 l 1 187 117 l 2 187 96 193 79 204 66 c 1 211 60 220 55 232 52 c 0 243 49 254 47 265 47 c 0 293 47 317 53 338 65 c 0 359 77 382 97 409 126 c 1 409 362 l 1 357 362 l 2 348 362 341 363 336 366 c 0 331 368 325 371 320 376 c 0 315 383 311 388 310 393 c 0 308 397 307 401 307 406 c 0 307 419 312 429 321 437 c 0 330 445 342 449 357 449 c 2 493 449 l 1 493 65 l 1 505 65 l 2 514 65 521 64 527 62 c 0 532 60 537 57 541 54 c 1 544 50 547 45 550 39 c 0 552 32 553 26 553 20 c 0 EndSplineSet EndChar StartChar: nu Encoding: 957 957 Width: 600 Flags: W HStem: 0 20 417 20<66 198 198 211 399 534 534 547> Ref: 118 N 1 0 0 1 0 0 EndChar StartChar: xi Encoding: 958 958 Width: 600 Flags: W HStem: -224 86<341 376 473 479> 291 87<385 437> 551 86<201 281 435 504> VStem: 117 84<517 550> 117 388<554 636> 128 78<128 149> 236 79<432.338 448> 298 224<-189.839 -176> 418 80.8327<-78 -76> Fore 522 -181 m 0 522 -190 519 -198 514 -204 c 0 508 -210 501 -215 493 -218 c 0 484 -222 477 -224 472 -224 c 2 347 -224 l 2 338 -224 330 -223 325 -221 c 0 320 -219 315 -216 311 -213 c 1 302 -210 298 -199 298 -181 c 0 298 -168 299 -160 301 -156 c 0 303 -153 306 -150 311 -148 c 1 319 -141 331 -138 347 -138 c 2 376 -138 l 1 385 -127 395 -116 405 -105 c 0 413 -96 417 -87 418 -79 c 0 418 -78 418 -76 417 -75 c 0 413 -46 380 -28 319 -21 c 0 257 -14 210 -2 177 15 c 0 144 31 128 76 128 149 c 0 128 202 147 250 184 292 c 0 221 333 252 356 277 359 c 0 302 362 318 364 327 364 c 0 341 364 350 364 353 364 c 0 362 361 l 1 350 316 l 1 312 328 284 343 265 361 c 0 246 379 236 407 236 446 c 0 236 458 237 471 239 485 c 1 250 510 264 532 282 551 c 1 201 551 l 1 201 528 l 2 201 519 200 512 199 508 c 0 197 504 193 498 187 489 c 0 180 480 170 476 157 476 c 0 144 476 134 480 129 488 c 0 124 496 120 502 119 507 c 0 118 512 117 519 117 528 c 2 117 637 l 1 505 637 l 1 505 553 l 1 434 554 l 1 421 550 l 2 397 541 376 531 358 518 c 0 339 505 328 492 323 477 c 0 318 462 315 450 315 443 c 0 315 430 319 419 328 410 c 0 336 401 355 390 385 378 c 1 431 378 l 2 446 378 458 374 467 366 c 1 475 356 479 346 479 335 c 0 479 329 478 324 476 320 c 0 474 315 471 310 467 305 c 0 464 302 458 299 451 296 c 0 443 293 436 291 431 291 c 2 384 291 l 2 278 291 219 244 206 149 c 1 206 86 229 47 274 32 c 1 319 26 365 20 413 13 c 0 461 6 489 -18 498 -61 c 0 499 -65 499 -69 499 -73 c 0 499 -83 497 -92 494 -101 c 0 489 -114 483 -127 476 -138 c 1 472 -138 l 2 486 -138 496 -140 502 -145 c 0 508 -150 513 -156 517 -162 c 0 520 -168 522 -174 522 -181 c 0 EndSplineSet MinimumDistance: x57,-1 EndChar StartChar: omicron Encoding: 959 959 Width: 600 Flags: W HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> VStem: 42 100<179.5 255> 458 100<179.5 254> Ref: 111 N 1 0 0 1 0 0 EndChar StartChar: pi Encoding: 960 960 Width: 600 Flags: W HStem: 0 21<113 202 398 487> 0.144728 99.8553<105 107 207.031 222.093 381 392 492.031 507.176> 337 99.8553<105 107 207 392 492 494> 417 20<113 487> VStem: 107 100<99 336> 392 100<99 336> Ref: 1087 N 1 0 0 1 0 0 EndChar StartChar: rho Encoding: 961 961 Width: 600 Flags: W HStem: -205 100<24 42 143 184> -16 100<280 312> 350 100<296 312> VStem: -24 260<-157 -153> 42 100<-105 19 211 227> 458 100<211 227> Fore 142 31.9407 m 1 142 -105 l 1 170 -105 l 2 196 -105 206 -107 216 -114 c 0 228 -124 236 -139 236 -155 c 0 236 -172 227 -188 212 -198 c 0 204 -203 192 -205 170 -205 c 2 42 -205 l 2 17 -205 11.6454 -206.203 -3 -195 c 24 -17.3535 -184.021 -24 -171 -24 -155 c 0 -24 -138 -15 -121 0 -112 c 0 9 -107 18 -105 42 -105 c 1 42 217 l 2 42 349 155 450 303 450 c 0 444 450 558 346 558 217 c 0 558 87 444 -16 300 -16 c 0 240.137 -16 185.459 1.80026 142 31.9407 c 1 142 217 m 0 142 142 211 84 300 84 c 0 389 84 458 142 458 217 c 0 458 291 389 350 302 350 c 0 211 350 142 293 142 217 c 0 EndSplineSet MinimumDistance: x14,-1 Back 553 226 m 0 553 161 536 111 502 76 c 0 467 41 436 18 408 6 c 0 379 -7 349 -13 317 -13 c 0 258 -13 208 6 165 43 c 1 165 -128 l 1 241 -128 l 2 254 -128 265 -131 273 -137 c 1 284 -141 289 -152 289 -169 c 0 289 -175 288 -180 286 -184 c 0 284 -189 281 -193 278 -197 c 0 274 -202 269 -205 262 -208 c 0 255 -211 248 -213 241 -213 c 2 48 -213 l 2 40 -213 33 -212 28 -210 c 0 22 -208 17 -205 13 -202 c 1 4 -199 0 -188 0 -169 c 0 0 -157 1 -149 3 -145 c 0 5 -142 8 -139 13 -137 c 1 20 -131 32 -128 48 -128 c 2 80 -128 l 1 80 202 l 1 78 220 l 1 78 244 82 270 91 298 c 0 100 325 110 347 123 363 c 0 136 379 149 394 164 407 c 0 178 420 192 431 207 440 c 0 236 457 273 465 317 465 c 0 361 465 397 457 424 441 c 0 451 425 472 410 487 395 c 0 502 380 513 363 522 345 c 0 533 326 541 307 546 288 c 0 551 269 553 248 553 226 c 0 468 226 m 0 468 267 457 298 436 321 c 0 415 344 395 359 377 366 c 0 359 373 339 376 317 376 c 0 294 376 274 373 257 367 c 0 240 360 221 345 199 322 c 0 176 299 165 267 165 226 c 0 165 186 180 151 209 120 c 0 238 89 274 74 317 74 c 0 358 74 393 89 423 119 c 0 453 148 468 184 468 226 c 0 EndSplineSet EndChar StartChar: sigma1 Encoding: 962 962 Width: 600 Flags: W HStem: -36 89<297 311 321.016 337> -19 171<169 177> 261 186<464 472> 382 81<289 325> VStem: 113 82<308 317> 134 80<102 111> 411 82<102 111> 431 79<308 317> Fore 510 315 m 2 510 300 507 288 500 277 c 0 493 266 480 261 462 261 c 1 460 264 l 1 439 277 l 1 436 285 434 291 433 296 c 0 432 301 431 305 431 309 c 0 431 317 428 325 423 334 c 1 417 341 411 348 405 354 c 0 399 359 392 364 383 368 c 0 374 372 363 375 352 378 c 0 340 381 326 382 311 382 c 0 290 382 272 380 258 377 c 0 244 374 232 368 222 359 c 0 212 350 205 342 201 335 c 0 197 328 195 320 195 311 c 0 195 294 202 281 215 273 c 0 228 264 241 258 256 253 c 0 271 248 289 244 311 239 c 1 342 236 364 233 379 230 c 0 393 227 405 223 416 216 c 1 429 210 440 203 449 196 c 0 458 189 468 178 478 163 c 0 488 148 493 128 493 103 c 0 493 56 473 22 434 0 c 1 404 -24 367 -36 323 -36 c 2 304 -36 l 2 269 -36 235 -26 202 -5 c 1 198 -8 l 2 190 -15 182 -19 175 -19 c 0 170 -19 164 -17 158 -14 c 0 152 -11 146 -8 141 -3 c 0 136 4 134 16 134 31 c 2 134 103 l 2 134 119 136 131 141 138 c 0 144 141 150 145 157 148 c 0 164 151 170 152 175 152 c 0 183 152 191 149 200 143 c 1 204 138 207 133 210 128 c 0 213 123 214 117 214 109 c 0 214 95 219 84 230 76 c 0 241 69 254 64 267 60 c 0 280 55 295 53 311 53 c 1 321 51 l 1 336 51 350 53 361 57 c 0 372 60 383 65 394 72 c 1 401 81 406 88 408 91 c 0 410 94 411 98 411 103 c 0 411 116 404 126 391 134 c 0 385 139 375 142 361 145 c 0 347 148 332 150 317 152 c 0 301 154 282 157 260 161 c 0 238 165 221 170 209 177 c 0 194 184 180 192 168 201 c 0 156 210 147 220 140 232 c 1 131 244 124 256 120 269 c 0 115 282 113 296 113 311 c 0 113 332 118 352 127 371 c 0 136 390 149 406 166 421 c 0 183 435 202 446 224 453 c 0 246 460 271 463 298 463 c 2 309 463 l 2 360 463 402 452 437 431 c 1 439 432 440 433 441 434 c 0 442 435 442 436 443 438 c 1 449 441 454 444 459 445 c 0 463 446 467 447 470 447 c 0 481 447 490 444 497 439 c 1 500 434 503 429 506 422 c 0 509 415 510 407 510 400 c 2 510 315 l 2 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: sigma Encoding: 963 963 Width: 600 Flags: W HStem: -16 100<282 314> 350 100<282 314 514 560> VStem: 42 100<208 224> 458 100<208 224> Fore 302 350 m 0 211 350 142 293 142 217 c 0 142 142 211 84 300 84 c 0 389 84 458 142 458 217 c 0 458 291 389 350 302 350 c 0 513 350 m 1 541 312 558 267 558 217 c 0 558 87 444 -16 300 -16 c 0 156 -16 42 87 42 217 c 0 42 349 155 450 303 450 c 2 552 450 l 2 580 450 602 428 602 400 c 0 602 372 580 350 552 350 c 2 513 350 l 1 EndSplineSet MinimumDistance: x5,-1 Back 536 360 m 1 431 360 l 1 467 317 485 265 485 204 c 0 485 137 462 80 416 33 c 0 370 -14 316 -38 253 -38 c 0 212 -38 173 -27 138 -5 c 1 103 12 74 41 53 81 c 0 32 120 21 161 21 204 c 0 21 247 29 285 46 316 c 0 63 347 88 377 123 406 c 0 158 435 202 449 257 449 c 2 276 449 l 1 536 451 l 1 536 360 l 1 399 204 m 0 399 251 385 288 356 317 c 0 327 346 293 360 253 360 c 0 212 360 180 349 159 328 c 0 137 306 123 286 117 268 c 0 110 249 107 228 107 204 c 0 107 180 110 159 117 142 c 0 123 125 137 105 160 83 c 1 182 60 213 49 253 49 c 0 294 49 328 64 357 94 c 0 385 123 399 160 399 204 c 0 EndSplineSet EndChar StartChar: tau Encoding: 964 964 Width: 600 Flags: W HStem: -16 100<406 422> 337 100<118 234 335 470> VStem: 234 100<160 337> Fore 334 337 m 1 334 173 l 2 334 120 366 84 412 84 c 0 428 84 444 87 460 92 c 0 474 97 477 98 483 98 c 0 508 98 531 75 531 48 c 0 531 8 486 -16 409 -16 c 0 310 -16 234 66 234 173 c 2 234 337 l 1 120 337 l 2 92 337 70 359 70 387 c 0 70 415 92 437 120 437 c 2 468 437 l 2 496 437 518 415 518 387 c 0 518 359 496 337 468 337 c 2 334 337 l 1 EndSplineSet MinimumDistance: x12,-1 x8,11 x8,9 x0,12 x0,14 EndChar StartChar: upsilon Encoding: 965 965 Width: 600 Flags: W HStem: -16 100<282 298> 337 100<58 92 374 404 505 538> VStem: 92 100<160 337> 405 100<163 337> Fore 405 337 m 1 386 337 l 2 361 337 350 339 341 346 c 0 328 356 320 371 320 387 c 0 320 404 329 421 344 430 c 0 353 435 362 437 386 437 c 2 521 437 l 2 547 437 557 435 567 428 c 0 579 418 587 403 587 387 c 0 587 370 578 353 563 344 c 0 555 339 544 337 521 337 c 2 505 337 l 1 505 166 l 2 505 42 420 -16 294 -16 c 0 171 -16 92 44 92 164 c 2 92 337 l 1 65 337 l 2 32 337 10 358 10 387 c 0 10 404 19 421 34 430 c 0 43 436 51 437 76 437 c 2 192 437 l 1 192 177 l 2 192 143 198 119 219 105 c 0 240 91 266 84 296 84 c 0 326 84 352 92 375 107 c 0 398 122 405 147 405 181 c 2 405 337 l 1 EndSplineSet MinimumDistance: x11,-1 EndChar StartChar: phi Encoding: 966 966 Width: 600 Flags: W HStem: -3 100<217 250 350 384> 337 100<217 250 350 384> VStem: -4 100<210 227> 250 100<-157 -3 98 336 437 595> 504 100<210 227> Fore 250 337 m 1 218 337 l 2 124 337 97 271 96 217 c 1 97 147 132 97 218 97 c 2 250 97 l 1 250 337 l 1 350 97 m 1 382 97 l 2 468 97 504 149 504 217 c 16 504 268 476 337 382 337 c 2 350 337 l 1 350 97 l 1 250 437 m 1 250 589 l 2 250 617 272 639 300 639 c 0 328 639 350 617 350 589 c 2 350 437 l 1 360 437 l 2 516 437 604 340 604 211 c 0 604 88 518 -3 362 -3 c 2 350 -3 l 1 350 -155 l 2 350 -183 328 -205 300 -205 c 0 272 -205 250 -183 250 -155 c 2 250 -3 l 1 238 -3 l 2 82 -3 -4 88 -4 211 c 0 -4 340 84 437 240 437 c 2 250 437 l 1 EndSplineSet MinimumDistance: y10,13 y10,11 y18,21 y18,19 EndChar StartChar: chi Encoding: 967 967 Width: 600 Flags: W HStem: -205 100<52 89 209.032 228.518 500 538> 337 100<52 91 372 380 501 538> VStem: 5 267<-157 -153> 317 267<377.191 389> DStem: 140 294 228 342 236 118 299 212 236 118 290 19 89 -105 209 -105 290 19 353 113 378 -142 466 -94 381 337 501 337 299 212 353 113 Fore 501 337 m 1 353 113 l 1 466 -94 l 2 467 -96 478 -105 508 -105 c 2 536 -105 l 2 564 -105 586 -127 586 -155 c 0 586 -183 564 -205 536 -205 c 16 471 -205 412 -204 378 -142 c 2 290 19 l 1 209 -105 l 1 232 -105 242 -107 251 -114 c 0 264 -124 272 -139 272 -155 c 0 272 -172 263 -189 248 -198 c 0 239 -203 230 -205 206 -205 c 2 71 -205 l 2 45 -205 35 -203 25 -196 c 0 13 -186 5 -171 5 -155 c 0 5 -138 14 -121 29 -112 c 0 37 -107 48 -105 71 -105 c 2 89 -105 l 1 236 118 l 1 140 294 l 2 126 319 114 337 82 337 c 2 54 337 l 2 26 337 4 359 4 387 c 0 4 415 26 437 54 437 c 2 82 437 l 2 162 437 208 378 228 342 c 2 299 212 l 1 381 337 l 1 358 337 347 339 338 346 c 0 325 356 317 371 317 387 c 0 317 404 326 421 341 430 c 0 350 435 359 437 383 437 c 2 518 437 l 2 544 437 554 435 564 428 c 0 576 418 584 403 584 387 c 0 584 370 575 353 560 344 c 0 552 339 541 337 518 337 c 2 501 337 l 1 EndSplineSet MinimumDistance: x36,-1 Back 575 408 m 0 575 403 574 398 572 394 c 0 570 390 566 385 561 378 c 1 557 375 552 372 547 369 c 0 541 366 534 364 525 364 c 2 485 364 l 1 337 121 l 1 472 -113 l 1 513 -113 l 2 528 -113 539 -116 548 -123 c 1 553 -129 557 -135 560 -140 c 0 563 -145 564 -150 564 -155 c 0 564 -163 562 -170 559 -175 c 0 555 -181 550 -185 544 -188 c 1 535 -195 524 -199 513 -199 c 2 437 -199 l 1 293 51 l 1 192 -113 l 1 202 -113 l 2 218 -113 230 -116 239 -123 c 1 244 -130 248 -136 250 -141 c 0 252 -146 253 -151 253 -157 c 0 253 -165 251 -172 248 -177 c 0 244 -183 239 -187 233 -190 c 1 224 -197 213 -201 200 -201 c 2 59 -201 l 2 45 -201 33 -197 24 -190 c 1 15 -186 10 -175 10 -157 c 0 10 -144 13 -135 19 -129 c 0 25 -123 31 -119 37 -117 c 0 43 -116 50 -115 59 -115 c 2 98 -115 l 1 247 126 l 1 110 362 l 1 71 362 l 2 65 362 59 363 52 366 c 0 45 368 40 371 37 374 c 0 33 377 29 381 26 388 c 0 23 394 21 400 21 406 c 0 21 423 27 435 38 440 c 1 46 446 57 449 71 449 c 2 147 449 l 1 291 199 l 1 390 362 l 1 382 362 l 2 367 362 354 366 343 375 c 1 336 384 332 395 332 408 c 0 332 427 337 438 348 443 c 0 353 446 358 449 363 450 c 0 368 451 375 451 384 451 c 2 525 451 l 2 534 451 540 451 544 450 c 0 547 449 552 446 557 442 c 1 569 437 575 425 575 408 c 0 EndSplineSet EndChar StartChar: psi Encoding: 968 968 Width: 600 Flags: W HStem: -4 100<234 250 350 362> 337 100<26 60 540 570> 419 20G<440 556> VStem: 60 100<178 337> 250 100<-158 -4 97 594> 440 100<178 339> 440 182<386 391> Fore 44 437 m 2 160 437 l 1 160 190 l 2 160 123 185 96 244 96 c 2 250 96 l 1 250 588 l 2 250 615.6 272.4 638 300 638 c 0 327.6 638 350 615.6 350 588 c 2 350 96 l 1 409.217 96 440 110.176 440 190 c 2 440 439 l 1 556 439 l 2 580 439 589 438 598 432 c 0 613 423 622 406 622 389 c 0 622 373 614 358 602 348 c 0 592 341 582 339 556 339 c 2 540 339 l 1 540 190 l 2 540 74.1113 465 -3.99999 356 -4 c 2 350 -4 l 1 350 -156 l 2 350 -183.6 327.6 -206 300 -206 c 0 272.4 -206 250 -183.6 250 -156 c 2 250 -4 l 1 244 -4 l 2 141 -4 60 74 60 190 c 2 60 337 l 1 44 337 l 2 18 337 8 339 -2 346 c 0 -14 356 -22 371 -22 387 c 0 -22 404 -13 421 2 430 c 0 11 436 20 437 44 437 c 2 EndSplineSet MinimumDistance: y19,22 y19,20 y4,7 y4,5 x0,2 y3,0 y3,1 EndChar StartChar: omega Encoding: 969 969 Width: 600 Flags: W HStem: -40 87<190 209 387 407> 364 87<150 200 397 445> VStem: 19 83<200 232> 30 208<407 412> 257 85<104 257> 359 209<407 412> 493 84<200 232> Fore 568 410 m 0 568 397 564 388 557 382 c 0 550 376 543 372 537 370 c 0 530 367 522 366 512 366 c 1 512 386 l 1 527 386 l 1 545 359 558 332 566 304 c 0 573 276 577 248 577 219 c 0 577 172 569 128 552 87 c 0 535 46 518 19 501 4 c 0 484 -11 468 -21 452 -28 c 0 436 -35 417 -38 396 -38 c 0 374 -38 356 -35 343 -28 c 0 329 -22 316 -12 303 1 c 2 298 5 l 1 295 2 l 2 283 -13 270 -23 256 -30 c 0 241 -37 223 -40 200 -40 c 0 179 -40 160 -37 144 -30 c 0 128 -23 112 -13 96 1 c 0 80 15 63 43 46 85 c 0 28 127 19 171 19 217 c 0 19 246 23 274 31 302 c 0 38 330 51 357 69 384 c 1 84 384 l 1 84 364 l 1 73 364 65 365 59 368 c 0 52 370 46 373 41 378 c 0 34 387 30 397 30 408 c 0 30 419 31 427 33 432 c 0 35 436 39 439 44 441 c 1 52 448 64 451 79 451 c 2 188 451 l 2 202 451 213 448 221 441 c 1 232 436 238 425 238 408 c 0 238 403 237 400 236 397 c 0 235 394 230 387 223 378 c 1 218 374 214 371 209 368 c 0 204 365 197 364 188 364 c 2 150 364 l 1 133 340 121 315 114 289 c 0 106 263 102 238 102 213 c 0 102 180 107 151 117 124 c 0 127 97 137 80 148 71 c 0 158 62 167 56 176 53 c 0 184 49 191 47 198 47 c 0 206 47 212 48 217 51 c 0 221 54 228 59 239 67 c 1 251 81 257 98 257 117 c 2 257 255 l 2 257 264 257 269 258 271 c 0 259 272 261 276 266 281 c 1 268 286 273 289 280 292 c 0 287 295 294 296 302 296 c 0 311 296 321 291 332 282 c 1 339 273 342 264 342 255 c 2 342 117 l 2 342 105 343 96 345 90 c 0 346 83 350 76 356 69 c 1 367 61 374 56 379 53 c 0 383 50 389 49 398 49 c 0 406 49 414 51 422 55 c 0 429 59 437 64 445 70 c 1 456 81 467 100 478 128 c 0 488 155 493 185 493 216 c 0 493 242 490 267 483 291 c 0 476 315 463 340 445 366 c 1 407 366 l 2 394 366 381 371 370 381 c 1 363 390 359 400 359 410 c 0 359 420 360 428 362 433 c 0 363 438 367 441 372 443 c 1 380 450 392 453 407 453 c 2 517 453 l 2 531 453 543 450 553 443 c 0 563 436 568 425 568 410 c 0 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: iotadieresis Encoding: 970 970 Width: 600 Flags: W HStem: -16 100<424 441> 337 100<153 250> VStem: 97 120<533.5 566> 250 100<160 337> 305 120<533.5 566> Ref: 168 N 1 0 0 1 -39 -44 Ref: 953 N 1 0 0 1 0 0 EndChar StartChar: upsilondieresis Encoding: 971 971 Width: 600 Flags: W HStem: -16 100<282 298> 337 100<58 92 374 404 505 538> VStem: 92 100<160 337> 134 120<533.5 566> 342 120<533.5 566> 405 100<163 337> Ref: 168 N 1 0 0 1 -2 -44 Ref: 965 N 1 0 0 1 0 0 EndChar StartChar: omicrontonos Encoding: 972 972 Width: 600 Flags: W HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 490 218<295 311> VStem: 42 100<179.5 255> 263 80<522 670> 458 100<179.5 254> Ref: 900 N 1 0 0 1 3 -24 Ref: 959 N 1 0 0 1 0 0 EndChar StartChar: upsilontonos Encoding: 973 973 Width: 600 Flags: W HStem: -16 100<282 298> 337 100<58 92 374 404 505 538> 490 218<290 306> VStem: 92 100<160 337> 258 80<522 670> 405 100<163 337> Ref: 900 N 1 0 0 1 -2 -24 Ref: 965 N 1 0 0 1 0 0 EndChar StartChar: omegatonos Encoding: 974 974 Width: 600 Flags: W HStem: -40 87<190 209 387 407> 364 87<150 200 397 445> 493 218<454 470> VStem: 19 83<200 232> 30 208<407 412> 257 85<104 257> 359 209<407 412> 422 80<525 673> 493 84<200 232> Ref: 900 N 1 0 0 1 162 -21 Ref: 969 N 1 0 0 1 0 0 EndChar StartChar: uni03D0 Encoding: 976 976 Width: 600 Flags: W HStem: -34 100<303 322> 178 100<198 338> 322 100<200 338> 525 100<303 338> VStem: 82 101<278 322> 422 100<129.565 142 459 462> Fore 200 422 m 1 315 422 l 2 396 422 422 439 422 460 c 0 422 496 385 525 318 525 c 0 261 525 221 486 200 422 c 1 198 178 m 1 219 108 259 66 318 66 c 0 391 66 422 107 422 140 c 0 422 158 396 178 315 178 c 2 315 178 232 178 198 178 c 1 183 322 m 1 182 308 182 292 183 278 c 1 222 278 301 278 301 278 c 2 395 278 522 263 522 140 c 0 522 37 427 -34 318 -34 c 0 137 -34 82 155 82 300 c 0 82 447 142 622 318 625 c 0 411 627 522 574 522 460 c 0 522 337 394 322 301 322 c 2 301 322 222 322 183 322 c 1 EndSplineSet MinimumDistance: x11,-1 EndChar StartChar: theta1 Encoding: 977 977 Width: 600 Flags: W HStem: -44 89<295 316> 153.631 86.0467<106 108> 293 86<255 314 352.008 359> 559 90<295 316> VStem: 71 119<174 197> 107 87<420 436> 438 91<276 324> Fore 529 301 m 0 529 209 508 129 466 60 c 0 424 -9 373 -44 312 -44 c 0 277 -44 244 -35 213 -17 c 0 181 0 157 26 140 60 c 0 127 84 118 102 114 115 c 0 110 128 108 144 108 163 c 1 116 163 120 162 120 160 c 0 119 158 118 156 115 153 c 1 108 153 102 154 97 156 c 0 92 158 87 162 81 167 c 1 74 176 71 186 71 197 c 0 72 202 73 210 73 221 c 1 77 225 81 229 85 232 c 0 89 235 93 237 97 238 c 0 99 239 105 240 115 240 c 2 140 240 l 2 159 240 172 234 177 222 c 1 179 220 182 213 185 201 c 0 188 188 190 179 190 174 c 0 193 152 196 137 200 130 c 0 203 122 209 110 217 95 c 0 225 79 237 67 254 58 c 0 271 49 289 45 310 45 c 0 327 45 342 52 356 65 c 0 370 78 384 97 398 122 c 0 412 144 422 171 429 203 c 0 435 234 438 268 438 303 c 0 438 342 436 376 431 406 c 0 425 435 414 461 401 484 c 0 387 507 375 525 364 539 c 0 353 552 334 559 309 559 c 0 269 559 236 545 218 511 c 0 199 477 194 447 194 428 c 0 194 418 195 409 197 401 c 0 198 393 204 387 213 384 c 0 222 380 233 378 246 378 c 0 259 379 269 379 275 379 c 2 353 379 l 2 363 379 374 375 383 369 c 1 394 364 398 355 398 338 c 0 398 329 394 320 387 312 c 1 385 308 381 304 374 301 c 0 367 297 360 295 352 295 c 2 314 293 l 1 289 293 l 2 237 293 197 299 169 310 c 0 141 321 121 344 110 380 c 1 108 396 107 411 107 424 c 0 107 449 110 470 115 488 c 0 120 506 131 529 147 557 c 0 162 584 185 607 215 624 c 0 245 641 277 649 312 649 c 0 373 649 426 615 469 547 c 1 509 475 529 393 529 301 c 0 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: phi1 Encoding: 981 981 Width: 600 Flags: W HStem: 0 100<245 274 374 410> 350 100<42 77 374 410> VStem: 77 100<155 350> 274 100<-154 0 101 349> 478 100<155 296> Fore 478 168 m 2 478 284 l 2 478 332.042 449.685 350 400 350 c 2 374 350 l 1 374 100 l 1 403 100 l 2 425 100 441.096 103 458 119 c 24 473.375 133.553 478 150 478 168 c 2 274 0 m 1 251 0 l 2 206.774 0 160.205 14.6123 135 34 c 0 104.199 61.5586 77 99.6934 77 153 c 2 77 350 l 1 48 350 l 2 35.3525 350 20.9552 352.52 9 364 c 24 -2.51855 375.062 -6 392.633 -6 401 c 0 -6 432.4 16.275 450 52 450 c 2 177 450 l 1 177 168 l 2 177 150 182 136 192 126 c 0 206.275 111.725 221.411 100 246 100 c 2 274 100 l 1 274 450 l 1 404 450 l 2 468.147 450 497.727 434.273 537 395 c 0 561 371 578 337 578 294 c 2 578 155 l 2 578 106.732 558.211 71.4514 518 37 c 24 481.882 6.05566 453.367 0 405 0 c 2 374 0 l 1 374 -152 l 2 374 -180 352 -202 324 -202 c 0 296 -202 274 -180 274 -152 c 2 274 0 l 1 EndSplineSet MinimumDistance: x24,-1 x22,20 y20,22 y20,21 y7,29 y7,31 EndChar StartChar: uni03F1 Encoding: 1009 1009 Width: 600 Flags: W HStem: -205.302 99.9999<202 491> -16 100<282 314> 350 100<282 314> VStem: 42 100<-62 18 210 226> 458 100<210 226> Fore 142 31.9407 m 1 142 -45 l 2 142 -98 163.997 -105.363 218.944 -105.302 c 2 488.944 -105 l 1 516.544 -104.969 538.969 -127.344 539 -154.944 c 0 539.031 -182.544 516.656 -204.969 489.056 -205 c 1 219.056 -205.302 l 2 109.997 -205.424 42 -138 42 -45 c 2 42 217 l 2 42 349 155 450 303 450 c 0 444 450 558 346 558 217 c 0 558 87 444 -16 300 -16 c 0 240.137 -16 185.459 1.80026 142 31.9407 c 1 142 217 m 0 142 142 211 84 300 84 c 0 389 84 458 142 458 217 c 0 458 291 389 350 302 350 c 0 211 350 142 293 142 217 c 0 EndSplineSet MinimumDistance: x10,-1 EndChar StartChar: uni0400 Encoding: 1024 1024 Width: 600 Flags: W HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> DStem: 192 751 238 807 325 639 371 696 Ref: 96 N 1 0 0 1 44 127 Ref: 69 N 1 0 0 1 0 0 EndChar StartChar: afii10023 Encoding: 1025 1025 Width: 600 Flags: W HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 117 120<666.5 699> 279 99<218 242 343 369> 325 120<666.5 699> 428 100<415 483> 450 100<100 171> Ref: 168 N 1 0 0 1 -19 89 Ref: 69 N 1 0 0 1 0 0 EndChar StartChar: afii10051 Encoding: 1026 1026 Width: 600 Flags: W HStem: -1 101.385<291 309> 278 100<371 394> 482 100<119 181 282 346> VStem: 20 100<468 482> 182 100<99 240 340 482> 346 0<482 483.511> 346 99.5089<468 482> 481 100.253<-12 -10 19 240> Fore 282 99 m 5 282 240 l 5 302.667 265.333 336 278 382 278 c 6 394 278 l 6 442 275.333 471.333 262.667 482 240 c 5 482 20 l 5 481 -10 l 5 481 -26.001 470.604 -43.3955 458 -56 c 4 432.667 -80 381 -90 340 -87 c 4 338 -187 l 5 412.6 -186.333 475.593 -173.35 518 -136 c 5 540 -115 l 5 568 -83.667 582 -42.333 582 9 c 5 582 243 l 5 577 278 l 5 572.333 298 564.333 314.667 553 328 c 4 525 361.333 470 378 388 378 c 4 347.333 378 312 365.333 282 340 c 5 282 482 l 5 346 482 l 5 346 484.057 346 483.972 346 482 c 5 346 463.333 348.333 450 353 442 c 4 363 426 377.333 418 396 418 c 4 412.667 418 426.333 425 437 439 c 6 438 440 l 6 443.333 447.333 446 462 446 484 c 6 446 582 l 5 20 582 l 5 20 480 l 5 20 461.333 22.333 448 27 440 c 4 36.333 424 50.667 416 70 416 c 4 86.667 416 100.333 423 111 437 c 5 111 438 l 5 117 446 120 460.667 120 482 c 6 120 482 l 5 182 482 l 5 182 99 l 5 174 98 l 5 174 98 l 5 174 98 173.667 98 173 98 c 4 144.333 92 130 75.667 130 49 c 6 130 48 l 5 130.667 32 137.333 18.667 150 8 c 6 151 8 l 6 159 2 174 -1 196 -1 c 6 298 -1 l 6 318 -1 332 1.33301 340 6 c 4 356 16 364 30.333 364 49 c 6 364 50 l 5 363.333 66.667 356 80 342 90 c 6 341 90 l 5 339.105 96.1016 316 105 282 99 c 5 EndSplineSet MinimumDistance: y17,19 x19,17 x19,18 y36,34 x34,36 x34,35 EndChar StartChar: afii10052 Encoding: 1027 1027 Width: 600 Flags: W HStem: 0 100<79 112 212 321> 483 100<79 112 212 468> VStem: 112 100<99 483> 468 100<415 483> DStem: 344 807 390 751 211 696 257 639 Fore 212 100 m 1 312 100 l 2 340 100 348 98 358 91 c 0 370 81 378 66 378 50 c 0 378 33 370 16 354 7 c 0 348 3 332 0 312 0 c 2 98 0 l 2 74 0 60 3 52 10 c 0 40 19 32 35 32 50 c 0 32 67 40 84 56 93 c 1 64 99 74 100 98 100 c 2 112 100 l 1 112 483 l 1 98 483 l 2 72 483 62 485 52 492 c 0 40 502 32 517 32 533 c 0 32 550 40 567 56 576 c 1 64 582 72 583 98 583 c 2 568 583 l 1 568 432 l 2 568 405 566 397 560 387 c 0 550 374 534 366 518 366 c 0 502 366 486 375 476 390 c 0 470 398 468 409 468 432 c 2 468 483 l 1 212 483 l 1 212 100 l 1 390 751 m 1 257 639 l 2 242 627 235 623 225 623 c 0 205 623 188 640 188 659 c 0 188 672 195 683 211 696 c 2 344 807 l 2 360 820 365 823 376 823 c 0 397 823 413 807 413 786 c 0 413 774 407 764 390 751 c 1 EndSplineSet MinimumDistance: x18,-1 EndChar StartChar: afii10053 Encoding: 1028 1028 Width: 600 Flags: W HStem: -14 100<306 355> 241 100<136 371> 367 216<497 503> 497 100<304 330> Fore 134 241 m 1 350 241 l 2 374 241 388 244 396 250 c 0 408 260 416 276 416 291 c 0 416 308 408 325 392 334 c 1 384 340 376 341 350 341 c 2 136 341 l 1 148 432 217 497 310 497 c 0 344 497 380 488 408 473 c 0 436 457 446 444 452 420 c 1 456 396 458 389 466 381 c 0 474 373 488 367 500 367 c 0 516 367 532 375 542 388 c 0 548 397 550 408 550 433 c 2 550 517 l 2 550 542 550 550 544 559 c 0 534 574 518 583 500 583 c 0 484 583 472 577 458 559 c 1 448 563 l 2 392 586 358 597 306 597 c 0 152 597 34 475 34 315 c 2 34 249 l 2 34 97 158 -14 328 -14 c 0 400 -14 468 4 512 36 c 0 546 60 566 86 566 109 c 0 566 136 542 159 516 159 c 0 502 159 490 154 480 143 c 0 452 115 452 115 442 109 c 0 416 94 376 86 332 86 c 0 216 86 139 147 134 241 c 1 EndSplineSet EndChar StartChar: afii10054 Encoding: 1029 1029 Width: 600 Flags: W HStem: -14 100<282 339> 497 100<267.5 324.5> VStem: 82 104<410.5 442.5> 434 104<140.5 172.5> Ref: 83 N 1 0 0 1 0 0 EndChar StartChar: afii10055 Encoding: 1030 1030 Width: 600 Flags: W HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> VStem: 250 100<100 483> Ref: 73 N 1 0 0 1 0 0 EndChar StartChar: afii10056 Encoding: 1031 1031 Width: 600 Flags: W HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> VStem: 136 120<666.5 699> 250 100<100 483> 344 120<666.5 699> Ref: 168 N 1 0 0 1 0 89 Ref: 73 N 1 0 0 1 0 0 EndChar StartChar: afii10057 Encoding: 1032 1032 Width: 600 Flags: W HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> VStem: 136 120<666.5 699> 250 100<100 483> 344 120<666.5 699> Ref: 168 N 1 0 0 1 0 89 Ref: 73 N 1 0 0 1 0 0 EndChar StartChar: afii10058 Encoding: 1033 1033 Width: 600 Flags: W HStem: 0 100<273 300 404 435> 240 100<404.063 435> 563 20G<136 386> VStem: -46 100<116.038 145> 122 100<129 483> 300 104<100 240 339 483> 534 106<159 185> Fore 404 485 m 5 404 340 l 5 475.333 340 528.667 326 564 298 c 4 570 294 575.667 289 581 283 c 6 590 274 l 6 623.333 238 640 217.667 640 169 c 6 640 168 l 6 640 102.667 613 73 559 37 c 4 525.211 15.498 477.965 0 424 0 c 6 285 0 l 21 263.667 0 268.667 3 260 9 c 4 246.667 19.667 239.667 33 239 49 c 5 239 50 l 6 239 69.333 247 83.667 263 93 c 4 269.667 97.667 263.667 100 285 100 c 6 300 100 l 5 300 483 l 5 222 483 l 1 222 130 l 2 222 56.667 184.667 14.333 110 3 c 1 71 0 l 1 20.333 0 6.33301 17 -21 53 c 0 -37.667 74.333 -46 99.333 -46 128 c 1 -46 137 l 1 -46 163.884 -42.0938 167.68 -38 182 c 1 -27.333 196 -13.333 203 4 203 c 0 21.333 203 35.333 195 46 179 c 0 51.333 172.333 54 159.333 54 140 c 2 54 138 l 2 54 116 52.333 103.333 77 100 c 0 80.333 99.333 73 100 77 100 c 0 100.276 100 122 113.188 122 139 c 2 122 483 l 1 88.667 486.333 71.333 502 70 530 c 1 70 533 l 2 70 552.333 78 566.667 94 576 c 0 100.667 580.667 114.667 583 136 583 c 2 386 583 l 6 408 583 423 580 431 574 c 6 432 574 l 6 444.667 563.333 451.333 550 452 534 c 5 452 533 l 6 452 506.839 438.612 485 404 485 c 5 404 100 m 5 424 100 l 6 478 100 512.667 98 528 136 c 4 532 146 534 157.333 534 170 c 6 534 171 l 6 534 213.667 513.333 219.667 472 233 c 5 472 233 l 5 458 237.667 442 240 424 240 c 6 404 240 l 5 404 100 l 5 EndSplineSet EndChar StartChar: afii10059 Encoding: 1034 1034 Width: 600 Flags: W HStem: 0 100<-15 12 112 133 275 300 400 437> 1 21G<284 420> 241 100<112 300 400.063 431> 563 20G<24 26 26 126> 564 20G<284 386> VStem: -40 232<527 535> 12 100<99 241 341 483> 218 234<533 535> 300 100<101 241 341 485> 530 106<159 177> Fore 400 484 m 5 400 341 l 5 400 341 l 6 471.333 341 524.667 327 560 299 c 4 566 295 571.667 290 577 284 c 6 586 275 l 6 619.333 239 636 218.667 636 170 c 6 636 169 l 6 636 103.667 609 74 555 38 c 4 533 24 508.333 14 481 8 c 4 461.667 3.33301 441.333 1 420 1 c 6 284 1 l 6 262.667 1 248 4 240 10 c 4 226 20 218.667 33.333 218 50 c 5 218 51 l 6 218 69.667 226 84 242 94 c 4 250 98.667 264 101 284 101 c 6 300 101 l 5 300 242 l 5 112 241 l 5 112 100 l 5 126 100 l 6 148 100 163 97 171 91 c 6 172 91 l 6 184.667 80.333 191.333 67 192 51 c 5 192 50 l 6 192 30 184 15.667 168 7 c 4 160.667 2.33301 146.667 0 126 0 c 6 6 0 l 6 -16.667 0 -32 3 -40 9 c 4 -52.667 19.667 -59.333 33 -60 49 c 5 -60 50 l 6 -60 70 -52 84.333 -36 93 c 5 -30 97.667 -16.667 100 4 100 c 6 6 100 l 5 12 100 l 5 12 483 l 5 -22 485.667 -39.333 501.667 -40 531 c 5 -40 533 l 6 -40 552.333 -32 566.667 -16 576 c 4 -10 580.667 3.33301 583 24 583 c 6 26 583 l 5 126 583 l 6 148 583 163 580 171 574 c 6 172 574 l 6 184.667 563.333 191.333 550 192 534 c 5 192 533 l 6 192 513.667 184 499.333 168 490 c 4 160.667 485.333 146.667 483 126 483 c 6 112 483 l 5 112 341 l 5 300 342 l 5 300 484 l 5 284 484 l 6 263.333 484 249 487 241 493 c 6 240 493 l 6 226 503 218.667 516.333 218 533 c 5 218 534 l 6 218 552.667 226 567 242 577 c 4 250 581.667 264 584 284 584 c 6 386 584 l 6 408 584 423 581 431 575 c 6 432 575 l 6 444.667 564.333 451.333 551 452 535 c 5 452 534 l 6 452 507.333 437.667 491 409 485 c 4 408.333 485 408 485 408 485 c 5 408 485 l 5 400 484 l 5 400 101 m 5 420 101 l 6 474 101 508.667 99 524 137 c 4 528 147 530 158.333 530 171 c 6 530 172 l 6 530 214.667 509.333 220.667 468 234 c 5 468 234 l 5 454 238.667 438 241 420 241 c 6 400 241 l 5 400 101 l 5 EndSplineSet EndChar StartChar: afii10060 Encoding: 1035 1035 Width: 600 Flags: W HStem: 0 21G<168 270 438 540> 279 100<343 366> 483 100<91 153 254 318> VStem: -8 100<463 483> 102 234<49 51> 154 100<99 241 341 483> 318 0<482 484> 318 100<463.996 484> 372 234<49 56> 454 100<99 241> Fore 254 483 m 5 254 341 l 5 284 366.333 319.333 379 360 379 c 4 442 379 497 362.333 525 329 c 4 536.333 315.667 544.333 299 549 279 c 5 554 244 l 5 554 100 l 5 585.333 97.333 602.667 82.667 606 56 c 5 606 50 l 6 606 31.333 598 17 582 7 c 4 574 2.33301 560 0 540 0 c 6 438 0 l 6 415.333 0 400.667 3 394 9 c 4 380 19 372.667 32.333 372 49 c 5 372 50 l 6 372 68.667 380 83 396 93 c 4 405.333 97.667 419.333 100 438 100 c 6 454 100 l 5 454 241 l 5 443.333 263.667 414 276.333 366 279 c 6 354 279 l 6 308 279 274.667 266.333 254 241 c 5 254 100 l 5 270 100 l 6 290.667 100 305 97 313 91 c 6 314 91 l 6 328 81 335.333 67.667 336 51 c 5 336 50 l 6 336 31.333 328 17 312 7 c 4 304 2.33301 290 0 270 0 c 6 168 0 l 6 146 0 131 3 123 9 c 6 122 9 l 6 109.333 19.667 102.667 33 102 49 c 5 102 50 l 6 102 76.667 116.333 93 145 99 c 4 145.667 99 146 99 146 99 c 5 146 99 l 5 154 100 l 5 154 483 l 5 92 483 l 5 92 483 l 6 92 461.667 89 447 83 439 c 5 83 438 l 5 72.333 424 58.667 417 42 417 c 4 22.667 417 8.33301 425 -1 441 c 0 -5.66699 449 -8 462.333 -8 481 c 1 -8 583 l 1 418 583 l 5 418 485 l 6 418 463 415.333 448.333 410 441 c 6 409 440 l 6 398.333 426 384.667 419 368 419 c 4 349.333 419 335 427 325 443 c 4 320.333 451 318 464.333 318 483 c 5 318 484.972 318 485.057 318 483 c 5 254 483 l 5 EndSplineSet MinimumDistance: x5,-1 y1,55 x55,1 x55,0 y38,40 x40,38 x40,39 EndChar StartChar: afii10061 Encoding: 1036 1036 Width: 600 Flags: W HStem: 0 100<53 86 186 231 495 548> 483 100<53 86 186 231 504.031 519.737> VStem: 86 100<99 278 334 483> 334 232<527 536> DStem: 344 807 390 751 211 696 257 639 364 487 504 483 186 334 328 330 Fore 186 100 m 1 222 100 l 2 248 100 256 98 266 91 c 0 280 81 288 66 288 50 c 0 288 33 278 16 264 7 c 0 256 3 242 0 222 0 c 2 72 0 l 2 48 0 34 3 26 10 c 0 14 19 6 35 6 50 c 0 6 67 14 84 30 93 c 1 38 99 48 100 72 100 c 2 86 100 l 1 86 483 l 1 72 483 l 2 46 483 36 485 26 492 c 0 14 502 6 517 6 533 c 0 6 550 14 567 30 576 c 1 38 582 46 583 72 583 c 2 222 583 l 2 248 583 258 581 266 574 c 0 280 564 288 549 288 533 c 0 288 516 278 499 264 490 c 0 256 485 244 483 222 483 c 2 186 483 l 1 186 334 l 1 364 487 l 1 344 495 334 509 334 532 c 0 334 560 350 578 378 581 c 0 390 583 392 583 400 583 c 2 500 583 l 2 526 583 536 581 546 574 c 0 558 564 566 549 566 533 c 0 566 500 544 483 504 483 c 1 328 330 l 1 388 298 450 215 496 100 c 1 528 100 l 2 556 100 564 98 574 91 c 0 586 81 594 66 594 50 c 0 594 33 586 16 570 7 c 0 564 3 548 0 528 0 c 2 418 0 l 1 372 143 268 278 186 278 c 1 186 100 l 1 390 751 m 1 257 639 l 2 242 627 235 623 225 623 c 0 205 623 188 640 188 659 c 0 188 672 195 683 211 696 c 2 344 807 l 2 360 820 365 823 376 823 c 0 397 823 413 807 413 786 c 0 413 774 407 764 390 751 c 1 EndSplineSet MinimumDistance: x31,-1 EndChar StartChar: uni040D Encoding: 1037 1037 Width: 600 Flags: W HStem: 0 100<66 93 193 230 372 406 507 534> 563 20G<107 208 392 493> VStem: 93 100<99 141 256 483> 407 100<99 326 440 483> DStem: 211 751 257 807 344 639 390 696 407 441 407 326 193 256 193 141 Fore 407 326 m 1 193 141 l 1 193 100 l 1 208 100 l 2 234 100 244 98 253 91 c 0 266 81 274 66 274 50 c 0 274 33 265 16 250 7 c 0 242 2 229 0 208 0 c 2 87 0 l 2 63 0 50 3 41 9 c 0 29 19 21 35 21 50 c 0 21 67 30 84 45 93 c 0 54 99 62 100 87 100 c 2 93 100 l 1 93 483 l 1 60 486 41 504 41 533 c 0 41 550 50 567 65 576 c 0 74 582 82 583 107 583 c 2 208 583 l 2 235 583 244 581 253 574 c 0 266 564 274 549 274 533 c 0 274 516 265 499 250 490 c 0 241 485 232 483 208 483 c 2 193 483 l 1 193 256 l 1 407 441 l 1 407 483 l 1 392 483 l 2 366 483 357 485 347 492 c 0 334 502 326 517 326 533 c 0 326 550 335 567 350 576 c 0 359 582 367 583 392 583 c 2 493 583 l 2 520 583 529 581 539 574 c 0 551 564 559 549 559 533 c 0 559 504 540 486 507 483 c 1 507 100 l 1 513 100 l 2 540 100 549 98 558 91 c 0 571 81 579 66 579 50 c 0 579 33 570 16 555 7 c 0 547 2 534 0 513 0 c 2 392 0 l 2 368 0 356 3 347 9 c 0 334 19 326 35 326 50 c 0 326 67 335 84 350 93 c 0 359 99 368 100 392 100 c 2 407 100 l 1 407 326 l 1 257 807 m 2 390 696 l 2 406 683 413 672 413 659 c 0 413 640 396 623 376 623 c 0 366 623 359 627 344 639 c 2 211 751 l 1 194 764 188 774 188 787 c 0 188 807 204 823 225 823 c 0 236 823 241 820 257 807 c 2 EndSplineSet MinimumDistance: x35,-1 EndChar StartChar: afii10062 Encoding: 1038 1038 Width: 600 Flags: W HStem: 0 21G<184 294> 0.957314 99.0427<163 176> 563 20G<86 178 424 514> 623 68<291 308> VStem: 20 224<527 535> 356 224<527 535> DStem: 244 216 522 483 176 100 306 100 394 484 522 483 300 312 306 100 Fore 306 100 m 1 340 98 360 80 360 50 c 0 360 33 352 16 336 7 c 0 328 2 316 0 294 0 c 2 184 0 l 2 160 0 148 3 138 9 c 1 126 19 118 34 118 50 c 0 118 81 140 100 176 100 c 1 244 216 l 1 78 483 l 1 42 485 20 503 20 533 c 0 20 560 38 578 66 581 c 0 78 583 80 583 86 583 c 2 178 583 l 2 206 583 214 581 224 574 c 0 236 564 244 549 244 533 c 0 244 511 236 498 206 484 c 1 300 312 l 1 394 484 l 1 366 498 356 511 356 533 c 0 356 548 364 564 378 573 c 1 386 580 402 583 424 583 c 2 514 583 l 2 540 583 548 581 558 574 c 0 572 564 580 549 580 533 c 0 580 502 558 484 522 483 c 1 306 100 l 1 159 807 m 0 179 807 186 798 193 767 c 0 203 721 245 691 300 691 c 0 355 691 397 721 407 767 c 0 414 798 421 807 441 807 c 0 461 807 475 792 475 769 c 0 475 693 392 623 300 623 c 0 208 623 125 693 125 769 c 0 125 792 139 807 159 807 c 0 EndSplineSet MinimumDistance: x24,-1 x19,24 x6,1 EndChar StartChar: afii10145 Encoding: 1039 1039 Width: 600 Flags: W HStem: 0 100<193 254 347 406> 483 100<68 92 193 214 372 406 507 518> VStem: 93 100<100 483> 257.996 84.4365<-55 -35> 407 100<100 483> Fore 348 0 m 5 336.598 -45.1787 344.265 -64.9561 348 -90 c 5 322.838 -102.442 284 -102 254 -90 c 5 260.074 -66.0332 258.546 -34.5137 254 0 c 5 107 0 l 2 85.4443 4.39941 70 3 62 9 c 2 61 9 l 2 48.3333 19.6667 41.6667 33 41 49 c 1 41 50 l 2 41 78.6667 57 95.3333 89 100 c 0 90.3333 100 91.6667 100 93 100 c 1 93 483 l 1 87 483 l 2 65 483 50.3333 486 43 492 c 2 42 492 l 2 28.6667 502.667 21.6667 516 21 532 c 1 21 533 l 2 21 552.333 29 566.667 45 576 c 0 52.3333 580.667 66.3333 583 87 583 c 2 208 583 l 2 229.333 583 244.333 580 253 574 c 0 266.333 563.333 273.333 550 274 534 c 1 274 533 l 2 274 513.667 266 499.333 250 490 c 0 243.333 485.333 229.333 483 208 483 c 2 193 483 l 1 193 100 l 1 407 100 l 1 407 483 l 1 392 483 l 2 370 483 355.333 486 348 492 c 2 347 492 l 2 333.667 502.667 326.667 516 326 532 c 1 326 533 l 2 326 552.333 334 566.667 350 576 c 0 357.333 580.667 371.333 583 392 583 c 2 513 583 l 2 535 583 550.333 580 559 574 c 0 571.667 563.333 578.333 550 579 534 c 1 579 533 l 2 579 513.667 571 499.333 555 490 c 0 547.667 485.333 533.667 483 513 483 c 2 507 483 l 1 507 100 l 1 540.333 96.6667 557.667 81 559 53 c 0 559 52.3333 559 51.6667 559 51 c 2 559 50 l 2 559 30.6667 551 16.3333 535 7 c 0 527.667 2.33333 513.238 4.1875 493 0 c 2 348 0 l 5 EndSplineSet MinimumDistance: x42,-1 x1,3 x2,0 y0,2 y0,1 EndChar StartChar: afii10017 Encoding: 1040 1040 Width: 600 Flags: W HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> Ref: 65 N 1 0 0 1 0 0 EndChar StartChar: afii10018 Encoding: 1041 1041 Width: 600 Flags: W HStem: 0 100<68 102 202 390> 242 100<202 390> 483 100<68 102 202 458> VStem: 102 100<100 241 341 483> 458 100<415 483> 475 104<159 179> Fore 381 342 m 2 522 342 579 264 579 176 c 0 579 66 526 0 382 0 c 2 87 0 l 2 64 0 50 3 42 10 c 0 29 19 21 35 21 50 c 0 21 67 30 84 45 93 c 0 54 99 63 100 87 100 c 2 102 100 l 1 102 483 l 1 87 483 l 2 62 483 51 485 42 492 c 0 29 502 21 518 21 533 c 0 21 550 31 567 45 576 c 0 54 582 63 583 87 583 c 2 558 583 l 1 558 432 l 2 558 405 556 397 549 387 c 0 539 374 524 366 508 366 c 0 491 366 475 375 465 390 c 0 460 398 458 409 458 432 c 2 458 483 l 1 202 483 l 1 202 342 l 1 381 342 l 2 202 100 m 1 373 100 l 2 441 100 476 123 475 173 c 0 474 222 438 242 371 242 c 2 202 242 l 1 202 100 l 1 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: afii10019 Encoding: 1042 1042 Width: 600 Flags: W HStem: 0 100<61 93 195 381> 242 100<195 328> 483 100<61 93 195 334> VStem: 94 100<101 241 343 482> 428 100<416 421> 471 100<144 162> Ref: 66 N 1 0 0 1 0 0 EndChar StartChar: afii10020 Encoding: 1043 1043 Width: 600 Flags: W HStem: 0 100<79 112 212 321> 483 100<79 112 212 468> VStem: 112 100<99 483> 468 100<415 483> Fore 212 100 m 1 312 100 l 2 340 100 348 98 358 91 c 0 370 81 378 66 378 50 c 0 378 33 370 16 354 7 c 0 348 3 332 0 312 0 c 2 98 0 l 2 74 0 60 3 52 10 c 0 40 19 32 35 32 50 c 0 32 67 40 84 56 93 c 1 64 99 74 100 98 100 c 2 112 100 l 1 112 483 l 1 98 483 l 2 72 483 62 485 52 492 c 0 40 502 32 517 32 533 c 0 32 550 40 567 56 576 c 1 64 582 72 583 98 583 c 2 568 583 l 1 568 432 l 2 568 405 566 397 560 387 c 0 550 374 534 366 518 366 c 0 502 366 486 375 476 390 c 0 470 398 468 409 468 432 c 2 468 483 l 1 212 483 l 1 212 100 l 1 EndSplineSet MinimumDistance: x18,-1 EndChar StartChar: afii10021 Encoding: 1044 1044 Width: 600 Flags: W HStem: 0 100<104 110 238 395 495 499> 483 100<256 395> VStem: 5 100<-94 0> 157 100<158 483> 395 100<100 483> 499 100<-94 0> Fore 495 100 m 1 599 100 l 1 599 -75 l 2 599 -102 597 -110 590 -120 c 0 580 -133 565 -141 549 -141 c 0 532 -141 516 -132 506 -117 c 0 501 -109 499 -98 499 -75 c 2 499 0 l 1 105 0 l 1 105 -75 l 2 105 -98 103 -109 98 -117 c 0 88 -132 72 -141 55 -141 c 0 39 -141 24 -133 14 -120 c 0 7 -110 5 -102 5 -75 c 2 5 100 l 1 107 100 l 2 139 100 157 139 157 169 c 2 157 483 l 1 124 486 105 504 105 533 c 0 105 550 114 567 129 576 c 0 138 582 146 583 171 583 c 2 481 583 l 2 508 583 517 581 527 574 c 0 539 564 547 549 547 533 c 0 547 504 528 486 495 483 c 1 495 100 l 1 238 100 m 1 395 100 l 1 395 483 l 1 257 483 l 1 257 160 l 2 257 137 251 111 238 100 c 1 EndSplineSet MinimumDistance: x1,-1 y2,0 x0,2 x0,1 y13,15 x16,13 x16,14 EndChar StartChar: afii10022 Encoding: 1045 1045 Width: 600 Flags: W HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> Ref: 69 N 1 0 0 1 0 0 EndChar StartChar: afii10024 Encoding: 1046 1046 Width: 600 Flags: W HStem: 0 100<23 52 231 249 349.031 367.854 546 568> 483 100<23 33 231 249 349.031 373.464 566 568> VStem: -23 186<527 536> 250 99<99 260 337 483> 436 186<527 536> DStem: 33 483 132 487 148 330 250 337 467 487 566 483 349 337 451 330 Fore 348 583 m 2 374 583 381 582 390 576 c 0 405 567 414 550 414 533 c 0 414 517 406 502 393 492 c 1 387 484 371 483 349 483 c 1 349 337 l 1 467 487 l 1 446 495 436 509 436 532 c 0 436 560 452 578 481 581 c 0 493 583 494 583 502 583 c 2 556 583 l 2 583 583 592 581 602 574 c 0 614 564 622 549 622 533 c 0 622 500 601 483 566 483 c 1 451 330 l 1 512 298 545 214 547 100 c 1 557 100 l 2 584 100 592 98 602 91 c 0 615 81 623 66 623 50 c 0 623 33 614 16 599 7 c 0 592 3 577 0 557 0 c 2 469 0 l 1 467 148 431 260 349 260 c 1 349 100 l 1 370 100 383 100 390 93 c 1 405 84 414 67 414 50 c 0 414 35 406 19 393 10 c 0 385 3 371 0 348 0 c 2 251 0 l 2 228 0 214 3 206 10 c 0 193 19 185 35 185 50 c 0 185 67 194 84 209 93 c 1 216 100 229 100 250 100 c 1 250 260 l 1 168 260 132 148 130 0 c 1 42 0 l 2 22 0 7 3 0 7 c 0 -15 16 -24 33 -24 50 c 0 -24 66 -16 81 -3 91 c 0 7 98 15 100 42 100 c 2 52 100 l 1 54 214 87 298 148 330 c 1 33 483 l 1 -2 483 -23 500 -23 533 c 0 -23 549 -15 564 -3 574 c 0 7 581 16 583 43 583 c 2 97 583 l 2 105 583 106 583 118 581 c 0 147 578 163 560 163 532 c 0 163 509 153 495 132 487 c 1 250 337 l 1 250 483 l 1 228 483 212 484 206 492 c 1 193 502 185 517 185 533 c 0 185 550 194 567 209 576 c 0 218 582 225 583 251 583 c 2 348 583 l 2 EndSplineSet EndChar StartChar: afii10025 Encoding: 1047 1047 Width: 600 Flags: W HStem: -14 100<285 319> 1 198<109 115> 240 101<221 304> 497 100<285 319> VStem: 413 104<417 432> 434 104<152 164> Fore 234 341 m 2 276 341 l 2 350 341 356 356 376 366 c 0 398 377 413 400 413 421 c 0 413 464 363 497 300 497 c 0 238 497 190 470 181 430 c 0 174 398 174 398 167 390 c 0 159 382 145 376 131 376 c 0 116 376 101 384 91 397 c 0 84 407 82 415 82 443 c 2 82 531 l 2 82 557 83 565 89 574 c 0 97 588 114 597 131 597 c 0 151 597 160 589 170 564 c 1 205 586 249 597 300 597 c 0 424 597 517 521 517 420 c 0 517 363 494 317 461 298 c 1 467 294 473 290 479 285 c 0 519 253 538 212 538 160 c 0 538 56 446 -14 309 -14 c 0 255 -14 202 -1 153 25 c 1 136 5 129 1 113 1 c 0 78 1 62 22 62 67 c 2 62 133 l 2 62 158 64 169 71 179 c 0 81 192 96 199 112 199 c 0 126 199 139 194 148 185 c 0 155 178 155 178 163 151 c 0 173 115 236 86 302 86 c 0 376 86 434 119 434 162 c 0 434 183 420 203 398 215 c 0 377 226 361 240 293 240 c 2 234 240 l 2 210 240 197 243 188 249 c 0 176 259 168 275 168 290 c 0 168 307 177 324 192 333 c 0 201 339 209 341 234 341 c 2 EndSplineSet MinimumDistance: x18,-1 EndChar StartChar: afii10026 Encoding: 1048 1048 Width: 600 Flags: W HStem: 0 100<66 93 193 230 372 406 507 534> 563 20G<107 208 392 493> VStem: 93 100<99 141 256 483> 407 100<99 326 440 483> DStem: 407 441 407 326 193 256 193 141 Fore 407 326 m 1 193 141 l 1 193 100 l 1 208 100 l 2 234 100 244 98 253 91 c 0 266 81 274 66 274 50 c 0 274 33 265 16 250 7 c 0 242 2 229 0 208 0 c 2 87 0 l 2 63 0 50 3 41 9 c 0 29 19 21 35 21 50 c 0 21 67 30 84 45 93 c 0 54 99 62 100 87 100 c 2 93 100 l 1 93 483 l 1 60 486 41 504 41 533 c 0 41 550 50 567 65 576 c 0 74 582 82 583 107 583 c 2 208 583 l 2 235 583 244 581 253 574 c 0 266 564 274 549 274 533 c 0 274 516 265 499 250 490 c 0 241 485 232 483 208 483 c 2 193 483 l 1 193 256 l 1 407 441 l 1 407 483 l 1 392 483 l 2 366 483 357 485 347 492 c 0 334 502 326 517 326 533 c 0 326 550 335 567 350 576 c 0 359 582 367 583 392 583 c 2 493 583 l 2 520 583 529 581 539 574 c 0 551 564 559 549 559 533 c 0 559 504 540 486 507 483 c 1 507 100 l 1 513 100 l 2 540 100 549 98 558 91 c 0 571 81 579 66 579 50 c 0 579 33 570 16 555 7 c 0 547 2 534 0 513 0 c 2 392 0 l 2 368 0 356 3 347 9 c 0 334 19 326 35 326 50 c 0 326 67 335 84 350 93 c 0 359 99 368 100 392 100 c 2 407 100 l 1 407 326 l 1 EndSplineSet MinimumDistance: x35,-1 EndChar StartChar: afii10027 Encoding: 1049 1049 Width: 600 Flags: W HStem: 0 100<66 93 193 230 372 406 507 534> 563 20G<107 208 392 493> 623 68<292 310> VStem: 93 100<99 141 256 483> 407 100<99 326 440 483> DStem: 407 441 407 326 193 256 193 141 Fore 407 326 m 1 193 141 l 1 193 100 l 1 208 100 l 2 234 100 244 98 253 91 c 0 266 81 274 66 274 50 c 0 274 33 265 16 250 7 c 0 242 2 229 0 208 0 c 2 87 0 l 2 63 0 50 3 41 9 c 0 29 19 21 35 21 50 c 0 21 67 30 84 45 93 c 0 54 99 62 100 87 100 c 2 93 100 l 1 93 483 l 1 60 486 41 504 41 533 c 0 41 550 50 567 65 576 c 0 74 582 82 583 107 583 c 2 208 583 l 2 235 583 244 581 253 574 c 0 266 564 274 549 274 533 c 0 274 516 265 499 250 490 c 0 241 485 232 483 208 483 c 2 193 483 l 1 193 256 l 1 407 441 l 1 407 483 l 1 392 483 l 2 366 483 357 485 347 492 c 0 334 502 326 517 326 533 c 0 326 550 335 567 350 576 c 0 359 582 367 583 392 583 c 2 493 583 l 2 520 583 529 581 539 574 c 0 551 564 559 549 559 533 c 0 559 504 540 486 507 483 c 1 507 100 l 1 513 100 l 2 540 100 549 98 558 91 c 0 571 81 579 66 579 50 c 0 579 33 570 16 555 7 c 0 547 2 534 0 513 0 c 2 392 0 l 2 368 0 356 3 347 9 c 0 334 19 326 35 326 50 c 0 326 67 335 84 350 93 c 0 359 99 368 100 392 100 c 2 407 100 l 1 407 326 l 1 159 807 m 0 179 807 186 798 193 767 c 0 203 721 245 691 300 691 c 0 355 691 397 721 407 767 c 0 414 798 421 807 441 807 c 0 461 807 475 792 475 769 c 0 475 693 392 623 300 623 c 0 208 623 125 693 125 769 c 0 125 792 139 807 159 807 c 0 EndSplineSet MinimumDistance: x35,-1 EndChar StartChar: afii10028 Encoding: 1050 1050 Width: 600 Flags: W HStem: 0 100<53 86 186 231 495 548> 483 100<53 86 186 231 504.031 519.737> VStem: 86 100<99 278 334 483> 334 232<527 536> DStem: 364 487 504 483 186 334 328 330 Fore 186 100 m 1 222 100 l 2 248 100 256 98 266 91 c 0 280 81 288 66 288 50 c 0 288 33 278 16 264 7 c 0 256 3 242 0 222 0 c 2 72 0 l 2 48 0 34 3 26 10 c 0 14 19 6 35 6 50 c 0 6 67 14 84 30 93 c 1 38 99 48 100 72 100 c 2 86 100 l 1 86 483 l 1 72 483 l 2 46 483 36 485 26 492 c 0 14 502 6 517 6 533 c 0 6 550 14 567 30 576 c 1 38 582 46 583 72 583 c 2 222 583 l 2 248 583 258 581 266 574 c 0 280 564 288 549 288 533 c 0 288 516 278 499 264 490 c 0 256 485 244 483 222 483 c 2 186 483 l 1 186 334 l 1 364 487 l 1 344 495 334 509 334 532 c 0 334 560 350 578 378 581 c 0 390 583 392 583 400 583 c 2 500 583 l 2 526 583 536 581 546 574 c 0 558 564 566 549 566 533 c 0 566 500 544 483 504 483 c 1 328 330 l 1 388 298 450 215 496 100 c 1 528 100 l 2 556 100 564 98 574 91 c 0 586 81 594 66 594 50 c 0 594 33 586 16 570 7 c 0 564 3 548 0 528 0 c 2 418 0 l 1 372 143 268 278 186 278 c 1 186 100 l 1 EndSplineSet MinimumDistance: x31,-1 EndChar StartChar: afii10029 Encoding: 1051 1051 Width: 600 Flags: W HStem: 0 100<152 163 380 414 515 542> 483 100<305 414> VStem: 13 100<129 161> 206 100<130 483> 415 100<99 483> Fore 206 139 m 1 206 483 l 1 173 486 154 504 154 533 c 0 154 550 163 567 178 576 c 0 187 582 195 583 220 583 c 2 501 583 l 2 528 583 537 581 547 574 c 0 559 564 567 549 567 533 c 0 567 504 548 486 515 483 c 1 515 100 l 1 521 100 l 2 548 100 557 98 566 91 c 0 579 81 587 66 587 50 c 0 587 33 578 16 563 7 c 0 555 2 542 0 521 0 c 2 400 0 l 2 376 0 364 3 355 9 c 0 342 19 334 35 334 50 c 0 334 67 343 84 358 93 c 0 367 99 376 100 400 100 c 2 415 100 l 1 415 483 l 1 306 483 l 1 306 130 l 2 306 32 235 0 155 0 c 0 78 0 13 52 13 130 c 2 13 138 l 2 13 165 15 173 21 183 c 0 31 196 47 204 63 204 c 0 79 204 95 195 105 180 c 0 111 172 113 162 113 139 c 0 113 112 136 100 161 100 c 0 185 100 207 116 206 139 c 1 EndSplineSet MinimumDistance: x8,-1 x25,22 y22,25 y22,23 Back 104 80 m 6 104 54 137 41 150 41 c 4 165 41 197 46 197 80 c 6 197 522 l 5 172 522 l 6 154 522 145 529 145 543 c 4 145 556 154 563 172 563 c 6 238 563 l 5 435 563 l 5 501 563 l 6 519 563 528 556 528 543 c 4 528 529 519 522 501 522 c 6 476 522 l 5 476 41 l 5 522 41 l 6 540 41 549 34 549 21 c 4 549 7 539 0 522 0 c 6 381 0 l 6 363 0 354 7 354 21 c 4 354 34 363 41 381 41 c 6 435 41 l 5 435 522 l 5 238 522 l 5 238 76 l 6 238 24 192 0 148 0 c 4 119 0 63 26 63 76 c 6 63 99 l 6 63 117 70 127 84 127 c 4 97 127 104 118 104 99 c 6 104 80 l 6 EndSplineSet EndChar StartChar: afii10030 Encoding: 1052 1052 Width: 600 Flags: W HStem: 0 100<29 41 143 189 413 461 563 573> 563 20<438 548> VStem: -19 262<48 52> 42 100<100 388> 361 262<48 52> 462 100<100 388> DStem: 142 389 165 583 260 138 303 286 438 583 462 389 303 286 351 138 Ref: 77 N 1 0 0 1 0 0 EndChar StartChar: afii10031 Encoding: 1053 1053 Width: 600 Flags: W HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5> VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483> Ref: 72 N 1 0 0 1 0 0 EndChar StartChar: afii10032 Encoding: 1054 1054 Width: 600 Flags: W HStem: -14 100<251 348.5> 497 100<251 333.5> VStem: 21 100<235.5 348> 479 100<234 335> Ref: 79 N 1 0 0 1 0 0 EndChar StartChar: afii10033 Encoding: 1055 1055 Width: 600 Flags: W HStem: 0 100<66 93 193 230 372 406 507 534> 483 100<193 406> VStem: 93 100<99 483> 407 100<99 483> Fore 407 483 m 1 193 483 l 1 193 100 l 1 208 100 l 2 234 100 244 98 253 91 c 0 266 81 274 66 274 50 c 0 274 33 265 16 250 7 c 0 242 2 229 0 208 0 c 2 87 0 l 2 63 0 50 3 41 9 c 0 29 19 21 35 21 50 c 0 21 67 30 84 45 93 c 0 54 99 62 100 87 100 c 2 93 100 l 1 93 483 l 1 60 486 41 504 41 533 c 0 41 550 50 567 65 576 c 0 74 582 82 583 107 583 c 2 493 583 l 2 520 583 529 581 539 574 c 0 551 564 559 549 559 533 c 0 559 504 540 486 507 483 c 1 507 100 l 1 513 100 l 2 540 100 549 98 558 91 c 0 571 81 579 66 579 50 c 0 579 33 570 16 555 7 c 0 547 2 534 0 513 0 c 2 392 0 l 2 368 0 356 3 347 9 c 0 334 19 326 35 326 50 c 0 326 67 335 84 350 93 c 0 359 99 368 100 392 100 c 2 407 100 l 1 407 483 l 1 EndSplineSet MinimumDistance: x21,-1 EndChar StartChar: afii10034 Encoding: 1056 1056 Width: 600 Flags: W HStem: 0 100<79 94 194 293> 200 100<194 292> 483 100<79 94 194 312 194 194> VStem: 94 100<100 200 300 483> 423 106<371 419.5> Ref: 80 N 1 0 0 1 0 0 EndChar StartChar: afii10035 Encoding: 1057 1057 Width: 600 Flags: W HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328> VStem: 33 100<242 322> Ref: 67 N 1 0 0 1 0 0 EndChar StartChar: afii10036 Encoding: 1058 1058 Width: 600 Flags: W HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349> VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483> Ref: 84 N 1 0 0 1 0 0 EndChar StartChar: afii10037 Encoding: 1059 1059 Width: 600 Flags: W HStem: 0 21G<184 294> 0.957314 99.0427<163 176> 563 20G<86 178 424 514> VStem: 20 224<527 535> 356 224<527 535> DStem: 244 216 522 483 176 100 306 100 394 484 522 483 300 312 306 100 Fore 306 100 m 1 340 98 360 80 360 50 c 0 360 33 352 16 336 7 c 0 328 2 316 0 294 0 c 2 184 0 l 2 160 0 148 3 138 9 c 1 126 19 118 34 118 50 c 0 118 81 140 100 176 100 c 1 244 216 l 1 78 483 l 1 42 485 20 503 20 533 c 0 20 560 38 578 66 581 c 0 78 583 80 583 86 583 c 2 178 583 l 2 206 583 214 581 224 574 c 0 236 564 244 549 244 533 c 0 244 511 236 498 206 484 c 1 300 312 l 1 394 484 l 1 366 498 356 511 356 533 c 0 356 548 364 564 378 573 c 1 386 580 402 583 424 583 c 2 514 583 l 2 540 583 548 581 558 574 c 0 572 564 580 549 580 533 c 0 580 502 558 484 522 483 c 1 306 100 l 1 EndSplineSet MinimumDistance: x24,-1 x19,24 x6,1 EndChar StartChar: afii10038 Encoding: 1060 1060 Width: 600 Flags: W HStem: 0 100<131 250 350 469> 121 100<211 250 350.125 398.707> 362 100<211 250 350.125 400.034> 483 100<131 250 350 469> VStem: 4 100<287 305> 250 100<99 121 221 362 461 483> 496 100<287 305> Fore 350 362 m 1 350 221 l 1 412 221 496 220 496 295 c 0 496 363 411 362 350 362 c 1 350 462 m 1 442 462 596 462 596 300 c 0 596 121 442 121 350 121 c 1 350 100 l 1 451 100 l 2 478 100 486 98 496 91 c 0 510 81 517 66 517 50 c 0 517 17 495 0 451 0 c 2 149 0 l 2 125 0 113 3 104 10 c 0 91 19 83 35 83 50 c 0 83 67 92 84 107 93 c 0 116 99 123 100 149 100 c 2 250 100 l 1 250 121 l 1 158 121 4 121 4 300 c 0 4 462 158 462 250 462 c 1 250 483 l 1 149 483 l 2 124 483 113 485 104 492 c 0 91 502 83 517 83 533 c 0 83 550 92 567 107 576 c 0 116 582 123 583 149 583 c 2 451 583 l 2 478 583 486 581 496 574 c 0 510 564 517 549 517 533 c 0 517 516 508 499 493 490 c 0 485 485 474 483 451 483 c 2 350 483 l 1 350 462 l 1 250 362 m 1 189 362 104 363 104 295 c 0 104 220 188 221 250 221 c 1 250 362 l 1 EndSplineSet MinimumDistance: x4,-1 EndChar StartChar: afii10039 Encoding: 1061 1061 Width: 600 Flags: W HStem: 0 21<76 187 413 524> 0.749951 99.25<58 69> 563 20<85 176 422 512> VStem: 10 243<48 52> 19 224<528 535> 347 243<48 52> 355 223<528 535> DStem: 77 483 205 484 235 298 300 375 235 298 301 220 69 100 199 100 301 220 364 297 402 100 531 100 393 484 521 483 300 375 364 297 Ref: 88 N 1 0 0 1 0 0 EndChar StartChar: afii10040 Encoding: 1062 1062 Width: 600 Flags: W HStem: 0 100<178 391 492 494> 483 100<51 78 178 215 357 391 492 519> VStem: 78 100<100 483> 392 100<100 483> 494 100<-94 0> Fore 494 0 m 1 92 0 l 2 67 0 59 1 50 7 c 0 35 16 26 33 26 50 c 0 26 79 45 97 78 100 c 1 78 483 l 1 72 483 l 2 47 483 39 484 30 490 c 0 15 499 6 516 6 533 c 0 6 548 14 564 26 574 c 0 35 580 48 583 72 583 c 2 193 583 l 2 214 583 227 581 235 576 c 0 250 567 259 550 259 533 c 0 259 517 251 502 238 492 c 0 229 485 219 483 193 483 c 2 178 483 l 1 178 100 l 1 392 100 l 1 392 483 l 1 377 483 l 2 353 483 344 484 335 490 c 0 320 499 311 516 311 533 c 0 311 548 319 564 332 574 c 0 341 580 353 583 377 583 c 2 498 583 l 2 519 583 532 581 540 576 c 0 555 567 564 550 564 533 c 0 564 517 556 502 543 492 c 0 534 485 525 483 498 483 c 2 492 483 l 1 492 100 l 1 594 100 l 1 594 -75 l 2 594 -102 592 -110 585 -120 c 0 575 -133 560 -141 544 -141 c 0 527 -141 511 -132 501 -117 c 0 496 -109 494 -98 494 -75 c 2 494 0 l 1 EndSplineSet MinimumDistance: x32,-1 y33,31 x31,33 x31,32 EndChar StartChar: afii10041 Encoding: 1063 1063 Width: 600 Flags: W HStem: 0 100<357 390 490 503> 170 100<270 295> 563 20G<104 206 374 476> VStem: 90 100<307 483> 390 100<99 208 307 483> Fore 390 208 m 1 363 185 329 170 284 170 c 0 190 170 96 185 90 305 c 1 90 483 l 1 58 486 38 504 38 533 c 0 38 550 48 567 62 576 c 0 72 582 80 583 104 583 c 2 206 583 l 2 232 583 242 581 250 574 c 0 264 564 272 549 272 533 c 0 272 516 262 499 248 490 c 0 238 485 230 483 206 483 c 2 190 483 l 1 190 308 l 1 202 282 247 270 290 270 c 0 333 270 369 282 390 308 c 1 390 483 l 1 374 483 l 2 348 483 340 485 330 492 c 0 316 502 308 517 308 533 c 0 308 550 318 567 332 576 c 0 342 582 350 583 374 583 c 2 476 583 l 2 502 583 512 581 522 574 c 0 534 564 542 549 542 533 c 0 542 504 522 486 490 483 c 1 490 100 l 1 496 100 l 2 522 100 532 98 540 91 c 0 554 81 562 66 562 50 c 0 562 33 552 16 538 7 c 0 530 2 516 0 496 0 c 2 374 0 l 2 350 0 338 3 330 9 c 0 316 19 308 35 308 50 c 0 308 67 318 84 332 93 c 0 342 99 350 100 374 100 c 2 390 100 l 1 390 208 l 1 EndSplineSet MinimumDistance: x25,-1 EndChar StartChar: afii10042 Encoding: 1064 1064 Width: 600 Flags: W HStem: 0 100<122 250 350 478> 483 99.4037<20 22 122 124 248 250 350 352 473 478 578 580> 563 20G<36 110 268 332 490 564> VStem: 22 100<100 483> 250 100<100 483> 478 100<100 483> Fore 268 583 m 2 244 583 232 580 222 574 c 1 210 564 202 548 202 533 c 0 202 516 206 506 218 494 c 0 228 485 229 483 250 483 c 1 250 100 l 1 122 100 l 1 122 483 l 1 138 483 143 485 152 494 c 0 165 506 170 517 170 533 c 0 170 550 160 567 146 576 c 0 138 581 132 583 110 583 c 2 36 583 l 2 12 583 8 580 -2 574 c 1 -14 564 -22 548 -22 533 c 0 -22 516 -16 502 -2 490 c 0 6 483 10 483 22 483 c 1 22 100 l 1 -10 97 -22 79 -22 50 c 0 -22 33 -12 16 2 7 c 0 12 1 20 0 44 0 c 2 556 0 l 2 580 0 588 1 598 7 c 0 612 16 622 33 622 50 c 0 622 74 610 97 578 100 c 1 578 483 l 1 590 483 594 483 602 490 c 0 616 502 622 516 622 533 c 0 622 548 614 564 602 574 c 1 592 580 588 583 564 583 c 2 490 583 l 2 468 583 462 581 454 576 c 0 440 567 430 550 430 533 c 0 430 517 435 506 448 494 c 0 457 485 462 483 478 483 c 1 478 100 l 1 350 100 l 1 350 483 l 1 371 483 372 485 382 494 c 0 394 506 398 516 398 533 c 0 398 548 390 564 378 574 c 1 368 580 356 583 332 583 c 2 268 583 l 2 EndSplineSet MinimumDistance: x24,-1 EndChar StartChar: afii10043 Encoding: 1065 1065 Width: 600 Flags: W HStem: 0 100<116 241 341 466> 483 99.4037<14 16 116 118 239 241 341 343 464 466 566 568> 563 20G<30 104 259 323 478 552> VStem: 16 100<100 483> 241 100<100 483> 466 100<100 483> 524 100<-94 0> Fore 566 100 m 1 566 483 l 1 578 483 582 483 590 490 c 0 604 502 610 516 610 533 c 0 610 548 602 564 590 574 c 1 580 580 576 583 552 583 c 2 478 583 l 2 456 583 450 581 442 576 c 0 428 567 418 550 418 533 c 0 418 517 423 506 436 494 c 0 445 485 450 483 466 483 c 1 466 100 l 1 341 100 l 1 341 483 l 1 362 483 363 485 373 494 c 0 385 506 389 516 389 533 c 0 389 548 381 564 369 574 c 1 359 580 347 583 323 583 c 2 259 583 l 2 235 583 223 580 213 574 c 1 201 564 193 548 193 533 c 0 193 516 197 506 209 494 c 0 219 485 220 483 241 483 c 1 241 100 l 1 116 100 l 1 116 483 l 1 132 483 137 485 146 494 c 0 159 506 164 517 164 533 c 0 164 550 154 567 140 576 c 0 132 581 126 583 104 583 c 2 30 583 l 2 6 583 2 580 -8 574 c 1 -20 564 -28 548 -28 533 c 0 -28 516 -22 502 -8 490 c 0 0 483 4 483 16 483 c 1 16 100 l 1 -16 97 -28 79 -28 50 c 0 -28 33 -18 16 -4 7 c 0 6 1 14 0 38 0 c 2 524 0 l 1 524 -75 l 2 524 -98 526 -109 531 -117 c 0 541 -132 557 -141 574 -141 c 0 590 -141 605 -133 615 -120 c 0 622 -110 624 -102 624 -75 c 2 624 100 l 1 566 100 l 1 EndSplineSet MinimumDistance: y44,0 x0,44 x0,45 EndChar StartChar: afii10044 Encoding: 1066 1066 Width: 600 Flags: W HStem: 0 100<168 195 295 410> 283 100<295 395> 483 100<92 195 295 330> VStem: -7 100<367 483> 195 100<100 283 382 483> 501 106<187 195> Fore -7 583 m 1 326 583 l 2 345 583 360 580 368 576 c 0 382 567 392 550 392 533 c 0 392 517 384 502 370 492 c 0 360 485 352 483 326 483 c 2 295 483 l 1 295 383 l 1 371 383 l 2 463 383 513 366 557 317 c 0 589 282 607 235 607 189 c 0 607 78 517 0 391 0 c 2 179 0 l 2 153 0 147 1 137 7 c 0 123 16 113 33 113 50 c 0 113 65 121 81 135 91 c 0 143 98 155 100 179 100 c 2 195 100 l 1 195 483 l 1 93 483 l 1 93 390 l 2 93 363 91 355 83 345 c 0 73 332 59 324 43 324 c 0 25 324 9 333 -1 348 c 1 -5 357 -7 367 -7 390 c 2 -7 583 l 1 295 100 m 1 391 100 l 2 459 100 501 135 501 192 c 0 501 248 459 283 391 283 c 2 295 283 l 1 295 100 l 1 EndSplineSet EndChar StartChar: afii10045 Encoding: 1067 1067 Width: 600 Flags: W HStem: 0 100<26 46 147 219 458 460 561 572> 483 100<26 46 147 188 442 460 561.016 579.601> VStem: 47 100<100 283 382 483> 311 106<187 195> 461 100<99 483> Fore 561 483 m 1 561 100 l 1 584 100 595 98 601 91 c 1 615 81 621 66 621 50 c 0 621 17 599 0 555 0 c 2 466 0 l 2 442 0 430 3 422 10 c 1 408 19 400 35 400 50 c 0 400 67 410 84 424 93 c 1 430 100 440 100 461 100 c 1 461 483 l 1 440 483 427 484 422 492 c 1 408 502 400 517 400 533 c 0 400 550 410 567 424 576 c 0 434 582 440 583 466 583 c 2 555 583 l 2 583 583 591 581 601 574 c 0 615 564 621 549 621 533 c 0 621 516 613 499 597 490 c 1 592 485 581 483 561 483 c 1 147 383 m 1 179 383 l 2 273 383 323 366 367 317 c 0 399 282 417 235 417 189 c 0 417 78 327 0 199 0 c 2 45 0 l 2 19 0 11 1 3 7 c 1 -13 16 -21 33 -21 50 c 0 -21 65 -13 81 -1 91 c 1 6 99 24 100 47 100 c 1 47 483 l 1 27 483 8 483 3 490 c 1 -13 499 -21 516 -21 533 c 0 -21 548 -13 564 -1 573 c 0 7 580 21 583 45 583 c 2 173 583 l 2 193 583 207 580 215 576 c 0 229 567 239 550 239 533 c 0 239 517 231 502 217 492 c 0 207 485 199 483 173 483 c 2 147 483 l 1 147 383 l 1 147 100 m 1 199 100 l 2 269 100 311 135 311 192 c 0 311 248 269 283 199 283 c 2 147 283 l 1 147 100 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: afii10046 Encoding: 1068 1068 Width: 600 Flags: W HStem: 0 100<60 94 194 318> 283 100<194 318> 483 100<60 94 194 312> VStem: 94 100<100 283 382 483> 423 106<187 195> Fore 194 383 m 1 194 483 l 1 293 483 l 2 320 483 328 485 338 492 c 0 351 502 359 517 359 533 c 0 359 550 350 567 335 576 c 0 328 580 313 583 293 583 c 2 79 583 l 2 56 583 42 580 34 573 c 0 21 564 13 548 13 533 c 0 13 516 22 499 37 490 c 0 46 484 55 483 79 483 c 2 94 483 l 1 94 100 l 1 79 100 l 2 54 100 43 98 34 91 c 0 21 81 13 65 13 50 c 0 13 33 22 16 37 7 c 0 46 1 53 0 79 0 c 2 312 0 l 2 439 0 529 78 529 189 c 0 529 235 511 282 479 317 c 0 435 366 385 383 292 383 c 2 194 383 l 1 194 100 m 1 194 283 l 1 312 283 l 2 381 283 423 248 423 192 c 0 423 135 381 100 312 100 c 2 194 100 l 1 EndSplineSet MinimumDistance: x20,-1 EndChar StartChar: afii10047 Encoding: 1069 1069 Width: 600 Flags: W HStem: -14 100<248 294> 241 100<241 464> 367 216<97 103> 497 100<270 307> Fore 466 241 m 1 250 241 l 2 226 241 212 244 204 250 c 0 192 260 184 276 184 291 c 0 184 308 192 325 208 334 c 1 216 340 224 341 250 341 c 2 464 341 l 1 452 432 383 497 290 497 c 0 256 497 220 488 192 473 c 0 164 457 154 444 148 420 c 1 144 396 142 389 134 381 c 0 126 373 112 367 100 367 c 0 84 367 68 375 58 388 c 0 52 397 50 408 50 433 c 2 50 517 l 2 50 542 50 550 56 559 c 0 66 574 82 583 100 583 c 0 116 583 128 577 142 559 c 1 152 563 l 2 208 586 242 597 294 597 c 0 448 597 566 475 566 315 c 2 566 249 l 2 566 97 442 -14 272 -14 c 0 200 -14 132 4 88 36 c 0 54 60 34 86 34 109 c 0 34 136 58 159 84 159 c 0 98 159 110 154 120 143 c 0 148 115 148 115 158 109 c 0 184 94 224 86 268 86 c 0 384 86 461 147 466 241 c 1 EndSplineSet EndChar StartChar: afii10048 Encoding: 1070 1070 Width: 600 Flags: W HStem: -14 100<392 426> 0 100<24 32 132 154> 497 100<392 426> 563 20G<46 141> VStem: -20 227<529 535> 32 100<99 241 341 483> 32 253<257 323> 533 100<273 323> Fore 190 241 m 1 132 241 l 1 132 100 l 1 141 100 l 2 167 100 177 98 186 91 c 0 199 81 207 66 207 50 c 0 207 33 198 16 183 7 c 0 175 2 162 0 141 0 c 2 43 0 l 2 19 0 6 3 -3 9 c 0 -15 19 -23 35 -23 50 c 0 -23 67 -12 79 3 91 c 0 13 98 13 100 32 100 c 1 32 483 l 1 -1 486 -20 504 -20 533 c 0 -20 550 -11 567 4 576 c 0 13 582 21 583 46 583 c 2 141 583 l 2 168 583 177 581 186 574 c 0 199 564 207 549 207 533 c 0 207 516 198 499 183 490 c 0 174 485 165 483 141 483 c 2 132 483 l 1 132 341 l 1 189 341 l 1 188 480 274 596 409 597 c 0 565 598 634 440 633 287 c 0 632 137 561 -14 409 -14 c 0 271 -14 190 114 190 241 c 1 409 497 m 0 311 497 285 404 285 292 c 0 285 179 311 86 409 86 c 0 506 86 533 179 533 289 c 0 533 404 508 497 409 497 c 0 EndSplineSet EndChar StartChar: afii10049 Encoding: 1071 1071 Width: 600 Flags: W HStem: 0 100<44 76 380 422 522 542> 222 100<325 422> 483 100<300 422 522 558> VStem: 94 106<399 417> 422 100<99 222 322 483> Fore 422 222 m 1 326 222 l 1 284 207 192 97 142 0 c 1 63 0 l 2 43 0 28 3 21 7 c 0 6 16 -3 33 -3 50 c 0 -3 66 5 82 17 91 c 0 27 98 38 100 63 100 c 2 76 100 l 1 118 167 155 213 202 254 c 1 129 294 94 342 94 405 c 0 94 510 184 583 314 583 c 2 537 583 l 2 563 583 570 582 579 576 c 0 594 567 603 550 603 533 c 0 603 517 595 502 582 492 c 0 573 485 562 483 537 483 c 2 522 483 l 1 522 100 l 1 537 100 l 2 561 100 570 99 579 93 c 0 594 84 603 67 603 50 c 0 603 35 595 19 582 10 c 0 574 3 560 0 537 0 c 2 387 0 l 2 367 0 352 3 345 7 c 0 330 16 321 33 321 50 c 0 321 66 329 81 341 91 c 0 351 98 360 100 387 100 c 2 422 100 l 1 422 222 l 1 422 322 m 1 422 483 l 1 310 483 l 2 246 483 200 451 200 408 c 0 200 358 262 322 346 322 c 2 422 322 l 1 EndSplineSet MinimumDistance: x17,-1 EndChar StartChar: afii10065 Encoding: 1072 1072 Width: 600 Flags: W HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> VStem: 42 106<118 128> 389 100<135 185 279 304> Ref: 97 N 1 0 0 1 0 0 EndChar StartChar: afii10066 Encoding: 1073 1073 Width: 600 Flags: W HStem: -14 100<291 309> 351 100<291 309> 499.365 68.6348<339 408> 500.033 140.967<448 460> VStem: 52 100<209 236> 448 100<209 234> Fore 508 500 m 1 300 499 184 514 152 401 c 1 194 435 242 451 302 451 c 0 376 451 432 430 478 386 c 0 524 342 548 284 548 218 c 0 548 153 524 96 478 51 c 0 432 7 376 -14 302 -14 c 0 158 -14 52 70 52 234 c 0 51 539 150 569 408 568 c 1 408 575 l 2 408 601 410 611 416 621 c 1 426 633 442 641 458 641 c 0 474 641 492 632 500 617 c 0 506 608 508 599 508 575 c 2 508 500 l 1 300 351 m 0 252 351 218 339 190 311 c 0 166 286 152 253 152 220 c 0 152 141 212 86 300 86 c 0 348 86 382 99 410 126 c 1 434 151 448 185 448 219 c 0 448 252 434 286 410 311 c 1 380 339 348 351 300 351 c 0 EndSplineSet MinimumDistance: x4,-1 EndChar StartChar: afii10067 Encoding: 1074 1074 Width: 600 Flags: W HStem: 0 100<144 146 246.125 320> 180 100<246.125 298.531> 337 100<144 146 246.125 325> VStem: 146 100<100 180 280 337> 406 99.1928<303 309> Fore 246 337 m 1 246 280 l 1 358 279 406 275 406 307 c 0 406 339 358 336 246 337 c 1 246 100 m 1 352 100 416 97 414 136 c 1 416 172 344 180 246 180 c 1 246 100 l 1 152 0 m 2 106 0 84 17 84 50 c 0 84 82 106 100 146 100 c 1 146 337 l 1 106 337 84 355 84 387 c 0 84 420 104 437 152 437 c 2 320 437 l 2 362 437 506 434 506 321 c 0 506 270 486 240 452 226 c 1 498 212 516 186 516 116 c 0 516 0 366 -3 320 0 c 1 152 0 l 2 EndSplineSet EndChar StartChar: afii10068 Encoding: 1075 1075 Width: 600 Flags: W HStem: 0 21G<165 254> 0.144728 99.8553<157 159 259.031 274.093> 337 99.8553<157 159 259.063 402> 417 20G<165 502> VStem: 159 100<99 336> 402 100<287 336> Fore 402 336 m 1 402 336 338 337 259 337 c 1 259 100 l 1 298 100 321 82 320 50 c 0 319 17 300 -3 254 0 c 1 165 0 l 2 120 0 98 17 98 50 c 0 98 82 120 100 159 100 c 1 159 337 l 1 120 337 98 355 98 387 c 0 98 420 120 437 165 437 c 2 502 437 l 1 502 310 l 2 502 284 500 274 493 264 c 0 483 252 468 244 452 244 c 0 435 244 418 253 409 268 c 0 403 277 402 286 402 310 c 2 402 336 l 1 EndSplineSet MinimumDistance: x11,-1 EndChar StartChar: afii10069 Encoding: 1076 1076 Width: 600 Flags: W HStem: 0 100<134 138 250 404> 337 99.8553<161 163 263 404 504 516> 417 20G<169 499> VStem: 35 100<-45 0> 163 100<141 336> 404 100<100 336> 460 100<-45 0> Fore 250 100 m 1 404 100 l 1 404 336 l 1 263 337 l 1 263 143 l 2 263 128 259 106 250 100 c 1 134 100 m 2 150 100 163 126 163 143 c 2 163 337 l 1 124 337 102 355 102 387 c 0 102 420 124 437 169 437 c 2 499 437 l 2 542 437 564 420 565 387 c 0 566 355 543 337 504 337 c 1 504 100 l 1 560 100 l 1 560 -26 l 2 560 -52 558 -62 552 -72 c 1 542 -84 526 -92 510 -92 c 0 494 -92 476 -83 468 -68 c 0 462 -59 460 -50 460 -26 c 2 460 0 l 1 135 0 l 1 135 -26 l 2 135 -50 133 -59 127 -68 c 0 119 -83 101 -92 85 -92 c 0 69 -92 53 -84 43 -72 c 1 37 -62 35 -52 35 -26 c 2 35 100 l 1 134 100 l 2 EndSplineSet MinimumDistance: x14,-1 y15,13 x13,15 x13,14 y26,5 x6,26 x6,27 EndChar StartChar: afii10070 Encoding: 1077 1077 Width: 600 Flags: W HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> Ref: 101 N 1 0 0 1 0 0 EndChar StartChar: afii10072 Encoding: 1078 1078 Width: 600 Flags: W HStem: 0 21G<47 118 264 335 481 552> 337 99.1475<26 34 565 572> 417 20G<49 118 254 345 481 550> VStem: -21 205<47 53> -17 201<383 389> 248 103<100 161 287 337> 415 205<47 53> 415 201<383 389> DStem: 34 337 168 350 170 227 248 287 170 227 248 161 34 100 170 87 351 161 429 227 429 87 565 100 431 350 565 337 351 287 429 227 Fore 335 0 m 2 379 0 395 17 395 50 c 0 395 67 385 84 369 93 c 1 361 99 351 100 351 100 c 1 351 161 l 1 429 87 l 1 417 74 415 64 415 50 c 0 415 17 437 0 481 0 c 2 552 0 l 2 574 0 588 2 596 7 c 0 610 17 620 33 620 50 c 0 620 66 613 81 598 93 c 0 587 101 581 101 565 100 c 1 429 227 l 1 565 337 l 1 575 337 583 337 592 344 c 0 608 356 616 370 616 387 c 0 616 403 610 418 596 428 c 0 586 435 576 437 550 437 c 2 481 437 l 2 457 437 447 435 439 430 c 0 423 420 415 404 415 387 c 0 415 373 419 364 431 350 c 1 351 287 l 1 351 337 l 1 351 337 365 339 375 346 c 0 387 356 395 371 395 387 c 0 395 404 387 421 371 430 c 1 363 436 369 437 345 437 c 2 254 437 l 2 230 437 236 436 228 430 c 1 212 421 204 404 204 387 c 0 204 371 212 356 224 346 c 0 234 339 248 337 248 337 c 1 248 287 l 1 168 350 l 1 180 364 184 373 184 387 c 0 184 404 176 420 160 430 c 0 152 435 142 437 118 437 c 2 49 437 l 2 23 437 13 435 3 428 c 0 -11 418 -17 403 -17 387 c 0 -17 370 -9 356 7 344 c 0 16 337 24 337 34 337 c 1 170 227 l 1 34 100 l 1 18 101 12 101 1 93 c 0 -14 81 -21 66 -21 50 c 0 -21 33 -11 17 3 7 c 0 11 2 25 0 47 0 c 2 118 0 l 2 162 0 184 17 184 50 c 0 184 64 182 74 170 87 c 1 248 161 l 1 248 100 l 1 248 100 238 99 230 93 c 1 214 84 204 67 204 50 c 0 204 17 220 0 264 0 c 2 335 0 l 2 EndSplineSet EndChar StartChar: afii10073 Encoding: 1079 1079 Width: 600 Flags: W HStem: -16 100<280 314> 1 166<120 126> 178 100<234.892 314> 350 100<280 314> VStem: 396 110<310 318> 417 110<121 129> Fore 255 278 m 2 286 278 l 2 352 278 356 286 370 291 c 0 386 297 396 306 396 315 c 0 396 333 348 350 297 350 c 0 255 350 222 341 194 321 c 1 189 312 l 2 177 290 163 281 142 281 c 0 127 281 111 289 101 301 c 0 94 311 92 321 92 347 c 2 92 384 l 2 92 430 107 450 139 450 c 0 154 450 163 443 171 424 c 1 210 442 251 450 300 450 c 0 420 450 506 393 506 313 c 0 506 281 491 252 471 235 c 1 471 225 l 1 504 205 527 164 527 125 c 0 527 43 433 -16 304 -16 c 0 247 -16 196 -6 156 13 c 1 145 4 137 1 124 1 c 0 106 1 90 9 80 25 c 0 75 34 73 43 73 67 c 2 73 100 l 2 73 127 75 136 83 146 c 0 93 160 107 167 124 167 c 0 150 167 166 153 175 123 c 1 204 97 246 84 300 84 c 0 364 84 417 104 417 127 c 0 417 140 404 154 383 162 c 0 366 169 342 178 291 178 c 2 249 178 l 2 210 178 188 196 188 228 c 0 188 261 210 279 255 278 c 2 EndSplineSet MinimumDistance: x17,-1 EndChar StartChar: afii10074 Encoding: 1080 1080 Width: 600 Flags: W HStem: 0 21G<98 187 413 502> 0.144728 99.8553<90 92 192.031 207.093 398 407 507.031 522.093> 337 99.1444<78 92 192 194 391.955 406.969 507 512> VStem: 92 100<99 113 214 338> 407 100<99 224 324 336> DStem: 407 325 407 224 192 214 192 113 Fore 192 337 m 1 192 214 l 1 407 325 l 1 407 336 l 1 368 336 346 354 346 386 c 0 347 419 367 439 412 436 c 1 502 437 l 2 546 437 568 420 568 387 c 0 569 355 546 337 507 337 c 1 507 100 l 1 546 100 569 82 568 50 c 0 568 17 548 -3 502 0 c 1 413 0 l 2 368 0 346 17 346 50 c 0 346 82 368 100 407 100 c 1 407 224 l 1 192 113 l 1 192 100 l 1 231 100 254 82 253 50 c 0 253 17 233 -3 187 0 c 1 98 0 l 2 53 0 31 17 31 50 c 0 31 82 53 100 92 100 c 1 92 337 l 1 53 337 31 355 31 387 c 0 31 420 53 438 98 437 c 2 186 436 l 2 231 435 253 419 253 386 c 0 253 354 231 337 192 337 c 1 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: afii10075 Encoding: 1081 1081 Width: 600 Flags: W HStem: 0 21G<98 187 413 502> 0.144728 99.8553<90 92 192.031 207.093 398 406 507.031 522.093> 337 99.1444<78 92 192 194 391.722 406.969 507 512> 503 68<286 304> VStem: 92 100<99 113 214 338> 407 100<99 224 324 336> DStem: 407 325 407 224 192 214 192 113 Fore 156 687 m 0 176 687 183 678 190 647 c 0 200 601 242 571 297 571 c 0 352 571 394 601 404 647 c 0 411 678 418 687 438 687 c 0 458 687 472 672 472 649 c 0 472 573 389 503 297 503 c 0 205 503 122 573 122 649 c 0 122 672 136 687 156 687 c 0 192 337 m 1 192 214 l 1 407 325 l 1 407 336 l 1 368 336 346 354 346 386 c 0 347 419 367 439 412 436 c 1 502 437 l 2 546 437 568 420 568 387 c 0 569 355 546 337 507 337 c 1 507 100 l 1 546 100 569 82 568 50 c 0 568 17 548 -3 502 0 c 1 413 0 l 2 368 0 346 17 346 50 c 0 346 82 368 100 407 100 c 1 407 224 l 1 192 113 l 1 192 100 l 1 231 100 254 82 253 50 c 0 253 17 233 -3 187 0 c 1 98 0 l 2 53 0 31 17 31 50 c 0 31 82 53 100 92 100 c 1 92 337 l 1 53 337 31 355 31 387 c 0 31 420 53 438 98 437 c 2 186 436 l 2 231 435 253 419 253 386 c 0 253 354 231 337 192 337 c 1 EndSplineSet MinimumDistance: x16,-1 EndChar StartChar: afii10076 Encoding: 1082 1082 Width: 600 Flags: W HStem: 0 100<100.726 133 447 501> 337 100<99 133 447 485> VStem: 134 100<99 164 287 337> DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227 Fore 234 0 m 1 118 0 l 2 74 0 52 17 52 50 c 0 52 67 62 84 76 93 c 0 86 99 94 100 118 100 c 2 134 100 l 1 134 337 l 1 118 337 l 2 92 337 82 339 72 346 c 0 60 356 52 371 52 387 c 0 52 404 62 421 76 430 c 0 86 436 94 437 118 437 c 2 234 437 l 1 234 287 l 1 314 350 l 1 302 364 298 373 298 387 c 0 298 404 306 420 322 430 c 0 330 435 340 437 364 437 c 2 476 437 l 2 502 437 512 435 522 428 c 0 536 418 542 403 542 387 c 0 542 370 534 354 518 344 c 0 510 339 500 337 476 337 c 2 448 337 l 1 312 227 l 1 448 100 l 1 480 100 l 2 508 100 516 98 526 91 c 0 540 81 548 66 548 50 c 0 548 33 538 17 524 7 c 0 516 2 502 0 480 0 c 2 362 0 l 2 318 0 296 17 296 50 c 0 296 64 300 74 312 87 c 1 234 164 l 1 234 0 l 1 EndSplineSet MinimumDistance: x23,-1 EndChar StartChar: afii10077 Encoding: 1083 1083 Width: 600 Flags: W HStem: 0 21G<427 516> 0.302727 99.6973<416 421 521.031 536.093> 337 99.7568<176 180 280 421 521 530> 417 20G<186 516> VStem: 17 99<111 145> 180 100<111 336> 421 100<99 336> Fore 17 140 m 2 17 179 35 201 67 201 c 0 100 201 116 186 116 140 c 2 116 114 l 2 116 76 180 80 180 114 c 2 180 337 l 1 141 337 119 355 119 387 c 0 119 420 141 437 186 437 c 2 516 437 l 2 559 437 581 420 582 387 c 0 583 355 560 337 521 337 c 1 521 100 l 1 560 100 583 82 582 50 c 0 581 17 562 -3 516 0 c 1 427 0 l 2 382 0 360 17 360 50 c 0 360 82 382 100 421 100 c 1 421 336 l 1 280 337 l 1 280 100 l 2 280 30 226 0 145 0 c 0 81 0 17 30 17 87 c 2 17 140 l 2 EndSplineSet MinimumDistance: x10,-1 EndChar StartChar: afii10078 Encoding: 1084 1084 Width: 600 Flags: W HStem: 0 21G<46 141 463 558> 0.6703 99.3297<31 43 143.031 158.009 447 461 561 563> 337 99.8113<41 43 143 161 442 461 561 563> 417 20G<50 219 385 554> VStem: 43 100<99 337> 461 100<99 337> DStem: 161 337 219 437 264 100 302 243 385 437 443 337 302 243 340 100 Fore 264 100 m 1 161 337 l 1 143 337 l 1 143 100 l 1 183 100 207 83 207 51 c 0 207 18 185 0 141 0 c 2 46 0 l 2 0 0 -16 19 -16 51 c 0 -16 82 5 100 43 100 c 1 43 337 l 1 -2 336 -17 357 -16 388 c 0 -15 421 6 437 50 437 c 2 219 437 l 1 302 243 l 1 385 437 l 1 554 437 l 2 598 437 619 421 620 388 c 0 621 357 606 336 561 337 c 1 561 100 l 1 599 100 620 82 620 51 c 0 620 19 604 0 558 0 c 2 463 0 l 2 419 0 397 18 397 51 c 0 397 83 421 100 461 100 c 1 461 337 l 1 443 337 l 1 340 100 l 1 264 100 l 1 EndSplineSet MinimumDistance: x17,-1 EndChar StartChar: afii10079 Encoding: 1085 1085 Width: 600 Flags: W HStem: 0 21G<118 207 393 482> 0.144728 99.8553<110 112 212.031 227.093 385 387 487.031 502.093> 162 101<212 387> 337 99.1444<98 112 212 214 371.955 386.969 487 500> VStem: 112 100<99 161 263 338> 387 100<99 161 263 336> Fore 212 337 m 1 212 263 l 1 387 263 l 1 387 336 l 1 348 336 326 354 326 386 c 0 327 419 347 439 392 436 c 1 482 437 l 2 526 437 548 420 548 387 c 0 549 355 526 337 487 337 c 1 487 100 l 1 526 100 549 82 548 50 c 0 548 17 528 -3 482 0 c 1 393 0 l 2 348 0 326 17 326 50 c 0 326 82 348 100 387 100 c 1 387 162 l 1 212 162 l 1 212 100 l 1 251 100 274 82 273 50 c 0 273 17 253 -3 207 0 c 1 118 0 l 2 73 0 51 17 51 50 c 0 51 82 73 100 112 100 c 1 112 337 l 1 73 337 51 355 51 387 c 0 51 420 73 438 118 437 c 2 206 436 l 2 251 435 273 419 273 386 c 0 273 354 251 337 212 337 c 1 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: afii10080 Encoding: 1086 1086 Width: 600 Flags: W HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> VStem: 42 100<179.5 255> 458 100<179.5 254> Ref: 111 N 1 0 0 1 0 0 EndChar StartChar: afii10081 Encoding: 1087 1087 Width: 600 Flags: W HStem: 0 21G<113 202 398 487> 0.144728 99.8553<105 107 207.031 222.093 381 392 492.031 507.176> 337 99.8553<105 107 207 392 492 494> 417 20G<113 487> VStem: 107 100<99 336> 392 100<99 336> Fore 392 336 m 1 207 337 l 1 207 100 l 1 246 100 269 82 268 50 c 0 268 17 248 -3 202 0 c 1 113 0 l 2 68 0 46 17 46 50 c 0 46 82 68 100 107 100 c 1 107 337 l 1 68 337 46 355 46 387 c 0 46 420 68 437 113 437 c 2 487 437 l 2 531 437 553 420 553 387 c 0 554 355 531 337 492 337 c 1 492 100 l 1 531 100 554 82 553 50 c 0 553 17 533 -3 487 0 c 1 398 0 l 2 353 0 331 17 331 50 c 0 331 82 353 100 392 100 c 1 392 336 l 1 EndSplineSet MinimumDistance: x13,-1 EndChar StartChar: afii10082 Encoding: 1088 1088 Width: 600 Flags: W HStem: -205 100<58 74 174 232> 10 100<299.5 366> 350 100<302 343.5> VStem: 74 100<-105 66 195.5 247> 471 100<195 246.5> Ref: 112 N 1 0 0 1 0 0 EndChar StartChar: afii10083 Encoding: 1089 1089 Width: 600 Flags: W HStem: -16 100<274.5 350> 350 100<284.5 332> VStem: 54 100<176.5 226> Ref: 99 N 1 0 0 1 0 0 EndChar StartChar: afii10084 Encoding: 1090 1090 Width: 600 Flags: W HStem: 1 21G<256 345> 1.14473 99.8553<248 250 350.031 365.093> 337 101<161 250 350 438> VStem: 62 100<288 337> 250 100<100 337> 438 100<288 337> Fore 250 337 m 1 162 337 l 1 162 311 l 2 162 287 161 278 155 269 c 0 146 254 129 245 112 245 c 0 96 245 81 253 71 265 c 0 64 275 62 285 62 311 c 2 62 438 l 1 538 438 l 1 538 311 l 2 538 285 536 275 529 265 c 0 519 253 504 245 488 245 c 0 471 245 454 254 445 269 c 0 439 278 438 287 438 311 c 2 438 337 l 1 350 337 l 1 350 101 l 1 389 101 412 83 411 51 c 0 410 18 391 -2 345 1 c 1 256 1 l 2 211 1 189 18 189 51 c 0 189 83 211 101 250 101 c 1 250 337 l 1 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: afii10085 Encoding: 1091 1091 Width: 600 Flags: W HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> Ref: 121 N 1 0 0 1 0 0 EndChar StartChar: afii10086 Encoding: 1092 1092 Width: 600 Flags: W HStem: -205 100<219 250 349 429> 10 0<250 251.704> 10 100<184 250 348.296 417> 110 0<250 252.99> 350 100<184 250 350 417> 450 0<250 253.076> 548 100<219 250> VStem: -36 100<222 232> 250 100<-106 10 110 350 449 548> 536 100<222 232> Fore 414 350 m 2 350 350 l 1 350 110 l 1 350 110 326 110 414 110 c 0 500 110 535 160 536 230 c 1 535 284 487 350 414 350 c 2 350 450 m 1 350 450 330 450 392 450 c 0 532 450 636 353 636 224 c 0 636 101 533 10 394 10 c 0 335 10 350 10 350 10 c 1 350 -105 l 1 408 -105 l 2 434 -105 444 -107 454 -114 c 0 467 -124 474 -139 474 -155 c 0 474 -172 465 -188 450 -198 c 0 442 -203 430 -205 408 -205 c 2 234 -205 l 2 209 -205 198 -203 188 -195 c 0 176 -186 168 -171 168 -155 c 0 168 -138 177 -121 192 -112 c 0 201 -106 210 -105 234 -105 c 2 250 -105 l 1 250 10 l 1 250 10 265 10 206 10 c 0 67 10 -36 101 -36 224 c 0 -36 353 68 450 208 450 c 0 270 450 250 450 250 450 c 1 250 548 l 1 234 548 l 2 208 548 198 550 188 557 c 0 176 567 168 582 168 598 c 0 168 615 177 632 192 641 c 0 201 646 210 648 234 648 c 2 350 648 l 1 350 450 l 1 186 350 m 2 113 350 65 284 64 230 c 1 65 160 100 110 186 110 c 0 274 110 250 110 250 110 c 1 250 350 l 1 186 350 l 2 EndSplineSet MinimumDistance: x32,5 y5,32 y5,33 Back 414 350 m 2 350 350 l 1 350 110 l 1 414 110 l 2 500 110 535 160 536 230 c 5 535 284 487 350 414 350 c 2 350 450 m 1 392 450 l 2 532 450 636 353 636 224 c 0 636 101 533 10 394 10 c 2 350 10 l 1 350 -105 l 1 408 -105 l 2 434 -105 444 -107 454 -114 c 0 467 -124 474 -139 474 -155 c 0 474 -172 465 -188 450 -198 c 0 442 -203 430 -205 408 -205 c 2 234 -205 l 2 209 -205 198 -203 188 -195 c 0 176 -186 168 -171 168 -155 c 0 168 -138 177 -121 192 -112 c 0 201 -106 210 -105 234 -105 c 2 250 -105 l 1 250 10 l 1 206 10 l 2 67 10 -36 101 -36 224 c 0 -36 353 68 450 208 450 c 2 250 450 l 1 250 548 l 1 234 548 l 2 208 548 198 550 188 557 c 0 176 567 168 582 168 598 c 0 168 615 177 632 192 641 c 0 201 646 210 648 234 648 c 2 350 648 l 1 350 450 l 1 186 350 m 2 113 350 65 284 64 230 c 1 65 160 100 110 186 110 c 2 250 110 l 1 250 350 l 1 186 350 l 2 EndSplineSet EndChar StartChar: afii10087 Encoding: 1093 1093 Width: 600 Flags: W HStem: 0 20 417 20<106 198 198 211 400 491 491 504> Ref: 120 N 1 0 0 1 0 0 EndChar StartChar: afii10088 Encoding: 1094 1094 Width: 600 Flags: W HStem: -20 20G<97 469> 0.11526 99.8847<90 92 192 375> 337 99.7765<90 92 192 194 366 375 475 479> 417 20G<97 186 380 469> VStem: 92 100<100 337> 375 100<100 337> 469 100<-45 0> Fore 475 100 m 1 569 100 l 1 569 -26 l 2 569 -52 567 -62 560 -72 c 0 550 -84 535 -92 519 -92 c 0 502 -92 485 -83 476 -68 c 0 470 -59 469 -50 469 -26 c 2 469 0 l 1 97 0 l 2 54 0 31 17 31 50 c 0 30 82 53 100 92 100 c 1 92 337 l 1 53 337 30 355 31 387 c 0 31 420 51 436 97 437 c 2 186 437 l 2 231 437 253 420 253 387 c 0 253 355 231 337 192 337 c 1 192 101 l 1 375 100 l 1 375 337 l 1 336 337 313 355 314 387 c 0 314 420 337 436 380 437 c 2 469 437 l 2 514 437 536 420 536 387 c 0 536 355 514 337 475 337 c 1 475 100 l 1 EndSplineSet MinimumDistance: x1,-1 y2,0 x0,2 x0,1 EndChar StartChar: afii10089 Encoding: 1095 1095 Width: 600 Flags: W HStem: 0 21G<396 485> 0.369504 99.6305<384 390 490.031 505.093> 111 97<288 306> 337 99.1444<96 110 210 212 374.907 389.969 490 498> VStem: 110 100<250 338> 390 100<99 141 250 336> Fore 210 337 m 1 210 252 l 2 210 218 260 208 300 208 c 0 340 208 390 231 390 252 c 2 390 336 l 1 351 336 328 354 329 386 c 0 330 419 349 439 395 436 c 1 485 437 l 2 528 437 550 420 551 387 c 0 552 355 529 337 490 337 c 1 490 100 l 1 529 100 552 82 551 50 c 0 550 17 531 -3 485 0 c 1 396 0 l 2 351 0 329 17 329 50 c 0 329 82 351 100 390 100 c 1 390 141 l 1 370 122 339 111 302 111 c 0 202 111 110 135 110 252 c 2 110 337 l 1 71 337 49 355 49 387 c 0 49 420 71 438 116 437 c 2 204 436 l 2 249 435 271 419 271 386 c 0 271 354 249 337 210 337 c 1 EndSplineSet MinimumDistance: x9,-1 EndChar StartChar: afii10090 Encoding: 1096 1096 Width: 600 Flags: W HStem: 0 100<129 250 351 472> 417 20G<56 101 268 333 500 545> VStem: 29 100<100 337> 250 101<100 337> 472 100<100 337> Fore 546 0 m 2 589 0 611 17 612 50 c 0 613 81 595 100 572 100 c 1 572 337 l 1 595 338 613 355 612 387 c 0 611 420 588 437 545 437 c 2 500 437 l 2 455 437 428 420 428 387 c 0 428 355 445 336 472 337 c 1 472 100 l 1 351 100 l 1 351 337 l 1 375 336 400 355 399 387 c 0 398 420 378 437 333 437 c 2 268 437 l 2 223 437 203 420 202 387 c 0 201 355 226 336 250 337 c 1 250 100 l 1 129 100 l 1 129 337 l 1 156 336 173 355 173 387 c 0 173 420 146 437 101 437 c 2 56 437 l 2 13 437 -10 420 -11 387 c 0 -12 355 6 338 29 337 c 1 29 100 l 1 6 100 -12 81 -11 50 c 0 -10 17 12 0 55 0 c 2 546 0 l 2 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: afii10091 Encoding: 1097 1097 Width: 600 Flags: W HStem: 0 100<129 250 351 472> 417 20G<56 101 268 333 500 545> VStem: 29 100<100 337> 250 101<100 337> 472 100<100 337> 508 100<-45 0> Fore 572 100 m 1 572 337 l 1 595 338 613 355 612 387 c 0 611 420 588 437 545 437 c 2 500 437 l 2 455 437 428 420 428 387 c 0 428 355 445 336 472 337 c 1 472 100 l 1 351 100 l 1 351 337 l 1 375 336 400 355 399 387 c 0 398 420 378 437 333 437 c 2 268 437 l 2 223 437 203 420 202 387 c 0 201 355 226 336 250 337 c 1 250 100 l 1 129 100 l 1 129 337 l 1 156 336 173 355 173 387 c 0 173 420 146 437 101 437 c 2 56 437 l 2 13 437 -10 420 -11 387 c 0 -12 355 6 338 29 337 c 1 29 100 l 1 6 100 -12 81 -11 50 c 0 -10 17 12 0 55 0 c 2 508 0 l 1 508 -26 l 2 508 -50 509 -59 515 -68 c 0 524 -83 541 -92 558 -92 c 0 574 -92 589 -84 599 -72 c 0 606 -62 608 -52 608 -26 c 2 608 100 l 1 572 100 l 1 EndSplineSet MinimumDistance: y31,0 x0,31 x0,32 EndChar StartChar: afii10092 Encoding: 1098 1098 Width: 600 Flags: W HStem: 0 100<207 209 309.125 406> 180 100<309.125 392> 417 20G<21 303> VStem: 21 100<287 337> 209 100<100 180 279 337> 478 101<127 145> Fore 21 437 m 1 303 437 l 2 350 437 370 420 370 387 c 0 370 355 348 337 309 337 c 1 309 280 l 1 390 280 l 2 536 279 578 220 579 143 c 0 580 10 430 0 383 0 c 2 215 0 l 2 170 0 148 17 148 50 c 0 148 82 170 100 209 100 c 1 209 337 l 1 121 337 l 1 121 311 l 2 121 287 120 278 114 269 c 0 105 254 88 245 71 245 c 0 55 245 40 253 30 265 c 0 23 275 21 285 21 311 c 2 21 437 l 1 309 100 m 1 416 100 478 96 478 136 c 0 478 182 408 180 309 180 c 1 309 100 l 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: afii10093 Encoding: 1099 1099 Width: 600 Flags: W HStem: 0 100<51 53 153.125 232 455 457 557 559> 180 100<153.125 215> 337 99.8723<51 53 153 155 557 559> 417 20G<59 147> VStem: 53 100<100 180 279 338> 292 102<135 145> 457 100<99 336> Fore 153 337 m 1 153 280 l 1 206 280 l 2 348 280 392 241 394 143 c 1 392 8 273 0 227 0 c 2 59 0 l 2 13 0 -9 17 -9 50 c 0 -9 82 13 100 53 100 c 1 53 337 l 1 13 337 -9 355 -9 387 c 0 -9 420 11 437 59 437 c 2 147 437 l 2 194 437 213 420 213 387 c 0 213 355 191 337 153 337 c 1 153 100 m 1 259 100 294 97 292 136 c 1 292 180 251 180 153 180 c 1 153 100 l 1 457 336 m 1 418 336 406 354 406 386 c 0 407 419 427 435 472 436 c 2 542 437 l 2 586 438 608 420 608 387 c 0 609 355 596 337 557 337 c 1 557 100 l 1 596 100 609 82 608 50 c 0 608 17 587 0 542 0 c 2 473 0 l 2 428 0 406 17 406 50 c 0 406 82 418 100 457 100 c 1 457 336 l 1 EndSplineSet MinimumDistance: x21,-1 EndChar StartChar: afii10094 Encoding: 1100 1100 Width: 600 Flags: W HStem: 0 100<144 146 246.125 341> 180 100<246.25 315.06> 337 99.8723<144 146 246 248> 417 20G<152 240> VStem: 146 100<100 180 279 337> 414 102<135 145> Fore 246 337 m 1 246 280 l 1 464 280 514 258 516 143 c 1 514 8 366 0 320 0 c 2 152 0 l 2 106 0 84 17 84 50 c 0 84 82 106 100 146 100 c 1 146 337 l 1 106 337 84 355 84 387 c 0 84 420 104 437 152 437 c 2 240 437 l 2 287 437 306 420 306 387 c 0 306 355 284 337 246 337 c 1 246 100 m 1 352 100 416 97 414 136 c 1 414 180 344 180 246 180 c 1 246 100 l 1 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: afii10095 Encoding: 1101 1101 Width: 600 Flags: W HStem: -16 100<250 302> 157 100<250 445> 350 100<278 317> Fore 446 157 m 1 252 157 l 2 214 157 192 175 192 207 c 0 192 240 214 258 258 257 c 2 448 257 l 1 441 276 430 293 416 307 c 0 388 336 350 350 300 350 c 0 256 350 220 341 194 325 c 0 180 316 174 307 170 289 c 0 166 267 164 261 156 255 c 1 148 247 132 241 120 241 c 0 104 241 88 249 78 262 c 0 72 271 70 281 70 307 c 2 70 384 l 2 70 430 84 450 118 450 c 0 138 450 150 441 156 420 c 1 194 440 242 450 300 450 c 0 450 450 556 350 556 207 c 0 556 146 534 93 494 53 c 0 446 5 384 -16 286 -16 c 0 214 -16 150 -4 108 16 c 1 68 37 44 63 44 89 c 0 44 117 68 140 94 140 c 0 106 140 116 136 124 128 c 1 150 107 156 103 174 97 c 0 198 89 240 84 280 84 c 0 370 84 426 108 446 157 c 1 EndSplineSet EndChar StartChar: afii10096 Encoding: 1102 1102 Width: 600 Flags: W HStem: -16 100<387 421> 0 21G<54 128> 0.973763 99.0262<36 38 138 140> 350 100<387 421> VStem: 38 100<99 157 258 337> 512 100<191 241> Fore 200 258 m 1 200 366 276 450 408 450 c 0 548 450 612 346 612 217 c 0 612 87 548 -16 404 -16 c 0 282 -16 204 54 204 157 c 1 138 157 l 1 138 100 l 1 178 100 194 82 194 50 c 0 192 17 170 0 128 0 c 2 54 0 l 2 10 0 -12 17 -12 50 c 0 -12 82 0 100 38 100 c 1 38 337 l 1 10 336 -6 355 -6 387 c 0 -6 420 15 438 60 437 c 2 122 436 l 2 168 435 190 419 190 386 c 0 190 354 170 336 138 337 c 1 138 258 l 1 200 258 l 1 406 350 m 0 316 350 296 293 296 217 c 0 296 142 316 84 404 84 c 0 494 84 512 142 512 217 c 0 512 291 494 350 406 350 c 0 EndSplineSet EndChar StartChar: afii10097 Encoding: 1103 1103 Width: 600 Flags: W HStem: 0 100<99 152 386 388 488 501> 157 100<360 387.885> 337 100<291 388 488 490> VStem: 118 100<292 305> 388 100<99 157 257 337> Fore 222 167 m 1 142 181 118 216 118 294 c 0 118 428 266 436 314 437 c 2 482 437 l 2 526 437 548 420 548 387 c 0 548 355 526 337 488 337 c 1 488 100 l 1 526 100 548 82 548 50 c 0 548 17 529 0 482 0 c 2 394 0 l 2 346 0 326 17 326 50 c 0 326 82 348 100 388 100 c 1 388 157 l 1 360 157 l 1 286 87 l 1 298 74 302 64 302 50 c 0 302 17 280 0 236 0 c 2 118 0 l 2 96 0 84 2 76 7 c 0 60 17 52 33 52 50 c 0 52 66 60 81 72 91 c 0 82 98 90 100 118 100 c 2 152 100 l 1 222 167 l 1 388 337 m 1 272 338 218 339 218 301 c 0 218 253 260 257 388 257 c 1 388 337 l 1 EndSplineSet MinimumDistance: x5,-1 EndChar StartChar: uni0450 Encoding: 1104 1104 Width: 600 Flags: W HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> DStem: 202 618 248 674 335 506 381 563 Ref: 96 N 1 0 0 1 54 -6 Ref: 101 N 1 0 0 1 0 0 EndChar StartChar: afii10071 Encoding: 1105 1105 Width: 600 Flags: W HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> VStem: 127 120<520.5 553> 335 120<520.5 553> Ref: 168 N 1 0 0 1 -9 -57 Ref: 101 N 1 0 0 1 0 0 EndChar StartChar: afii10099 Encoding: 1106 1106 Width: 600 Flags: W HStem: -185 100<266 332> 0 100<76 96 195 214> 302 100<312 336> 444 58<36 94 195 354> 524 100<60 94> VStem: 95 100<100 235 341 444 501 524> 408 100<-10 239> Fore 408 0 m 9 410 223 l 21 410 249.667 404.667 268 394 278 c 5 394 279 l 5 375.14 294.088 357.004 302 323 302 c 6 322 302 l 6 264.291 302 232.925 270.605 196 235 c 5 195 100 l 1 201 100 l 2 223 100 238 97 246 91 c 2 247 91 l 2 260.333 80.3333 267.333 67 268 51 c 1 268 50 l 2 268 32 260 17.6667 244 7 c 0 236.667 2.33333 222.333 2.1684e-19 201 0 c 2 89 0 l 2 68.3333 0 53.3333 3 44 9 c 0 30.6667 19.6667 23.6667 33 23 49 c 1 23 50 l 2 23 69.3333 31 83.6667 47 93 c 0 55.6667 97.6667 69.6667 100 89 100 c 2 95 100 l 1 96 444 l 1 44 444 l 1 10 444 10 502 44 502 c 1 95 502 l 1 95 524 l 1 79 524 l 2 57 524 42 527 34 533 c 2 33 533 l 2 20.3333 543.667 13.6667 557 13 573 c 1 13 574 l 2 13 593.333 21 607.667 37 617 c 0 45.6667 621.667 59.6667 624 79 624 c 2 195 624 l 1 195 502 l 1 352 502 l 1 388 502 388 444 352 444 c 1 195 444 l 1 196 341 l 5 235.333 381.667 280.667 402 332 402 c 6 333 402 l 6 401.667 402 452 378 484 330 c 4 501.695 302.777 510 240.339 510 236 c 13 508 0 l 2 507.53 -61.3311 484.333 -110 437 -146 c 0 403 -172 363 -185 317 -185 c 2 278 -185 l 2 255.333 -185 240.333 -181.667 233 -175 c 0 219.667 -165.667 212.667 -152.667 212 -136 c 1 212 -135 l 2 212 -116.333 220 -102 236 -92 c 0 243.333 -87.333 257.333 -85 278 -85 c 2 314 -85 l 2 367.904 -85 408 -56.97 408 -1 c 2 408 0 l 9 EndSplineSet MinimumDistance: x44,-1 x33,35 y35,33 y35,34 x35,37 x35,36 x25,23 x25,24 EndChar StartChar: afii10100 Encoding: 1107 1107 Width: 600 Flags: W HStem: 0 21G<165 254> 0.144728 99.8553<157 159 259.031 274.093> 244 193<449 455> 337 99.8553<157 159 259.063 402> VStem: 159 100<99 336> 402 100<287 336> DStem: 344 661 390 605 211 550 257 493 Fore 402 336 m 1 402 336 338 337 259 337 c 1 259 100 l 1 298 100 321 82 320 50 c 0 319 17 300 -3 254 0 c 1 165 0 l 2 120 0 98 17 98 50 c 0 98 82 120 100 159 100 c 1 159 337 l 1 120 337 98 355 98 387 c 0 98 420 120 437 165 437 c 2 502 437 l 1 502 310 l 2 502 284 500 274 493 264 c 0 483 252 468 244 452 244 c 0 435 244 418 253 409 268 c 0 403 277 402 286 402 310 c 2 402 336 l 1 390 605 m 1 257 493 l 2 242 481 235 477 225 477 c 0 205 477 188 494 188 513 c 0 188 526 195 537 211 550 c 2 344 661 l 2 360 674 365 677 376 677 c 0 397 677 413 661 413 640 c 0 413 628 407 618 390 605 c 1 EndSplineSet MinimumDistance: x11,-1 EndChar StartChar: afii10101 Encoding: 1108 1108 Width: 600 Flags: W HStem: -16 100<298 350> 157 100<154 350> 350 100<283 322> Fore 154 157 m 1 348 157 l 2 386 157 408 175 408 207 c 0 408 240 386 258 342 257 c 2 152 257 l 1 159 276 170 293 184 307 c 0 212 336 250 350 300 350 c 0 344 350 380 341 406 325 c 0 420 316 426 307 430 289 c 0 434 267 436 261 444 255 c 1 452 247 468 241 480 241 c 0 496 241 512 249 522 262 c 0 528 271 530 281 530 307 c 2 530 384 l 2 530 430 516 450 482 450 c 0 462 450 450 441 444 420 c 1 406 440 358 450 300 450 c 0 150 450 44 350 44 207 c 0 44 146 66 93 106 53 c 0 154 5 216 -16 314 -16 c 0 386 -16 450 -4 492 16 c 1 532 37 556 63 556 89 c 0 556 117 532 140 506 140 c 0 494 140 484 136 476 128 c 1 450 107 444 103 426 97 c 0 402 89 360 84 320 84 c 0 230 84 174 108 154 157 c 1 EndSplineSet EndChar StartChar: afii10102 Encoding: 1109 1109 Width: 600 Flags: W HStem: -16 100<275.5 332> 350 100<275.5 322> VStem: 92 110<310.5 324> 417 110<115.5 133.5> Ref: 115 N 1 0 0 1 0 0 EndChar StartChar: afii10103 Encoding: 1110 1110 Width: 600 Flags: W HStem: 0 100<110 249 350 478> 337 100<158 249> 518 105<219 335> VStem: 218 118<519 622> 250 100<100 337> Ref: 105 N 1 0 0 1 0 0 EndChar StartChar: afii10104 Encoding: 1111 1111 Width: 600 Flags: W HStem: 0 100<128 250 350 472> 337 100<172 250> VStem: 136 120<520.5 553> 250 100<100 337 337 337> 344 120<520.5 553> Ref: 168 N 1 0 0 1 0 -57 Ref: 305 N 1 0 0 1 0 0 EndChar StartChar: afii10105 Encoding: 1112 1112 Width: 600 Flags: W HStem: -205 100<165 310> 337 100<165 387> 518 105<312 429> VStem: 311 119<519 622> 388 100<-29 337> Ref: 106 N 1 0 0 1 0 0 EndChar StartChar: afii10106 Encoding: 1113 1113 Width: 600 Flags: W HStem: -2 101<334 342 441.063 468> 178 100<441.125 474.211> 336 99.7825<130 134 234 342> VStem: -29 99<104 139> -29 262.161<83 87> 134 100<112 335> 342 99<98 177 277 335> 553 101<127 141> Fore 458 -2 m 5 348 -1 l 6 304.002 -0.599609 281.667 15.333 281 48 c 1 281 49 l 2 281 79.667 299 96.333 335 99 c 4 337 99 339.333 99 342 99 c 5 342 335 l 5 234 336 l 1 234 99 l 2 234 38.333 196 5.33301 120 0 c 0 113.333 -0.666992 106.333 -1 99 -1 c 0 49 -1 12.333 12.667 -11 40 c 0 -23 52.667 -29 67.667 -29 85 c 2 -29 86 l 1 -29 139 l 2 -29 178.333 -13.333 198.667 18 200 c 0 18.667 200 19.333 200 20 200 c 2 21 200 l 2 48.333 200 64 187 68 161 c 1 70 139 l 1 70 113 l 2 70 97 78.667 88 96 86 c 0 113.333 84 125.333 89.333 132 102 c 1 134 113 l 1 134 336 l 1 94.667 336 74.333 351.667 73 383 c 1 73 384 l 1 73 384 l 1 73 385 l 1 73 386 l 2 73 419.333 95.334 436.136 140 436 c 2 436 435 l 6 478.667 434.87 500.667 418.333 502 385 c 4 502.667 355.667 486.667 339.333 454 336 c 6 441 335 l 5 441 278 l 5 554.333 278 570.667 269 604 251 c 4 634.667 234.333 651.333 202.667 654 156 c 5 654 141 l 5 653.333 66.333 610 20.667 524 4 c 6 523 4 l 6 501.949 4 480.667 -2 458 -2 c 5 441 98 m 5 521 98 512 100.333 528 105 c 6 529 106 l 6 543 110.667 551 118 553 128 c 5 553 134 l 6 553 157.333 529.333 171.333 482 176 c 4 464 177.333 488.333 178 441 178 c 5 441 98 l 5 EndSplineSet Back 489 180 m 2 425 180 l 1 425 100 l 1 489 100 l 2 513 100 530 113 530 136 c 0 530 170 502 180 489 180 c 2 425 280 m 1 425 280 470 281 489 280 c 2 570 280 630 246 631 143 c 5 630 8 514 0 467 0 c 2 331 0 l 2 286 -0 264 17 264 50 c 0 264 82 286 100 325 100 c 1 325 336 l 1 248 337 l 1 248 100 l 2 248 30 194 0 113 0 c 0 49 0 -15 30 -15 87 c 2 -15 140 l 2 -15 179 3 201 35 201 c 0 68 201 84 186 84 140 c 2 84 114 l 2 84 76 148 80 148 114 c 2 148 337 l 1 109 337 87 355 87 387 c 0 87 420 109 437 154 437 c 2 420 437 l 2 463 437 485 420 486 387 c 0 487 355 464 337 425 337 c 1 425 280 l 1 EndSplineSet EndChar StartChar: afii10107 Encoding: 1114 1114 Width: 600 Flags: W HStem: 0 100<24 32 132.031 148.346 302 310 410.063 453> 180 101<132 310 410.125 443.211> 337 99.0807<18 32 132 134 293.468 309.969> VStem: 32 100<99 179 281 338> 310 100<100 179 281 336> 522 101<129 143> Fore 316 0 m 6 272 0 249.667 16.333 249 49 c 5 249 50 l 6 249 80.667 267 97.333 303 100 c 6 310 100 l 5 310 180 l 5 132 180 l 5 132 100 l 5 170 100 190.333 86 193 58 c 6 193 50 l 6 191.667 14 169.667 -2.66699 127 0 c 5 38 0 l 6 -6 0 -28.333 16.333 -29 49 c 5 -29 50 l 6 -29 80.667 -11 97.333 25 100 c 6 32 100 l 5 32 337 l 5 -6.36397 337 -29 352.444 -29 385 c 5 -29 387 l 5 -29 421 -6.66699 437.667 38 437 c 6 126 436 l 6 170 435.333 192.333 419 193 387 c 5 193 386 l 6 193 353.333 172.667 337 132 337 c 5 132 281 l 5 310 281 l 5 310 336 l 5 272 336 251.667 350 249 378 c 5 247.79 420.884 269.214 438.105 315 436 c 5 405 437 l 6 447.667 437 469.667 420.333 471 387 c 4 471.87 348.746 447.239 339.865 410 337 c 5 410 280 l 5 523.333 280 539.667 271 573 253 c 4 609.241 233.304 623 198.324 623 143 c 5 622.333 68.333 579 22.667 493 6 c 6 492 6 l 6 471.333 2 449.667 0 427 0 c 6 316 0 l 6 410 100 m 5 490 100 481 102.333 497 107 c 6 498 108 l 6 512 112.667 520 120 522 130 c 5 522 136 l 6 522 159.333 498.333 173.333 451 178 c 4 433 179.333 457.333 180 410 180 c 5 410 100 l 5 EndSplineSet Back 309 0 m 2 264 0 242 17 242 50 c 0 242 82 264 100 303 100 c 1 303 180 l 1 152 180 l 1 152 100 l 1 191 100 214 82 213 50 c 0 212 17 193 -3 147 0 c 1 58 0 l 2 13 0 -9 17 -9 50 c 0 -9 82 13 100 52 100 c 1 52 337 l 1 13 337 -9 355 -9 387 c 0 -9 420 13 438 58 437 c 2 146 436 l 2 191 435 213 419 213 386 c 0 213 354 191 337 152 337 c 1 152 281 l 1 303 281 l 1 303 336 l 1 264 336 241 354 242 386 c 0 243 419 262 439 308 436 c 1 398 437 l 2 441 437 463 420 464 387 c 0 465 355 442 337 403 337 c 1 403 280 l 1 426 280 448 281 467 280 c 2 548 280 608 246 609 143 c 1 608 8 492 0 445 0 c 2 403 0 l 1 309 0 l 2 403 100 m 1 427 100 467 100 467 100 c 2 491 100 508 113 508 136 c 0 508 170 480 180 467 180 c 2 467 180 426 180 403 180 c 1 403 100 l 1 EndSplineSet EndChar StartChar: afii10108 Encoding: 1115 1115 Width: 600 Flags: W HStem: 0 100<76 96 195 206 387 409 509 526> 302 100<316 338> 444 58<36 94 195 359> 524 100<60 94> VStem: 95 100<100 235 341 444 501 524> 409 100<100 241> Fore 195 624 m 1 195 502 l 1 352 502 l 1 388 502 388 444 352 444 c 1 195 444 l 1 196 341 l 5 235.333 381.667 280.667 402 332 402 c 6 333 402 l 6 401.667 402 452 378 484 330 c 4 501.333 303.333 510 272.333 510 237 c 6 510 236 l 5 509 100 l 1 515 100 l 2 537 100 552 97 560 91 c 2 561 91 l 2 573.667 80.3333 580.333 67 581 51 c 1 581 50 l 2 581 30.6667 573 16.3333 557 7 c 0 549.667 2.33333 535.667 2.1684e-19 515 0 c 2 403 0 l 2 381 0 365.667 3 357 9 c 0 343.667 19.6667 336.667 33 336 49 c 1 336 50 l 2 336 68 344 82.3333 360 93 c 0 368.667 97.6667 383 100 403 100 c 2 409 100 l 1 410 223 l 6 410 249.667 404.667 268 394 278 c 5 394 279 l 5 389 283 l 6 373.667 295.667 351.667 302 323 302 c 6 322 302 l 6 292 302 265 293 241 275 c 4 229.667 266.333 214.667 253 196 235 c 5 195 100 l 1 201 100 l 2 223 100 238 97 246 91 c 2 247 91 l 2 260.333 80.3333 267.333 67 268 51 c 1 268 50 l 2 268 32 260 17.6667 244 7 c 0 236.667 2.33333 222.333 2.1684e-19 201 0 c 2 89 0 l 2 68.3333 0 53.3333 3 44 9 c 0 30.6667 19.6667 23.6667 33 23 49 c 1 23 50 l 2 23 69.3333 31 83.6667 47 93 c 0 55.6667 97.6667 69.6667 100 89 100 c 2 95 100 l 1 96 444 l 1 44 444 l 1 10 444 10 502 44 502 c 1 95 502 l 1 95 524 l 1 79 524 l 2 57 524 42 527 34 533 c 2 33 533 l 2 20.3333 543.667 13.6667 557 13 573 c 1 13 574 l 2 13 593.333 21 607.667 37 617 c 0 45.6667 621.667 59.6667 624 79 624 c 2 195 624 l 1 EndSplineSet MinimumDistance: x11,-1 x60,1 y1,60 y1,0 x52,50 x52,51 x1,3 x1,2 EndChar StartChar: afii10109 Encoding: 1116 1116 Width: 600 Flags: W HStem: 0 100<100.726 133 447 501> 337 100<99 133 447 485> VStem: 134 100<99 164 287 337> DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227 344 661 390 605 211 550 257 493 Fore 234 0 m 1 118 0 l 2 74 0 52 17 52 50 c 0 52 67 62 84 76 93 c 0 86 99 94 100 118 100 c 2 134 100 l 1 134 337 l 1 118 337 l 2 92 337 82 339 72 346 c 0 60 356 52 371 52 387 c 0 52 404 62 421 76 430 c 0 86 436 94 437 118 437 c 2 234 437 l 1 234 287 l 1 314 350 l 1 302 364 298 373 298 387 c 0 298 404 306 420 322 430 c 0 330 435 340 437 364 437 c 2 476 437 l 2 502 437 512 435 522 428 c 0 536 418 542 403 542 387 c 0 542 370 534 354 518 344 c 0 510 339 500 337 476 337 c 2 448 337 l 1 312 227 l 1 448 100 l 1 480 100 l 2 508 100 516 98 526 91 c 0 540 81 548 66 548 50 c 0 548 33 538 17 524 7 c 0 516 2 502 0 480 0 c 2 362 0 l 2 318 0 296 17 296 50 c 0 296 64 300 74 312 87 c 1 234 164 l 1 234 0 l 1 390 605 m 1 257 493 l 2 242 481 235 477 225 477 c 0 205 477 188 494 188 513 c 0 188 526 195 537 211 550 c 2 344 661 l 2 360 674 365 677 376 677 c 0 397 677 413 661 413 640 c 0 413 628 407 618 390 605 c 1 EndSplineSet MinimumDistance: x23,-1 EndChar StartChar: uni045D Encoding: 1117 1117 Width: 600 Flags: W HStem: 0 21G<98 187 413 502> 0.144728 99.8553<90 92 192.031 207.093 398 407 507.031 522.093> 337 99.1444<78 92 192 194 391.955 406.969 507 512> VStem: 92 100<99 113 214 338> 407 100<99 224 324 336> DStem: 210 605 256 661 343 493 389 550 407 325 407 224 192 214 192 113 Fore 192 337 m 1 192 214 l 1 407 325 l 1 407 336 l 1 368 336 346 354 346 386 c 0 347 419 367 439 412 436 c 1 502 437 l 2 546 437 568 420 568 387 c 0 569 355 546 337 507 337 c 1 507 100 l 1 546 100 569 82 568 50 c 0 568 17 548 -3 502 0 c 1 413 0 l 2 368 0 346 17 346 50 c 0 346 82 368 100 407 100 c 1 407 224 l 1 192 113 l 1 192 100 l 1 231 100 254 82 253 50 c 0 253 17 233 -3 187 0 c 1 98 0 l 2 53 0 31 17 31 50 c 0 31 82 53 100 92 100 c 1 92 337 l 1 53 337 31 355 31 387 c 0 31 420 53 438 98 437 c 2 186 436 l 2 231 435 253 419 253 386 c 0 253 354 231 337 192 337 c 1 256 661 m 2 389 550 l 2 405 537 412 526 412 513 c 0 412 494 395 477 375 477 c 0 365 477 358 481 343 493 c 2 210 605 l 1 193 618 187 628 187 641 c 0 187 661 203 677 224 677 c 0 235 677 240 674 256 661 c 2 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: afii10110 Encoding: 1118 1118 Width: 600 Flags: W HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> 477 68<272.5 327.5> Ref: 728 N 1 0 0 1 0 -26 Ref: 121 N 1 0 0 1 0 0 EndChar StartChar: afii10193 Encoding: 1119 1119 Width: 600 Flags: W HStem: 0 100<193 254 347 408 508 517> 337 100.247<76.6538 92.9686 193 200 391.654 407.969 508 515> 417 20G<98 187 413 502> VStem: 93 100<100 337> 257.996 84.436<-55 -35> 408 100<100 337> Fore 193 101 m 1 408 100 l 1 408 337 l 1 370 337 349.667 351 347 379 c 1 347 387 l 2 347 423 369 439.667 413 437 c 1 502 437 l 2 546 437 568.333 420.667 569 388 c 1 569 387 l 2 569 356.333 551 339.667 515 337 c 0 513 337 510.667 337 508 337 c 1 508 100 l 1 547.333 100 567.667 84.3333 569 53 c 0 569 52.3333 569 51.6667 569 51 c 2 569 50 l 2 569 16.6667 546.667 1.73472e-18 502 0 c 2 348 0 l 5 336.598 -45.1792 344.265 -64.9557 348 -90 c 5 322.838 -102.442 284 -102 254 -90 c 5 260.075 -66.0331 258.546 -34.5136 254 0 c 5 98 0 l 2 54.6667 0 32.6667 16.3333 32 49 c 1 32 50 l 1 31.3333 76.6667 45.6667 92.6667 75 98 c 2 93 100 l 1 93 337 l 1 55 337 34.6667 351 32 379 c 1 32 387 l 2 32 423 54 439.667 98 437 c 1 187 437 l 2 231 437 253.333 420.667 254 388 c 1 254 387 l 2 254 356.333 236 339.667 200 337 c 0 198 337 195.667 337 193 337 c 1 193 101 l 1 EndSplineSet MinimumDistance: x10,-1 x17,19 x18,16 y16,18 y16,17 EndChar StartChar: uni048C Encoding: 1164 1164 Width: 600 Flags: W HStem: 0 100<61 93 195 317> 283 100<195 317> 483 100<61 93 195 311> VStem: 13 346<528 535> 94 100<101 282 383 483> 423 106<188 194> Fore 194 383 m 1 292 383 l 2 385 383 435 366 479 317 c 0 511 282 529 235 529 189 c 0 529 78 439 0 312 0 c 2 79 0 l 2 53 0 46 1 37 7 c 0 22 16 13 33 13 50 c 0 13 65 21 81 34 91 c 0 43 98 54 100 79 100 c 2 94 100 l 1 94 483 l 1 79 483 l 2 55 483 46 484 37 490 c 0 22 499 13 516 13 533 c 0 13 548 21 564 34 573 c 0 42 580 56 583 79 583 c 2 293 583 l 2 313 583 328 580 335 576 c 0 350 567 359 550 359 533 c 0 359 517 351 502 338 492 c 0 328 485 320 483 293 483 c 2 194 483 l 1 194 383 l 1 194 100 m 1 312 100 l 2 381 100 423 135 423 192 c 0 423 248 381 283 312 283 c 2 194 283 l 1 194 100 l 1 EndSplineSet MinimumDistance: x3,-1 EndChar StartChar: uni048D Encoding: 1165 1165 Width: 600 Flags: W HStem: 0 100<145 145 246.125 340> 180 100<246.25 315.06> 417 20G<152 240> VStem: 146 100<101 179 280 337> 414 102<136 144> Fore 246 337 m 1 246 280 l 1 464 280 514 258 516 143 c 1 514 8 366 0 320 0 c 2 152 0 l 2 106 0 84 17 84 50 c 0 84 82 106 100 146 100 c 1 146 337 l 1 106 337 84 355 84 387 c 0 84 420 104 437 152 437 c 2 240 437 l 2 287 437 306 420 306 387 c 0 306 355 284 337 246 337 c 1 246 100 m 1 352 100 416 97 414 136 c 1 414 180 344 180 246 180 c 1 246 100 l 1 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: uni048E Encoding: 1166 1166 Width: 600 Flags: W HStem: 0 100<79 94 194 293> 200 100<194 292> 483 100<79 94 194 312 194 194> VStem: 94 100<100 200 300 483> 423 106<371 419.5> Ref: 80 N 1 0 0 1 0 0 EndChar StartChar: uni048F Encoding: 1167 1167 Width: 600 Flags: W HStem: -205 100<41 74 176 249> 10 100<310 346> 337 100<41 74> 350 100<303 345> VStem: -7 306<-157 -153> 75 100<-105 65 223 243> 471 101<223 243> Fore 347 111 m 1 311 147 l 2 293 165 289 172 290 185 c 0 291 195 296 207 302 213 c 0 319 230 343 228 368 204 c 1 428 143 l 1 455 164 471 195 471 230 c 0 471 263 452 300 423 321 c 0 397 341 364 350 323 350 c 0 281 350 248 341 222 321 c 0 193 300 174 263 174 231 c 0 174 160 235 110 323 110 c 0 331 110 339 110 347 111 c 1 430 28 m 1 431 28 l 2 401 16 367 10 330 10 c 0 271 10 227 26 175 66 c 1 175 -105 l 1 233 -105 l 2 259 -105 269 -107 279 -114 c 0 292 -124 299 -139 299 -155 c 0 299 -172 290 -188 275 -198 c 0 267 -203 255 -205 233 -205 c 2 59 -205 l 2 34 -205 23 -203 13 -195 c 0 1 -186 -7 -171 -7 -155 c 0 -7 -138 2 -121 17 -112 c 0 26 -106 35 -105 59 -105 c 2 75 -105 l 1 75 337 l 1 59 337 l 2 33 337 23 339 13 346 c 0 1 356 -7 371 -7 387 c 0 -7 404 2 421 17 430 c 0 26 435 35 437 59 437 c 2 175 437 l 1 175 392 l 1 224 434 266 450 328 450 c 0 468 450 572 353 572 224 c 0 572 162 546 108 502 70 c 1 541 31 l 2 557 15 564 4 563 -6 c 0 562 -16 556 -29 550 -35 c 0 533 -52 508 -49 484 -26 c 2 430 28 l 1 EndSplineSet MinimumDistance: x37,-1 EndChar StartChar: afii10050 Encoding: 1168 1168 Width: 600 Flags: W HStem: 0 100<80 111 213 320> 483 100<80 111 213 468> 483 217<512 520> VStem: 32 346<48 52> 112 100<100 483> 468 100<583 640> Fore 468 583 m 1 468 634 l 2 468 657 470 668 476 676 c 0 486 691 502 700 518 700 c 0 534 700 550 692 560 679 c 0 566 669 568 661 568 634 c 2 568 483 l 1 212 483 l 1 212 100 l 1 312 100 l 2 340 100 348 98 358 91 c 0 370 81 378 66 378 50 c 0 378 33 370 16 354 7 c 0 348 3 332 0 312 0 c 2 98 0 l 2 74 0 60 3 52 10 c 0 40 19 32 35 32 50 c 0 32 67 40 84 56 93 c 1 64 99 74 100 98 100 c 2 112 100 l 1 112 483 l 1 98 483 l 2 72 483 62 485 52 492 c 0 40 502 32 517 32 533 c 0 32 550 40 567 56 576 c 1 64 582 72 583 98 583 c 2 468 583 l 1 EndSplineSet MinimumDistance: x5,-1 y5,7 x7,5 x7,6 EndChar StartChar: afii10098 Encoding: 1169 1169 Width: 600 Flags: W HStem: 0 21G<165 254> 0.144728 99.8553<158 158 259.031 274.093> 336.295 192.705<450 454> 337 100<158 158 259.062 402> VStem: 159 100<100 337> 402 100<437 480> Fore 402 437 m 1 402 463 l 2 402 487 403 496 409 505 c 0 418 520 435 529 452 529 c 0 468 529 483 521 493 509 c 0 500 499 502 489 502 463 c 2 502 336 l 1 502 336 338 337 259 337 c 1 259 100 l 1 298 100 321 82 320 50 c 0 319 17 300 -3 254 0 c 1 165 0 l 2 120 0 98 17 98 50 c 0 98 82 120 100 159 100 c 1 159 337 l 1 120 337 98 355 98 387 c 0 98 420 120 437 165 437 c 2 402 437 l 1 EndSplineSet MinimumDistance: x5,-1 EndChar StartChar: uni0492 Encoding: 1170 1170 Width: 600 Flags: W HStem: 0 100<80 111 213 320> 483 100<80 111 213 468> VStem: 32 346<48 52> 112 100<100 483> 468 100<416 483> Fore 212 100 m 1 312 100 l 2 340 100 348 98 358 91 c 0 370 81 378 66 378 50 c 0 378 33 370 16 354 7 c 0 348 3 332 0 312 0 c 2 98 0 l 2 74 0 60 3 52 10 c 0 40 19 32 35 32 50 c 0 32 67 40 84 56 93 c 1 64 99 74 100 98 100 c 2 112 100 l 1 112 483 l 1 98 483 l 2 72 483 62 485 52 492 c 0 40 502 32 517 32 533 c 0 32 550 40 567 56 576 c 1 64 582 72 583 98 583 c 2 568 583 l 1 568 432 l 2 568 405 566 397 560 387 c 0 550 374 534 366 518 366 c 0 502 366 486 375 476 390 c 0 470 398 468 409 468 432 c 2 468 483 l 1 212 483 l 1 212 100 l 1 EndSplineSet MinimumDistance: x18,-1 EndChar StartChar: uni0493 Encoding: 1171 1171 Width: 600 Flags: W HStem: 0 21G<165 254> 0.144728 99.8553<158 158 259.031 274.093> 177 80<111 158 260 321> 244 193<447 454> 337 99.8553<158 158 259.063 402> VStem: 79 273<208 224> 159 100<100 177 257 337> 402 100<288 337> Fore 159 177 m 1 120 177 l 2 100 177 94 179 87 189 c 0 82 197 79 209 79 217 c 0 79 242 93 257 120 257 c 2 159 257 l 1 159 337 l 1 120 337 98 355 98 387 c 0 98 420 120 437 165 437 c 2 502 437 l 1 502 310 l 2 502 284 500 274 493 264 c 0 483 252 468 244 452 244 c 0 435 244 418 253 409 268 c 0 403 277 402 286 402 310 c 2 402 336 l 1 402 336 338 337 259 337 c 1 259 257 l 1 311 257 l 2 329 257 338 254 343 246 c 0 348 239 352 225 352 217 c 0 352 192 336 177 311 177 c 2 259 177 l 1 259 100 l 1 298 100 321 82 320 50 c 0 319 17 300 -3 254 0 c 1 165 0 l 2 120 0 98 17 98 50 c 0 98 82 120 100 159 100 c 1 159 177 l 1 EndSplineSet MinimumDistance: x9,-1 EndChar StartChar: uni0494 Encoding: 1172 1172 Width: 600 Flags: W HStem: 0 100<80 111 213 320> 483 100<80 111 213 468> VStem: 32 346<48 52> 112 100<100 483> 468 100<416 483> Fore 212 100 m 1 312 100 l 2 340 100 348 98 358 91 c 0 370 81 378 66 378 50 c 0 378 33 370 16 354 7 c 0 348 3 332 0 312 0 c 2 98 0 l 2 74 0 60 3 52 10 c 0 40 19 32 35 32 50 c 0 32 67 40 84 56 93 c 1 64 99 74 100 98 100 c 2 112 100 l 1 112 483 l 1 98 483 l 2 72 483 62 485 52 492 c 0 40 502 32 517 32 533 c 0 32 550 40 567 56 576 c 1 64 582 72 583 98 583 c 2 568 583 l 1 568 432 l 2 568 405 566 397 560 387 c 0 550 374 534 366 518 366 c 0 502 366 486 375 476 390 c 0 470 398 468 409 468 432 c 2 468 483 l 1 212 483 l 1 212 100 l 1 EndSplineSet MinimumDistance: x18,-1 EndChar StartChar: uni0495 Encoding: 1173 1173 Width: 600 Flags: W HStem: 0 21G<165 254> 0.144728 99.8553<158 158 259.031 274.093> 244 193<450 454> 337 99.8553<158 158 259.063 402> VStem: 159 100<100 337> 402 100<288 337> Fore 402 336 m 1 402 336 338 337 259 337 c 1 259 100 l 1 298 100 321 82 320 50 c 0 319 17 300 -3 254 0 c 1 165 0 l 2 120 0 98 17 98 50 c 0 98 82 120 100 159 100 c 1 159 337 l 1 120 337 98 355 98 387 c 0 98 420 120 437 165 437 c 2 502 437 l 1 502 310 l 2 502 284 500 274 493 264 c 0 483 252 468 244 452 244 c 0 435 244 418 253 409 268 c 0 403 277 402 286 402 310 c 2 402 336 l 1 EndSplineSet MinimumDistance: x11,-1 EndChar StartChar: uni0496 Encoding: 1174 1174 Width: 600 Flags: W HStem: 0 100<24 52 232 249 349.031 367.854 547 568> 483 100<24 33 232 249 349.031 373.464 567 568> VStem: -23 186<528 535> 250 99<100 259 338 483> 436 186<528 535> DStem: 33 483 132 487 148 330 250 337 467 487 566 483 349 337 451 330 Fore 348 583 m 2 374 583 381 582 390 576 c 0 405 567 414 550 414 533 c 0 414 517 406 502 393 492 c 1 387 484 371 483 349 483 c 1 349 337 l 1 467 487 l 1 446 495 436 509 436 532 c 0 436 560 452 578 481 581 c 0 493 583 494 583 502 583 c 2 556 583 l 2 583 583 592 581 602 574 c 0 614 564 622 549 622 533 c 0 622 500 601 483 566 483 c 1 451 330 l 1 512 298 545 214 547 100 c 1 557 100 l 2 584 100 592 98 602 91 c 0 615 81 623 66 623 50 c 0 623 33 614 16 599 7 c 0 592 3 577 0 557 0 c 2 469 0 l 1 467 148 431 260 349 260 c 1 349 100 l 1 370 100 383 100 390 93 c 1 405 84 414 67 414 50 c 0 414 35 406 19 393 10 c 0 385 3 371 0 348 0 c 2 251 0 l 2 228 0 214 3 206 10 c 0 193 19 185 35 185 50 c 0 185 67 194 84 209 93 c 1 216 100 229 100 250 100 c 1 250 260 l 1 168 260 132 148 130 0 c 1 42 0 l 2 22 0 7 3 0 7 c 0 -15 16 -24 33 -24 50 c 0 -24 66 -16 81 -3 91 c 0 7 98 15 100 42 100 c 2 52 100 l 1 54 214 87 298 148 330 c 1 33 483 l 1 -2 483 -23 500 -23 533 c 0 -23 549 -15 564 -3 574 c 0 7 581 16 583 43 583 c 2 97 583 l 2 105 583 106 583 118 581 c 0 147 578 163 560 163 532 c 0 163 509 153 495 132 487 c 1 250 337 l 1 250 483 l 1 228 483 212 484 206 492 c 1 193 502 185 517 185 533 c 0 185 550 194 567 209 576 c 0 218 582 225 583 251 583 c 2 348 583 l 2 EndSplineSet EndChar StartChar: uni0497 Encoding: 1175 1175 Width: 600 Flags: W HStem: 0 21G<47 118 264 335 481 552> 337 99.1475<27 34 566 571> 417 20G<49 118 254 345 481 550> VStem: -17 201<384 389> 248 103<101 160 288 337> 415 205<48 52> 415 201<384 389> DStem: 34 337 168 350 170 227 248 287 170 227 248 161 34 100 170 87 351 161 429 227 429 87 565 100 431 350 565 337 351 287 429 227 Fore 335 0 m 2 264 0 l 2 220 0 204 17 204 50 c 0 204 67 214 84 230 93 c 1 238 99 248 100 248 100 c 1 248 161 l 1 170 87 l 1 182 74 184 64 184 50 c 0 184 17 162 0 118 0 c 2 47 0 l 2 25 0 11 2 3 7 c 0 -11 17 -21 33 -21 50 c 0 -21 66 -14 81 1 93 c 0 12 101 18 101 34 100 c 1 170 227 l 1 34 337 l 1 24 337 16 337 7 344 c 0 -9 356 -17 370 -17 387 c 0 -17 403 -11 418 3 428 c 0 13 435 23 437 49 437 c 2 118 437 l 2 142 437 152 435 160 430 c 0 176 420 184 404 184 387 c 0 184 373 180 364 168 350 c 1 248 287 l 1 248 337 l 1 248 337 234 339 224 346 c 0 212 356 204 371 204 387 c 0 204 404 212 421 228 430 c 1 236 436 230 437 254 437 c 2 345 437 l 2 369 437 363 436 371 430 c 1 387 421 395 404 395 387 c 0 395 371 387 356 375 346 c 0 365 339 351 337 351 337 c 1 351 287 l 1 431 350 l 1 419 364 415 373 415 387 c 0 415 404 423 420 439 430 c 0 447 435 457 437 481 437 c 2 550 437 l 2 576 437 586 435 596 428 c 0 610 418 616 403 616 387 c 0 616 370 608 356 592 344 c 0 583 337 575 337 565 337 c 1 429 227 l 1 565 100 l 1 581 101 587 101 598 93 c 0 613 81 620 66 620 50 c 0 620 33 610 17 596 7 c 0 588 2 574 0 552 0 c 2 481 0 l 2 437 0 415 17 415 50 c 0 415 64 417 74 429 87 c 1 351 161 l 1 351 100 l 1 351 100 361 99 369 93 c 1 385 84 395 67 395 50 c 0 395 17 379 0 335 0 c 2 EndSplineSet EndChar StartChar: uni0498 Encoding: 1176 1176 Width: 600 Flags: W HStem: -14 100<286 318> 1 198<110 115> 240 101<222 304> 497 100<286 318> VStem: 413 104<418 431> 434 104<153 164> Fore 234 341 m 2 276 341 l 2 350 341 356 356 376 366 c 0 398 377 413 400 413 421 c 0 413 464 363 497 300 497 c 0 238 497 190 470 181 430 c 0 174 398 174 398 167 390 c 0 159 382 145 376 131 376 c 0 116 376 101 384 91 397 c 0 84 407 82 415 82 443 c 2 82 531 l 2 82 557 83 565 89 574 c 0 97 588 114 597 131 597 c 0 151 597 160 589 170 564 c 1 205 586 249 597 300 597 c 0 424 597 517 521 517 420 c 0 517 363 494 317 461 298 c 1 467 294 473 290 479 285 c 0 519 253 538 212 538 160 c 0 538 56 446 -14 309 -14 c 0 255 -14 202 -1 153 25 c 1 136 5 129 1 113 1 c 0 78 1 62 22 62 67 c 2 62 133 l 2 62 158 64 169 71 179 c 0 81 192 96 199 112 199 c 0 126 199 139 194 148 185 c 0 155 178 155 178 163 151 c 0 173 115 236 86 302 86 c 0 376 86 434 119 434 162 c 0 434 183 420 203 398 215 c 0 377 226 361 240 293 240 c 2 234 240 l 2 210 240 197 243 188 249 c 0 176 259 168 275 168 290 c 0 168 307 177 324 192 333 c 0 201 339 209 341 234 341 c 2 EndSplineSet MinimumDistance: x18,-1 EndChar StartChar: uni0499 Encoding: 1177 1177 Width: 600 Flags: W HStem: -16 100<281 313> 1 166<121 126> 178 100<234.892 313> 350 100<281 313> VStem: 188 283<225 235> 396 110<311 317> 417 110<122 129> Fore 255 278 m 2 286 278 l 2 352 278 356 286 370 291 c 0 386 297 396 306 396 315 c 0 396 333 348 350 297 350 c 0 255 350 222 341 194 321 c 1 189 312 l 2 177 290 163 281 142 281 c 0 127 281 111 289 101 301 c 0 94 311 92 321 92 347 c 2 92 384 l 2 92 430 107 450 139 450 c 0 154 450 163 443 171 424 c 1 210 442 251 450 300 450 c 0 420 450 506 393 506 313 c 0 506 281 491 252 471 235 c 1 471 225 l 1 504 205 527 164 527 125 c 0 527 43 433 -16 304 -16 c 0 247 -16 196 -6 156 13 c 1 145 4 137 1 124 1 c 0 106 1 90 9 80 25 c 0 75 34 73 43 73 67 c 2 73 100 l 2 73 127 75 136 83 146 c 0 93 160 107 167 124 167 c 0 150 167 166 153 175 123 c 1 204 97 246 84 300 84 c 0 364 84 417 104 417 127 c 0 417 140 404 154 383 162 c 0 366 169 342 178 291 178 c 2 249 178 l 2 210 178 188 196 188 228 c 0 188 261 210 279 255 278 c 2 EndSplineSet MinimumDistance: x17,-1 EndChar StartChar: uni049A Encoding: 1178 1178 Width: 600 Flags: W HStem: 0 100<54 85 187 230 496 547> 483 100<54 85 187 230 504.031 519.737> VStem: 6 282<48 52 528 535> 86 100<100 277 335 483> 334 232<528 535> DStem: 364 487 504 483 186 334 328 330 Fore 186 100 m 1 222 100 l 2 248 100 256 98 266 91 c 0 280 81 288 66 288 50 c 0 288 33 278 16 264 7 c 0 256 3 242 0 222 0 c 2 72 0 l 2 48 0 34 3 26 10 c 0 14 19 6 35 6 50 c 0 6 67 14 84 30 93 c 1 38 99 48 100 72 100 c 2 86 100 l 1 86 483 l 1 72 483 l 2 46 483 36 485 26 492 c 0 14 502 6 517 6 533 c 0 6 550 14 567 30 576 c 1 38 582 46 583 72 583 c 2 222 583 l 2 248 583 258 581 266 574 c 0 280 564 288 549 288 533 c 0 288 516 278 499 264 490 c 0 256 485 244 483 222 483 c 2 186 483 l 1 186 334 l 1 364 487 l 1 344 495 334 509 334 532 c 0 334 560 350 578 378 581 c 0 390 583 392 583 400 583 c 2 500 583 l 2 526 583 536 581 546 574 c 0 558 564 566 549 566 533 c 0 566 500 544 483 504 483 c 1 328 330 l 1 388 298 450 215 496 100 c 1 528 100 l 2 556 100 564 98 574 91 c 0 586 81 594 66 594 50 c 0 594 33 586 16 570 7 c 0 564 3 548 0 528 0 c 2 418 0 l 1 372 143 268 278 186 278 c 1 186 100 l 1 EndSplineSet MinimumDistance: x31,-1 EndChar StartChar: uni049B Encoding: 1179 1179 Width: 600 Flags: W HStem: 0 100<100.726 133 448 500> 337 100<100 133 448 484> VStem: 134 100<100 163 288 337> 296 252<48 52> 298 244<384 389> DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227 Fore 234 0 m 1 118 0 l 2 74 0 52 17 52 50 c 0 52 67 62 84 76 93 c 0 86 99 94 100 118 100 c 2 134 100 l 1 134 337 l 1 118 337 l 2 92 337 82 339 72 346 c 0 60 356 52 371 52 387 c 0 52 404 62 421 76 430 c 0 86 436 94 437 118 437 c 2 234 437 l 1 234 287 l 1 314 350 l 1 302 364 298 373 298 387 c 0 298 404 306 420 322 430 c 0 330 435 340 437 364 437 c 2 476 437 l 2 502 437 512 435 522 428 c 0 536 418 542 403 542 387 c 0 542 370 534 354 518 344 c 0 510 339 500 337 476 337 c 2 448 337 l 1 312 227 l 1 448 100 l 1 480 100 l 2 508 100 516 98 526 91 c 0 540 81 548 66 548 50 c 0 548 33 538 17 524 7 c 0 516 2 502 0 480 0 c 2 362 0 l 2 318 0 296 17 296 50 c 0 296 64 300 74 312 87 c 1 234 164 l 1 234 0 l 1 EndSplineSet MinimumDistance: x20,-1 EndChar StartChar: uni049C Encoding: 1180 1180 Width: 600 Flags: W HStem: 0 100<54 85 187 230 496 547> 483 100<54 85 187 230 504.031 519.737> VStem: 6 282<48 52 528 535> 86 100<100 277 335 483> 334 232<528 535> DStem: 364 487 504 483 186 334 328 330 Fore 186 100 m 1 222 100 l 2 248 100 256 98 266 91 c 0 280 81 288 66 288 50 c 0 288 33 278 16 264 7 c 0 256 3 242 0 222 0 c 2 72 0 l 2 48 0 34 3 26 10 c 0 14 19 6 35 6 50 c 0 6 67 14 84 30 93 c 1 38 99 48 100 72 100 c 2 86 100 l 1 86 483 l 1 72 483 l 2 46 483 36 485 26 492 c 0 14 502 6 517 6 533 c 0 6 550 14 567 30 576 c 1 38 582 46 583 72 583 c 2 222 583 l 2 248 583 258 581 266 574 c 0 280 564 288 549 288 533 c 0 288 516 278 499 264 490 c 0 256 485 244 483 222 483 c 2 186 483 l 1 186 334 l 1 364 487 l 1 344 495 334 509 334 532 c 0 334 560 350 578 378 581 c 0 390 583 392 583 400 583 c 2 500 583 l 2 526 583 536 581 546 574 c 0 558 564 566 549 566 533 c 0 566 500 544 483 504 483 c 1 328 330 l 1 388 298 450 215 496 100 c 1 528 100 l 2 556 100 564 98 574 91 c 0 586 81 594 66 594 50 c 0 594 33 586 16 570 7 c 0 564 3 548 0 528 0 c 2 418 0 l 1 372 143 268 278 186 278 c 1 186 100 l 1 EndSplineSet MinimumDistance: x31,-1 EndChar StartChar: uni049D Encoding: 1181 1181 Width: 600 Flags: W HStem: 0 100<100.726 133 448 500> 337 100<100 133 448 484> VStem: 134 100<100 163 288 337> 296 252<48 52> 298 244<384 389> DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227 Fore 234 0 m 1 118 0 l 2 74 0 52 17 52 50 c 0 52 67 62 84 76 93 c 0 86 99 94 100 118 100 c 2 134 100 l 1 134 337 l 1 118 337 l 2 92 337 82 339 72 346 c 0 60 356 52 371 52 387 c 0 52 404 62 421 76 430 c 0 86 436 94 437 118 437 c 2 234 437 l 1 234 287 l 1 314 350 l 1 302 364 298 373 298 387 c 0 298 404 306 420 322 430 c 0 330 435 340 437 364 437 c 2 476 437 l 2 502 437 512 435 522 428 c 0 536 418 542 403 542 387 c 0 542 370 534 354 518 344 c 0 510 339 500 337 476 337 c 2 448 337 l 1 312 227 l 1 448 100 l 1 480 100 l 2 508 100 516 98 526 91 c 0 540 81 548 66 548 50 c 0 548 33 538 17 524 7 c 0 516 2 502 0 480 0 c 2 362 0 l 2 318 0 296 17 296 50 c 0 296 64 300 74 312 87 c 1 234 164 l 1 234 0 l 1 EndSplineSet MinimumDistance: x20,-1 EndChar StartChar: uni049E Encoding: 1182 1182 Width: 600 Flags: W HStem: 0 100<54 85 187 230 496 547> 483 100<54 85 187 230 504.031 519.737> VStem: 6 282<48 52 528 535> 86 100<100 277 335 483> 334 232<528 535> DStem: 364 487 504 483 186 334 328 330 Fore 186 100 m 1 222 100 l 2 248 100 256 98 266 91 c 0 280 81 288 66 288 50 c 0 288 33 278 16 264 7 c 0 256 3 242 0 222 0 c 2 72 0 l 2 48 0 34 3 26 10 c 0 14 19 6 35 6 50 c 0 6 67 14 84 30 93 c 1 38 99 48 100 72 100 c 2 86 100 l 1 86 483 l 1 72 483 l 2 46 483 36 485 26 492 c 0 14 502 6 517 6 533 c 0 6 550 14 567 30 576 c 1 38 582 46 583 72 583 c 2 222 583 l 2 248 583 258 581 266 574 c 0 280 564 288 549 288 533 c 0 288 516 278 499 264 490 c 0 256 485 244 483 222 483 c 2 186 483 l 1 186 334 l 1 364 487 l 1 344 495 334 509 334 532 c 0 334 560 350 578 378 581 c 0 390 583 392 583 400 583 c 2 500 583 l 2 526 583 536 581 546 574 c 0 558 564 566 549 566 533 c 0 566 500 544 483 504 483 c 1 328 330 l 1 388 298 450 215 496 100 c 1 528 100 l 2 556 100 564 98 574 91 c 0 586 81 594 66 594 50 c 0 594 33 586 16 570 7 c 0 564 3 548 0 528 0 c 2 418 0 l 1 372 143 268 278 186 278 c 1 186 100 l 1 EndSplineSet MinimumDistance: x31,-1 EndChar StartChar: uni049F Encoding: 1183 1183 Width: 600 Flags: W HStem: 0 100<100.726 133 448 500> 337 100<100 133 448 484> VStem: 134 100<100 163 288 337> 296 252<48 52> 298 244<384 389> DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227 Fore 234 0 m 1 118 0 l 2 74 0 52 17 52 50 c 0 52 67 62 84 76 93 c 0 86 99 94 100 118 100 c 2 134 100 l 1 134 337 l 1 118 337 l 2 92 337 82 339 72 346 c 0 60 356 52 371 52 387 c 0 52 404 62 421 76 430 c 0 86 436 94 437 118 437 c 2 234 437 l 1 234 287 l 1 314 350 l 1 302 364 298 373 298 387 c 0 298 404 306 420 322 430 c 0 330 435 340 437 364 437 c 2 476 437 l 2 502 437 512 435 522 428 c 0 536 418 542 403 542 387 c 0 542 370 534 354 518 344 c 0 510 339 500 337 476 337 c 2 448 337 l 1 312 227 l 1 448 100 l 1 480 100 l 2 508 100 516 98 526 91 c 0 540 81 548 66 548 50 c 0 548 33 538 17 524 7 c 0 516 2 502 0 480 0 c 2 362 0 l 2 318 0 296 17 296 50 c 0 296 64 300 74 312 87 c 1 234 164 l 1 234 0 l 1 EndSplineSet MinimumDistance: x20,-1 EndChar StartChar: uni04A0 Encoding: 1184 1184 Width: 600 Flags: W HStem: 0 100<54 85 187 230 496 547> 483 100<54 85 187 230 504.031 519.737> VStem: 6 282<48 52 528 535> 86 100<100 277 335 483> 334 232<528 535> DStem: 364 487 504 483 186 334 328 330 Fore 186 100 m 1 222 100 l 2 248 100 256 98 266 91 c 0 280 81 288 66 288 50 c 0 288 33 278 16 264 7 c 0 256 3 242 0 222 0 c 2 72 0 l 2 48 0 34 3 26 10 c 0 14 19 6 35 6 50 c 0 6 67 14 84 30 93 c 1 38 99 48 100 72 100 c 2 86 100 l 1 86 483 l 1 72 483 l 2 46 483 36 485 26 492 c 0 14 502 6 517 6 533 c 0 6 550 14 567 30 576 c 1 38 582 46 583 72 583 c 2 222 583 l 2 248 583 258 581 266 574 c 0 280 564 288 549 288 533 c 0 288 516 278 499 264 490 c 0 256 485 244 483 222 483 c 2 186 483 l 1 186 334 l 1 364 487 l 1 344 495 334 509 334 532 c 0 334 560 350 578 378 581 c 0 390 583 392 583 400 583 c 2 500 583 l 2 526 583 536 581 546 574 c 0 558 564 566 549 566 533 c 0 566 500 544 483 504 483 c 1 328 330 l 1 388 298 450 215 496 100 c 1 528 100 l 2 556 100 564 98 574 91 c 0 586 81 594 66 594 50 c 0 594 33 586 16 570 7 c 0 564 3 548 0 528 0 c 2 418 0 l 1 372 143 268 278 186 278 c 1 186 100 l 1 EndSplineSet MinimumDistance: x31,-1 EndChar StartChar: uni04A1 Encoding: 1185 1185 Width: 600 Flags: W HStem: 0 100<100.726 133 448 500> 337 100<100 133 448 484> VStem: 134 100<100 163 288 337> 296 252<48 52> 298 244<384 389> DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227 Fore 234 0 m 1 118 0 l 2 74 0 52 17 52 50 c 0 52 67 62 84 76 93 c 0 86 99 94 100 118 100 c 2 134 100 l 1 134 337 l 1 118 337 l 2 92 337 82 339 72 346 c 0 60 356 52 371 52 387 c 0 52 404 62 421 76 430 c 0 86 436 94 437 118 437 c 2 234 437 l 1 234 287 l 1 314 350 l 1 302 364 298 373 298 387 c 0 298 404 306 420 322 430 c 0 330 435 340 437 364 437 c 2 476 437 l 2 502 437 512 435 522 428 c 0 536 418 542 403 542 387 c 0 542 370 534 354 518 344 c 0 510 339 500 337 476 337 c 2 448 337 l 1 312 227 l 1 448 100 l 1 480 100 l 2 508 100 516 98 526 91 c 0 540 81 548 66 548 50 c 0 548 33 538 17 524 7 c 0 516 2 502 0 480 0 c 2 362 0 l 2 318 0 296 17 296 50 c 0 296 64 300 74 312 87 c 1 234 164 l 1 234 0 l 1 EndSplineSet MinimumDistance: x20,-1 EndChar StartChar: uni04A2 Encoding: 1186 1186 Width: 600 Flags: W HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5> VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483> Ref: 72 N 1 0 0 1 0 0 EndChar StartChar: uni04A3 Encoding: 1187 1187 Width: 600 Flags: W HStem: 0 21G<98 187 413 502> 0.144728 99.8553<91 91 192.031 207.093 399 406 507.031 522.093> 162 101<193 406> 337 99.1444<79 91 193 193 391.955 406.969 508 511> VStem: 31 222<48 50 50.0314 61.2516 384 389> 92 100<100 161 264 337> 346 222<48 50 50.0314 61.2516 374.748 386> 407 100<100 161 264 336> Fore 192 337 m 1 192 263 l 1 407 263 l 1 407 336 l 1 368 336 346 354 346 386 c 0 347 419 367 439 412 436 c 1 502 437 l 2 546 437 568 420 568 387 c 0 569 355 546 337 507 337 c 1 507 100 l 1 546 100 569 82 568 50 c 0 568 17 548 -3 502 0 c 1 413 0 l 2 368 0 346 17 346 50 c 0 346 82 368 100 407 100 c 1 407 162 l 1 192 162 l 1 192 100 l 1 231 100 254 82 253 50 c 0 253 17 233 -3 187 0 c 1 98 0 l 2 53 0 31 17 31 50 c 0 31 82 53 100 92 100 c 1 92 337 l 1 53 337 31 355 31 387 c 0 31 420 53 438 98 437 c 2 186 436 l 2 231 435 253 419 253 386 c 0 253 354 231 337 192 337 c 1 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: uni04A4 Encoding: 1188 1188 Width: 600 Flags: W HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5> VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483> Ref: 72 N 1 0 0 1 0 0 EndChar StartChar: uni04A5 Encoding: 1189 1189 Width: 600 Flags: W HStem: 0 21G<98 187 413 502> 0.144728 99.8553<91 91 192.031 207.093 399 406 507.031 522.093> 162 101<193 406> 337 99.1444<79 91 193 193 391.955 406.969 508 511> VStem: 31 222<48 50 50.0314 61.2516 384 389> 92 100<100 161 264 337> 346 222<48 50 50.0314 61.2516 374.748 386> 407 100<100 161 264 336> Fore 192 337 m 1 192 263 l 1 407 263 l 1 407 336 l 1 368 336 346 354 346 386 c 0 347 419 367 439 412 436 c 1 502 437 l 2 546 437 568 420 568 387 c 0 569 355 546 337 507 337 c 1 507 100 l 1 546 100 569 82 568 50 c 0 568 17 548 -3 502 0 c 1 413 0 l 2 368 0 346 17 346 50 c 0 346 82 368 100 407 100 c 1 407 162 l 1 192 162 l 1 192 100 l 1 231 100 254 82 253 50 c 0 253 17 233 -3 187 0 c 1 98 0 l 2 53 0 31 17 31 50 c 0 31 82 53 100 92 100 c 1 92 337 l 1 53 337 31 355 31 387 c 0 31 420 53 438 98 437 c 2 186 436 l 2 231 435 253 419 253 386 c 0 253 354 231 337 192 337 c 1 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: uni04A6 Encoding: 1190 1190 Width: 600 Flags: W HStem: 0 100<67 92 194 229 373 406 508 533> 483 100<194 406> VStem: 93 100<100 483> 407 100<100 483> Fore 407 483 m 1 193 483 l 1 193 100 l 1 208 100 l 2 234 100 244 98 253 91 c 0 266 81 274 66 274 50 c 0 274 33 265 16 250 7 c 0 242 2 229 0 208 0 c 2 87 0 l 2 63 0 50 3 41 9 c 0 29 19 21 35 21 50 c 0 21 67 30 84 45 93 c 0 54 99 62 100 87 100 c 2 93 100 l 1 93 483 l 1 60 486 41 504 41 533 c 0 41 550 50 567 65 576 c 0 74 582 82 583 107 583 c 2 493 583 l 2 520 583 529 581 539 574 c 0 551 564 559 549 559 533 c 0 559 504 540 486 507 483 c 1 507 100 l 1 513 100 l 2 540 100 549 98 558 91 c 0 571 81 579 66 579 50 c 0 579 33 570 16 555 7 c 0 547 2 534 0 513 0 c 2 392 0 l 2 368 0 356 3 347 9 c 0 334 19 326 35 326 50 c 0 326 67 335 84 350 93 c 0 359 99 368 100 392 100 c 2 407 100 l 1 407 483 l 1 EndSplineSet MinimumDistance: x21,-1 EndChar StartChar: uni04A7 Encoding: 1191 1191 Width: 600 Flags: W HStem: 0 21G<98 187 413 502> 0.144728 99.8553<91 91 192.031 207.093 399 406 507.031 522.093> 337 99.8553<91 91 193 406 508 511> 417 20G<98 502> VStem: 92 100<100 337> 407 100<100 337> Fore 407 336 m 1 192 337 l 1 192 100 l 1 231 100 254 82 253 50 c 0 253 17 233 -3 187 0 c 1 98 0 l 2 53 0 31 17 31 50 c 0 31 82 53 100 92 100 c 1 92 337 l 1 53 337 31 355 31 387 c 0 31 420 53 437 98 437 c 2 502 437 l 2 546 437 568 420 568 387 c 0 569 355 546 337 507 337 c 1 507 100 l 1 546 100 569 82 568 50 c 0 568 17 548 -3 502 0 c 1 413 0 l 2 368 0 346 17 346 50 c 0 346 82 368 100 407 100 c 1 407 336 l 1 EndSplineSet MinimumDistance: x13,-1 EndChar StartChar: uni04A8 Encoding: 1192 1192 Width: 600 Flags: W HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328> VStem: 33 100<242 322> Ref: 67 N 1 0 0 1 0 0 EndChar StartChar: uni04A9 Encoding: 1193 1193 Width: 600 Flags: W HStem: -16 100<274.5 350> 350 100<284.5 332> VStem: 54 100<176.5 226> Ref: 99 N 1 0 0 1 0 0 EndChar StartChar: uni04AA Encoding: 1194 1194 Width: 600 Flags: W HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328> VStem: 33 100<242 322> Ref: 67 N 1 0 0 1 0 0 EndChar StartChar: uni04AB Encoding: 1195 1195 Width: 600 Flags: W HStem: -16 100<274.5 350> 350 100<284.5 332> VStem: 54 100<176.5 226> Ref: 99 N 1 0 0 1 0 0 EndChar StartChar: uni04AC Encoding: 1196 1196 Width: 600 Flags: W HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349> VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483> Ref: 84 N 1 0 0 1 0 0 EndChar StartChar: uni04AD Encoding: 1197 1197 Width: 600 Flags: W HStem: 1.14473 99.8553<249 249 350.031 365.093> 337 101<162 249 351 438> VStem: 62 100<289 336> 250 100<101 336> 438 100<289 336> Fore 250 337 m 1 162 337 l 1 162 311 l 2 162 287 161 278 155 269 c 0 146 254 129 245 112 245 c 0 96 245 81 253 71 265 c 0 64 275 62 285 62 311 c 2 62 438 l 1 538 438 l 1 538 311 l 2 538 285 536 275 529 265 c 0 519 253 504 245 488 245 c 0 471 245 454 254 445 269 c 0 439 278 438 287 438 311 c 2 438 337 l 1 350 337 l 1 350 101 l 1 389 101 412 83 411 51 c 0 410 18 391 -2 345 1 c 1 256 1 l 2 211 1 189 18 189 51 c 0 189 83 211 101 250 101 c 1 250 337 l 1 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: uni04AE Encoding: 1198 1198 Width: 600 Flags: W HStem: 0 100<165 249 351 423> 483 100<73.0894 85 514 516> VStem: 21 222<528 535> 250 100<100 245> 354 225<528 535> DStem: 85 483 205 484 250 245 300 348 394 484 514 483 300 348 350 245 Fore 350 245 m 1 350 100 l 1 415 100 l 2 443 100 451 98 461 91 c 0 474 81 482 66 482 50 c 0 482 33 473 16 458 7 c 0 451 3 436 0 415 0 c 2 185 0 l 2 161 0 148 3 139 10 c 0 126 19 118 34 118 50 c 0 118 67 127 84 142 93 c 0 151 99 158 100 185 100 c 2 250 100 l 1 250 245 l 1 85 483 l 1 44 483 21 501 21 533 c 0 21 560 38 578 67 581 c 0 79 583 80 583 88 583 c 2 177 583 l 2 204 583 213 581 223 574 c 0 235 564 243 549 243 533 c 0 243 510 231 495 205 484 c 1 300 348 l 1 394 484 l 1 367 494 354 510 354 533 c 0 354 550 363 567 378 576 c 0 387 582 396 583 421 583 c 2 513 583 l 2 540 583 549 581 558 574 c 0 572 564 579 549 579 533 c 0 579 502 551 479 516 483 c 2 514 483 l 1 350 245 l 1 EndSplineSet MinimumDistance: x29,-1 x15,20 EndChar StartChar: uni04AF Encoding: 1199 1199 Width: 600 Flags: W HStem: 0 21G<247 351> 337 100<48 80 194 208 384 408 518 544> VStem: 0 264<384 389> 333 267<384 389> DStem: 80 337 193 337 247 0 302 122 409 337 518 337 302 122 351 0 Fore 302 122 m 1 409 337 l 1 399 337 l 2 374 337 363 339 354 346 c 0 341 356 333 371 333 387 c 0 333 404 342 421 357 430 c 0 366 435 375 437 399 437 c 2 534 437 l 2 560 437 570 435 580 428 c 0 592 418 600 403 600 387 c 0 600 370 591 353 576 344 c 0 568 339 557 337 534 337 c 2 518 337 l 1 351 0 l 1 247 0 l 1 80 337 l 1 66 337 l 2 41 337 30 339 21 346 c 0 8 356 0 371 0 387 c 0 0 404 9 421 24 430 c 0 33 435 42 437 66 437 c 2 198 437 l 2 224 437 234 435 244 428 c 0 256 418 264 403 264 387 c 0 264 370 255 353 240 344 c 0 232 339 221 337 198 337 c 2 193 337 l 1 302 122 l 1 EndSplineSet EndChar StartChar: uni04B0 Encoding: 1200 1200 Width: 600 Flags: W HStem: 0 100<165 249 351 423> 483 100<73.0894 85 514 516> VStem: 21 222<528 535> 250 100<100 245> 354 225<528 535> DStem: 85 483 205 484 250 245 300 348 394 484 514 483 300 348 350 245 Fore 350 245 m 1 350 100 l 1 415 100 l 2 443 100 451 98 461 91 c 0 474 81 482 66 482 50 c 0 482 33 473 16 458 7 c 0 451 3 436 0 415 0 c 2 185 0 l 2 161 0 148 3 139 10 c 0 126 19 118 34 118 50 c 0 118 67 127 84 142 93 c 0 151 99 158 100 185 100 c 2 250 100 l 1 250 245 l 1 85 483 l 1 44 483 21 501 21 533 c 0 21 560 38 578 67 581 c 0 79 583 80 583 88 583 c 2 177 583 l 2 204 583 213 581 223 574 c 0 235 564 243 549 243 533 c 0 243 510 231 495 205 484 c 1 300 348 l 1 394 484 l 1 367 494 354 510 354 533 c 0 354 550 363 567 378 576 c 0 387 582 396 583 421 583 c 2 513 583 l 2 540 583 549 581 558 574 c 0 572 564 579 549 579 533 c 0 579 502 551 479 516 483 c 2 514 483 l 1 350 245 l 1 EndSplineSet MinimumDistance: x29,-1 x15,20 EndChar StartChar: uni04B1 Encoding: 1201 1201 Width: 600 Flags: W HStem: 0 21G<247 351> 337 100<48 80 194 208 384 408 518 544> VStem: 0 264<384 389> 333 267<384 389> DStem: 80 337 193 337 247 0 302 122 409 337 518 337 302 122 351 0 Fore 302 122 m 1 409 337 l 1 399 337 l 2 374 337 363 339 354 346 c 0 341 356 333 371 333 387 c 0 333 404 342 421 357 430 c 0 366 435 375 437 399 437 c 2 534 437 l 2 560 437 570 435 580 428 c 0 592 418 600 403 600 387 c 0 600 370 591 353 576 344 c 0 568 339 557 337 534 337 c 2 518 337 l 1 351 0 l 1 247 0 l 1 80 337 l 1 66 337 l 2 41 337 30 339 21 346 c 0 8 356 0 371 0 387 c 0 0 404 9 421 24 430 c 0 33 435 42 437 66 437 c 2 198 437 l 2 224 437 234 435 244 428 c 0 256 418 264 403 264 387 c 0 264 370 255 353 240 344 c 0 232 339 221 337 198 337 c 2 193 337 l 1 302 122 l 1 EndSplineSet EndChar StartChar: uni04B2 Encoding: 1202 1202 Width: 600 Flags: W HStem: 0 21<76 187 413 524> 0.749951 99.25<58 69> 563 20<85 176 422 512> VStem: 10 243<48 52> 19 224<528 535> 347 243<48 52> 355 223<528 535> DStem: 77 483 205 484 235 298 300 375 235 298 301 220 69 100 199 100 301 220 364 297 402 100 531 100 393 484 521 483 300 375 364 297 Ref: 88 N 1 0 0 1 0 0 EndChar StartChar: uni04B3 Encoding: 1203 1203 Width: 600 Flags: W HStem: 0 20 417 20<106 198 198 211 400 491 491 504> Ref: 120 N 1 0 0 1 0 0 EndChar StartChar: uni04B4 Encoding: 1204 1204 Width: 600 Flags: W HStem: 0 100<179 391 493 494> 483 100<52 77 179 214 358 391 493 518> VStem: 78 100<100 483> 392 100<100 483> 494 100<-93 0> Fore 494 0 m 1 92 0 l 2 67 0 59 1 50 7 c 0 35 16 26 33 26 50 c 0 26 79 45 97 78 100 c 1 78 483 l 1 72 483 l 2 47 483 39 484 30 490 c 0 15 499 6 516 6 533 c 0 6 548 14 564 26 574 c 0 35 580 48 583 72 583 c 2 193 583 l 2 214 583 227 581 235 576 c 0 250 567 259 550 259 533 c 0 259 517 251 502 238 492 c 0 229 485 219 483 193 483 c 2 178 483 l 1 178 100 l 1 392 100 l 1 392 483 l 1 377 483 l 2 353 483 344 484 335 490 c 0 320 499 311 516 311 533 c 0 311 548 319 564 332 574 c 0 341 580 353 583 377 583 c 2 498 583 l 2 519 583 532 581 540 576 c 0 555 567 564 550 564 533 c 0 564 517 556 502 543 492 c 0 534 485 525 483 498 483 c 2 492 483 l 1 492 100 l 1 594 100 l 1 594 -75 l 2 594 -102 592 -110 585 -120 c 0 575 -133 560 -141 544 -141 c 0 527 -141 511 -132 501 -117 c 0 496 -109 494 -98 494 -75 c 2 494 0 l 1 EndSplineSet MinimumDistance: x32,-1 y33,31 x31,33 x31,32 EndChar StartChar: uni04B5 Encoding: 1205 1205 Width: 600 Flags: W HStem: 0.11526 99.8847<84 84 186 382> 337 99.7765<84 84 186 186 376 382 484 488> 417 20G<90 179 388 477> VStem: 85 100<100 337> 383 100<100 337> 477 100<-44 0> Fore 483 100 m 1 577 100 l 1 577 -26 l 2 577 -52 575 -62 568 -72 c 0 558 -84 543 -92 527 -92 c 0 510 -92 493 -83 484 -68 c 0 478 -59 477 -50 477 -26 c 2 477 0 l 1 90 0 l 2 47 0 24 17 24 50 c 0 23 82 46 100 85 100 c 1 85 337 l 1 46 337 23 355 24 387 c 0 24 420 44 436 90 437 c 2 179 437 l 2 224 437 246 420 246 387 c 0 246 355 224 337 185 337 c 1 185 101 l 1 383 100 l 1 383 337 l 1 344 337 321 355 322 387 c 0 322 420 345 436 388 437 c 2 477 437 l 2 522 437 544 420 544 387 c 0 544 355 522 337 483 337 c 1 483 100 l 1 EndSplineSet MinimumDistance: x1,-1 y2,0 x0,2 x0,1 EndChar StartChar: uni04B6 Encoding: 1206 1206 Width: 600 Flags: W HStem: 0 100<358 389 491 502> 170 100<271 294> 483 100<191 214 358 389> VStem: 38 234<528 535> 90 100<308 483> 308 234<528 535> 390 100<100 207 308 483> Fore 390 208 m 1 363 185 329 170 284 170 c 0 190 170 96 185 90 305 c 1 90 483 l 1 58 486 38 504 38 533 c 0 38 550 48 567 62 576 c 0 72 582 80 583 104 583 c 2 206 583 l 2 232 583 242 581 250 574 c 0 264 564 272 549 272 533 c 0 272 516 262 499 248 490 c 0 238 485 230 483 206 483 c 2 190 483 l 1 190 308 l 1 202 282 247 270 290 270 c 0 333 270 369 282 390 308 c 1 390 483 l 1 374 483 l 2 348 483 340 485 330 492 c 0 316 502 308 517 308 533 c 0 308 550 318 567 332 576 c 0 342 582 350 583 374 583 c 2 476 583 l 2 502 583 512 581 522 574 c 0 534 564 542 549 542 533 c 0 542 504 522 486 490 483 c 1 490 100 l 1 496 100 l 2 522 100 532 98 540 91 c 0 554 81 562 66 562 50 c 0 562 33 552 16 538 7 c 0 530 2 516 0 496 0 c 2 374 0 l 2 350 0 338 3 330 9 c 0 316 19 308 35 308 50 c 0 308 67 318 84 332 93 c 0 342 99 350 100 374 100 c 2 390 100 l 1 390 208 l 1 EndSplineSet MinimumDistance: x25,-1 EndChar StartChar: uni04B7 Encoding: 1207 1207 Width: 600 Flags: W HStem: 0 436<395 485> 0.369504 99.6305<385 389 490.031 505.093> 111 97<289 305> 337 99.1444<97 109 211 211 374.907 389.969 491 497> VStem: 110 100<251 337> 390 100<100 140 251 336> Fore 210 337 m 1 210 252 l 2 210 218 260 208 300 208 c 0 340 208 390 231 390 252 c 2 390 336 l 1 351 336 328 354 329 386 c 0 330 419 349 439 395 436 c 1 485 437 l 2 528 437 550 420 551 387 c 0 552 355 529 337 490 337 c 1 490 100 l 1 529 100 552 82 551 50 c 0 550 17 531 -3 485 0 c 1 396 0 l 2 351 0 329 17 329 50 c 0 329 82 351 100 390 100 c 1 390 141 l 1 370 122 339 111 302 111 c 0 202 111 110 135 110 252 c 2 110 337 l 1 71 337 49 355 49 387 c 0 49 420 71 438 116 437 c 2 204 436 l 2 249 435 271 419 271 386 c 0 271 354 249 337 210 337 c 1 EndSplineSet MinimumDistance: x9,-1 EndChar StartChar: uni04B8 Encoding: 1208 1208 Width: 600 Flags: W HStem: 0 100<358 389 491 502> 170 100<271 294> 483 100<191 214 358 389> VStem: 38 234<528 535> 90 100<308 483> 308 234<528 535> 390 100<100 207 308 483> Fore 390 208 m 1 363 185 329 170 284 170 c 0 190 170 96 185 90 305 c 1 90 483 l 1 58 486 38 504 38 533 c 0 38 550 48 567 62 576 c 0 72 582 80 583 104 583 c 2 206 583 l 2 232 583 242 581 250 574 c 0 264 564 272 549 272 533 c 0 272 516 262 499 248 490 c 0 238 485 230 483 206 483 c 2 190 483 l 1 190 308 l 1 202 282 247 270 290 270 c 0 333 270 369 282 390 308 c 1 390 483 l 1 374 483 l 2 348 483 340 485 330 492 c 0 316 502 308 517 308 533 c 0 308 550 318 567 332 576 c 0 342 582 350 583 374 583 c 2 476 583 l 2 502 583 512 581 522 574 c 0 534 564 542 549 542 533 c 0 542 504 522 486 490 483 c 1 490 100 l 1 496 100 l 2 522 100 532 98 540 91 c 0 554 81 562 66 562 50 c 0 562 33 552 16 538 7 c 0 530 2 516 0 496 0 c 2 374 0 l 2 350 0 338 3 330 9 c 0 316 19 308 35 308 50 c 0 308 67 318 84 332 93 c 0 342 99 350 100 374 100 c 2 390 100 l 1 390 208 l 1 EndSplineSet MinimumDistance: x25,-1 EndChar StartChar: uni04B9 Encoding: 1209 1209 Width: 600 Flags: W HStem: 0 436<395 485> 0.369504 99.6305<385 389 490.031 505.093> 111 97<289 305> 337 99.1444<97 109 211 211 374.907 389.969 491 497> VStem: 110 100<251 337> 390 100<100 140 251 336> Fore 210 337 m 1 210 252 l 2 210 218 260 208 300 208 c 0 340 208 390 231 390 252 c 2 390 336 l 1 351 336 328 354 329 386 c 0 330 419 349 439 395 436 c 1 485 437 l 2 528 437 550 420 551 387 c 0 552 355 529 337 490 337 c 1 490 100 l 1 529 100 552 82 551 50 c 0 550 17 531 -3 485 0 c 1 396 0 l 2 351 0 329 17 329 50 c 0 329 82 351 100 390 100 c 1 390 141 l 1 370 122 339 111 302 111 c 0 202 111 110 135 110 252 c 2 110 337 l 1 71 337 49 355 49 387 c 0 49 420 71 438 116 437 c 2 204 436 l 2 249 435 271 419 271 386 c 0 271 354 249 337 210 337 c 1 EndSplineSet MinimumDistance: x9,-1 EndChar StartChar: uni04BA Encoding: 1210 1210 Width: 600 Flags: W HStem: 0 100<358 389 491 502> 170 100<271 294> 483 100<191 214 358 389> VStem: 38 234<528 535> 90 100<308 483> 308 234<528 535> 390 100<100 207 308 483> Fore 390 208 m 1 363 185 329 170 284 170 c 0 190 170 96 185 90 305 c 1 90 483 l 1 58 486 38 504 38 533 c 0 38 550 48 567 62 576 c 0 72 582 80 583 104 583 c 2 206 583 l 2 232 583 242 581 250 574 c 0 264 564 272 549 272 533 c 0 272 516 262 499 248 490 c 0 238 485 230 483 206 483 c 2 190 483 l 1 190 308 l 1 202 282 247 270 290 270 c 0 333 270 369 282 390 308 c 1 390 483 l 1 374 483 l 2 348 483 340 485 330 492 c 0 316 502 308 517 308 533 c 0 308 550 318 567 332 576 c 0 342 582 350 583 374 583 c 2 476 583 l 2 502 583 512 581 522 574 c 0 534 564 542 549 542 533 c 0 542 504 522 486 490 483 c 1 490 100 l 1 496 100 l 2 522 100 532 98 540 91 c 0 554 81 562 66 562 50 c 0 562 33 552 16 538 7 c 0 530 2 516 0 496 0 c 2 374 0 l 2 350 0 338 3 330 9 c 0 316 19 308 35 308 50 c 0 308 67 318 84 332 93 c 0 342 99 350 100 374 100 c 2 390 100 l 1 390 208 l 1 EndSplineSet MinimumDistance: x25,-1 EndChar StartChar: uni04BB Encoding: 1211 1211 Width: 600 Flags: W HStem: 0 436<395 485> 0.369504 99.6305<385 389 490.031 505.093> 111 97<289 305> 337 99.1444<97 109 211 211 374.907 389.969 491 497> VStem: 110 100<251 337> 390 100<100 140 251 336> Fore 210 337 m 1 210 252 l 2 210 218 260 208 300 208 c 0 340 208 390 231 390 252 c 2 390 336 l 1 351 336 328 354 329 386 c 0 330 419 349 439 395 436 c 1 485 437 l 2 528 437 550 420 551 387 c 0 552 355 529 337 490 337 c 1 490 100 l 1 529 100 552 82 551 50 c 0 550 17 531 -3 485 0 c 1 396 0 l 2 351 0 329 17 329 50 c 0 329 82 351 100 390 100 c 1 390 141 l 1 370 122 339 111 302 111 c 0 202 111 110 135 110 252 c 2 110 337 l 1 71 337 49 355 49 387 c 0 49 420 71 438 116 437 c 2 204 436 l 2 249 435 271 419 271 386 c 0 271 354 249 337 210 337 c 1 EndSplineSet MinimumDistance: x9,-1 EndChar StartChar: uni04BC Encoding: 1212 1212 Width: 600 Flags: W HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328> VStem: 33 100<242 322> Ref: 67 N 1 0 0 1 0 0 EndChar StartChar: uni04BD Encoding: 1213 1213 Width: 600 Flags: W HStem: -16 100<274.5 350> 350 100<284.5 332> VStem: 54 100<176.5 226> Ref: 99 N 1 0 0 1 0 0 EndChar StartChar: uni04BE Encoding: 1214 1214 Width: 600 Flags: W HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328> VStem: 33 100<242 322> Ref: 67 N 1 0 0 1 0 0 EndChar StartChar: uni04BF Encoding: 1215 1215 Width: 600 Flags: W HStem: -16 100<274.5 350> 350 100<284.5 332> VStem: 54 100<176.5 226> Ref: 99 N 1 0 0 1 0 0 EndChar StartChar: uni04C0 Encoding: 1216 1216 Width: 600 Flags: W HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> VStem: 250 100<100 483> Ref: 73 N 1 0 0 1 0 0 EndChar StartChar: uni04C1 Encoding: 1217 1217 Width: 600 Flags: W HStem: 0 100<24 52 232 249 349.031 367.854 547 568> 483 100<24 33 232 249 349.031 373.464 567 568> 623 68<296 312> VStem: -23 186<528 535> 250 99<100 259 338 483> 436 186<528 535> DStem: 33 483 132 487 148 330 250 337 467 487 566 483 349 337 451 330 Fore 348 583 m 2 374 583 381 582 390 576 c 0 405 567 414 550 414 533 c 0 414 517 406 502 393 492 c 1 387 484 371 483 349 483 c 1 349 337 l 1 467 487 l 1 446 495 436 509 436 532 c 0 436 560 452 578 481 581 c 0 493 583 494 583 502 583 c 2 556 583 l 2 583 583 592 581 602 574 c 0 614 564 622 549 622 533 c 0 622 500 601 483 566 483 c 1 451 330 l 1 512 298 545 214 547 100 c 1 557 100 l 2 584 100 592 98 602 91 c 0 615 81 623 66 623 50 c 0 623 33 614 16 599 7 c 0 592 3 577 0 557 0 c 2 469 0 l 1 467 148 431 260 349 260 c 1 349 100 l 1 370 100 383 100 390 93 c 1 405 84 414 67 414 50 c 0 414 35 406 19 393 10 c 0 385 3 371 0 348 0 c 2 251 0 l 2 228 0 214 3 206 10 c 0 193 19 185 35 185 50 c 0 185 67 194 84 209 93 c 1 216 100 229 100 250 100 c 1 250 260 l 1 168 260 132 148 130 0 c 1 42 0 l 2 22 0 7 3 0 7 c 0 -15 16 -24 33 -24 50 c 0 -24 66 -16 81 -3 91 c 0 7 98 15 100 42 100 c 2 52 100 l 1 54 214 87 298 148 330 c 1 33 483 l 1 -2 483 -23 500 -23 533 c 0 -23 549 -15 564 -3 574 c 0 7 581 16 583 43 583 c 2 97 583 l 2 105 583 106 583 118 581 c 0 147 578 163 560 163 532 c 0 163 509 153 495 132 487 c 1 250 337 l 1 250 483 l 1 228 483 212 484 206 492 c 1 193 502 185 517 185 533 c 0 185 550 194 567 209 576 c 0 218 582 225 583 251 583 c 2 348 583 l 2 159 807 m 0 179 807 186 798 193 767 c 0 203 721 245 691 300 691 c 0 355 691 397 721 407 767 c 0 414 798 421 807 441 807 c 0 461 807 475 792 475 769 c 0 475 693 392 623 300 623 c 0 208 623 125 693 125 769 c 0 125 792 139 807 159 807 c 0 EndSplineSet EndChar StartChar: uni04C2 Encoding: 1218 1218 Width: 600 Flags: W HStem: 0 21G<47 118 264 335 481 552> 337 99.1475<27 34 566 571> 417 20G<49 118 254 345 481 550> 477 68<283 315> VStem: -17 201<384 389> 248 103<101 160 288 337> 415 205<48 52> 415 201<384 389> DStem: 34 337 168 350 170 227 248 287 170 227 248 161 34 100 170 87 351 161 429 227 429 87 565 100 431 350 565 337 351 287 429 227 Fore 335 0 m 2 264 0 l 2 220 0 204 17 204 50 c 0 204 67 214 84 230 93 c 1 238 99 248 100 248 100 c 1 248 161 l 1 170 87 l 1 182 74 184 64 184 50 c 0 184 17 162 0 118 0 c 2 47 0 l 2 25 0 11 2 3 7 c 0 -11 17 -21 33 -21 50 c 0 -21 66 -14 81 1 93 c 0 12 101 18 101 34 100 c 1 170 227 l 1 34 337 l 1 24 337 16 337 7 344 c 0 -9 356 -17 370 -17 387 c 0 -17 403 -11 418 3 428 c 0 13 435 23 437 49 437 c 2 118 437 l 2 142 437 152 435 160 430 c 0 176 420 184 404 184 387 c 0 184 373 180 364 168 350 c 1 248 287 l 1 248 337 l 1 248 337 234 339 224 346 c 0 212 356 204 371 204 387 c 0 204 404 212 421 228 430 c 1 236 436 230 437 254 437 c 2 345 437 l 2 369 437 363 436 371 430 c 1 387 421 395 404 395 387 c 0 395 371 387 356 375 346 c 0 365 339 351 337 351 337 c 1 351 287 l 1 431 350 l 1 419 364 415 373 415 387 c 0 415 404 423 420 439 430 c 0 447 435 457 437 481 437 c 2 550 437 l 2 576 437 586 435 596 428 c 0 610 418 616 403 616 387 c 0 616 370 608 356 592 344 c 0 583 337 575 337 565 337 c 1 429 227 l 1 565 100 l 1 581 101 587 101 598 93 c 0 613 81 620 66 620 50 c 0 620 33 610 17 596 7 c 0 588 2 574 0 552 0 c 2 481 0 l 2 437 0 415 17 415 50 c 0 415 64 417 74 429 87 c 1 351 161 l 1 351 100 l 1 351 100 361 99 369 93 c 1 385 84 395 67 395 50 c 0 395 17 379 0 335 0 c 2 159 661 m 0 179 661 186 652 193 621 c 0 203 575 245 545 300 545 c 0 355 545 397 575 407 621 c 0 414 652 421 661 441 661 c 0 461 661 475 646 475 623 c 0 475 547 392 477 300 477 c 0 208 477 125 547 125 623 c 0 125 646 139 661 159 661 c 0 EndSplineSet EndChar StartChar: uni04C3 Encoding: 1219 1219 Width: 600 Flags: W HStem: 0 100<54 85 187 230 496 547> 483 100<54 85 187 230 504.031 519.737> VStem: 6 282<48 52 528 535> 86 100<100 277 335 483> 334 232<528 535> DStem: 364 487 504 483 186 334 328 330 Fore 186 100 m 1 222 100 l 2 248 100 256 98 266 91 c 0 280 81 288 66 288 50 c 0 288 33 278 16 264 7 c 0 256 3 242 0 222 0 c 2 72 0 l 2 48 0 34 3 26 10 c 0 14 19 6 35 6 50 c 0 6 67 14 84 30 93 c 1 38 99 48 100 72 100 c 2 86 100 l 1 86 483 l 1 72 483 l 2 46 483 36 485 26 492 c 0 14 502 6 517 6 533 c 0 6 550 14 567 30 576 c 1 38 582 46 583 72 583 c 2 222 583 l 2 248 583 258 581 266 574 c 0 280 564 288 549 288 533 c 0 288 516 278 499 264 490 c 0 256 485 244 483 222 483 c 2 186 483 l 1 186 334 l 1 364 487 l 1 344 495 334 509 334 532 c 0 334 560 350 578 378 581 c 0 390 583 392 583 400 583 c 2 500 583 l 2 526 583 536 581 546 574 c 0 558 564 566 549 566 533 c 0 566 500 544 483 504 483 c 1 328 330 l 1 388 298 450 215 496 100 c 1 528 100 l 2 556 100 564 98 574 91 c 0 586 81 594 66 594 50 c 0 594 33 586 16 570 7 c 0 564 3 548 0 528 0 c 2 418 0 l 1 372 143 268 278 186 278 c 1 186 100 l 1 EndSplineSet MinimumDistance: x31,-1 EndChar StartChar: uni04C4 Encoding: 1220 1220 Width: 600 Flags: W HStem: 0 100<100.726 133 448 500> 337 100<100 133 448 484> VStem: 134 100<100 163 288 337> 296 252<48 52> 298 244<384 389> DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227 Fore 234 0 m 1 118 0 l 2 74 0 52 17 52 50 c 0 52 67 62 84 76 93 c 0 86 99 94 100 118 100 c 2 134 100 l 1 134 337 l 1 118 337 l 2 92 337 82 339 72 346 c 0 60 356 52 371 52 387 c 0 52 404 62 421 76 430 c 0 86 436 94 437 118 437 c 2 234 437 l 1 234 287 l 1 314 350 l 1 302 364 298 373 298 387 c 0 298 404 306 420 322 430 c 0 330 435 340 437 364 437 c 2 476 437 l 2 502 437 512 435 522 428 c 0 536 418 542 403 542 387 c 0 542 370 534 354 518 344 c 0 510 339 500 337 476 337 c 2 448 337 l 1 312 227 l 1 448 100 l 1 480 100 l 2 508 100 516 98 526 91 c 0 540 81 548 66 548 50 c 0 548 33 538 17 524 7 c 0 516 2 502 0 480 0 c 2 362 0 l 2 318 0 296 17 296 50 c 0 296 64 300 74 312 87 c 1 234 164 l 1 234 0 l 1 EndSplineSet MinimumDistance: x20,-1 EndChar StartChar: uni04C5 Encoding: 1221 1221 Width: 600 EndChar StartChar: uni04C6 Encoding: 1222 1222 Width: 600 EndChar StartChar: uni04C7 Encoding: 1223 1223 Width: 600 Flags: W HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5> VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483> Ref: 72 N 1 0 0 1 0 0 EndChar StartChar: uni04C8 Encoding: 1224 1224 Width: 600 Flags: W HStem: 0 21G<98 187 413 502> 0.144728 99.8553<91 91 192.031 207.093 399 406 507.031 522.093> 162 101<193 406> 337 99.1444<79 91 193 193 391.955 406.969 508 511> VStem: 31 222<48 50 50.0314 61.2516 384 389> 92 100<100 161 264 337> 346 222<48 50 50.0314 61.2516 374.748 386> 407 100<100 161 264 336> Fore 192 337 m 1 192 263 l 1 407 263 l 1 407 336 l 1 368 336 346 354 346 386 c 0 347 419 367 439 412 436 c 1 502 437 l 2 546 437 568 420 568 387 c 0 569 355 546 337 507 337 c 1 507 100 l 1 546 100 569 82 568 50 c 0 568 17 548 -3 502 0 c 1 413 0 l 2 368 0 346 17 346 50 c 0 346 82 368 100 407 100 c 1 407 162 l 1 192 162 l 1 192 100 l 1 231 100 254 82 253 50 c 0 253 17 233 -3 187 0 c 1 98 0 l 2 53 0 31 17 31 50 c 0 31 82 53 100 92 100 c 1 92 337 l 1 53 337 31 355 31 387 c 0 31 420 53 438 98 437 c 2 186 436 l 2 231 435 253 419 253 386 c 0 253 354 231 337 192 337 c 1 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: uni04C9 Encoding: 1225 1225 Width: 600 EndChar StartChar: uni04CA Encoding: 1226 1226 Width: 600 EndChar StartChar: uni04CB Encoding: 1227 1227 Width: 600 Flags: W HStem: 0 100<358 389 491 502> 170 100<271 294> 483 100<191 214 358 389> VStem: 38 234<528 535> 90 100<308 483> 308 234<528 535> 390 100<100 207 308 483> Fore 390 208 m 1 363 185 329 170 284 170 c 0 190 170 96 185 90 305 c 1 90 483 l 1 58 486 38 504 38 533 c 0 38 550 48 567 62 576 c 0 72 582 80 583 104 583 c 2 206 583 l 2 232 583 242 581 250 574 c 0 264 564 272 549 272 533 c 0 272 516 262 499 248 490 c 0 238 485 230 483 206 483 c 2 190 483 l 1 190 308 l 1 202 282 247 270 290 270 c 0 333 270 369 282 390 308 c 1 390 483 l 1 374 483 l 2 348 483 340 485 330 492 c 0 316 502 308 517 308 533 c 0 308 550 318 567 332 576 c 0 342 582 350 583 374 583 c 2 476 583 l 2 502 583 512 581 522 574 c 0 534 564 542 549 542 533 c 0 542 504 522 486 490 483 c 1 490 100 l 1 496 100 l 2 522 100 532 98 540 91 c 0 554 81 562 66 562 50 c 0 562 33 552 16 538 7 c 0 530 2 516 0 496 0 c 2 374 0 l 2 350 0 338 3 330 9 c 0 316 19 308 35 308 50 c 0 308 67 318 84 332 93 c 0 342 99 350 100 374 100 c 2 390 100 l 1 390 208 l 1 EndSplineSet MinimumDistance: x25,-1 EndChar StartChar: uni04CC Encoding: 1228 1228 Width: 600 Flags: W HStem: 0 436<395 485> 0.369504 99.6305<385 389 490.031 505.093> 111 97<289 305> 337 99.1444<97 109 211 211 374.907 389.969 491 497> VStem: 110 100<251 337> 390 100<100 140 251 336> Fore 210 337 m 1 210 252 l 2 210 218 260 208 300 208 c 0 340 208 390 231 390 252 c 2 390 336 l 1 351 336 328 354 329 386 c 0 330 419 349 439 395 436 c 1 485 437 l 2 528 437 550 420 551 387 c 0 552 355 529 337 490 337 c 1 490 100 l 1 529 100 552 82 551 50 c 0 550 17 531 -3 485 0 c 1 396 0 l 2 351 0 329 17 329 50 c 0 329 82 351 100 390 100 c 1 390 141 l 1 370 122 339 111 302 111 c 0 202 111 110 135 110 252 c 2 110 337 l 1 71 337 49 355 49 387 c 0 49 420 71 438 116 437 c 2 204 436 l 2 249 435 271 419 271 386 c 0 271 354 249 337 210 337 c 1 EndSplineSet MinimumDistance: x9,-1 EndChar StartChar: uni04CD Encoding: 1229 1229 Width: 600 EndChar StartChar: uni04CE Encoding: 1230 1230 Width: 600 EndChar StartChar: uni04CF Encoding: 1231 1231 Width: 600 EndChar StartChar: uni04D0 Encoding: 1232 1232 Width: 600 Flags: W HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 623 68<272.5 327.5> Ref: 728 N 1 0 0 1 0 120 Ref: 65 N 1 0 0 1 0 0 EndChar StartChar: uni04D1 Encoding: 1233 1233 Width: 600 Flags: W HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 477 68<279.5 334.5> VStem: 42 106<118 128> 389 100<135 185 279 304> Ref: 728 N 1 0 0 1 7 -26 Ref: 97 N 1 0 0 1 0 0 EndChar StartChar: uni04D2 Encoding: 1234 1234 Width: 600 Flags: W HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> VStem: 136 120<666.5 699> 344 120<666.5 699> Ref: 168 N 1 0 0 1 0 89 Ref: 65 N 1 0 0 1 0 0 EndChar StartChar: uni04D3 Encoding: 1235 1235 Width: 600 Flags: W HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> VStem: 42 106<118 128> 142 120<520.5 553> 350 120<520.5 553> 389 100<135 185 279 304> Ref: 168 N 1 0 0 1 6 -57 Ref: 97 N 1 0 0 1 0 0 EndChar StartChar: uni04D4 Encoding: 1236 1236 Width: 600 Flags: W HStem: 0 100<28.7264 53 258 266 368 514> 0 189<556 572> 158 101<204 266> 187 210<428 444> 243 99<368 386> 483 100<140 167 368 493> VStem: -20 218<48 55> 267 100<101 157 343 470> 267 219<260 342> 493 100<396 482> 514 100<100 144> DStem: 168 483 267 471 53 100 203 259 Fore 53 100 m 1 168 483 l 1 154 483 l 2 129 483 118 485 109 492 c 0 96 502 88 518 88 533 c 0 88 550 97 567 112 576 c 0 121 582 128 583 154 583 c 2 593 583 l 1 593 418 l 2 593 391 591 383 584 373 c 0 574 360 559 352 543 352 c 0 526 352 510 361 500 376 c 0 495 384 493 395 493 418 c 2 493 483 l 1 367 483 l 1 367 342 l 1 386 342 l 1 388 377 406 397 436 397 c 0 453 397 470 388 479 373 c 0 485 364 486 357 486 331 c 2 486 253 l 2 486 226 484 218 477 208 c 0 467 195 452 187 436 187 c 0 406 187 387 208 386 243 c 1 367 243 l 1 367 100 l 1 514 100 l 1 514 123 l 2 514 148 516 158 523 168 c 0 533 181 548 189 564 189 c 0 581 189 598 180 607 165 c 0 613 156 614 148 614 123 c 2 614 0 l 1 265 0 l 2 231 0 209 20 209 52 c 0 209 79 231 100 259 100 c 2 267 100 l 1 267 158 l 1 174 158 l 1 157 100 l 1 183 96 198 79 198 53 c 0 198 19 177 0 141 0 c 2 46 0 l 2 2 0 -20 17 -20 50 c 0 -20 67 -11 84 4 93 c 0 13 99 22 100 46 100 c 2 53 100 l 1 267 259 m 1 267 471 l 1 203 259 l 1 267 259 l 1 EndSplineSet EndChar StartChar: uni04D5 Encoding: 1237 1237 Width: 600 Flags: W HStem: -16 100<147 163 431 451> 172 86<363 501> 197 89<194 211> 350 100<194 211 431 441> VStem: -13 101<131 147> 255 356<172 189> Fore 611 172 m 1 360 172 l 1 377 109 400 84 441 84 c 0 463 84 482 89 509 101 c 0 538 113 553 118 566 118 c 0 592 118 612 96 612 66 c 0 612 47 603 32 587 22 c 0 552 0 489 -16 442 -16 c 0 402 -16 379 -9 342 16 c 1 333 5 321 -1 305 -1 c 0 290 -1 279 5 269 16 c 1 232 -7 202 -16 159 -16 c 0 55 -16 -13 48 -13 145 c 0 -13 189 3 216 45 242 c 0 85 268 148 286 195 286 c 0 210 286 229 284 255 281 c 1 255 301 l 2 255 329 235 350 207 350 c 0 190 350 181 348 117 329 c 0 108 326 100 325 94 325 c 0 68 325 46 348 46 376 c 0 46 401 60 417 87 426 c 0 124 438 182 450 207 450 c 0 253 450 288 433 323 394 c 1 359 433 393 450 435 450 c 0 482 450 528 426 563 381 c 0 594 341 611 285 611 218 c 2 611 172 l 1 255 130 m 1 255 189 l 1 232 195 216 197 199 197 c 0 162 197 121 186 101 171 c 0 93 164 88 154 88 142 c 0 88 107 116 84 158 84 c 0 189 84 215 96 255 130 c 1 362 258 m 1 502 258 l 1 498 285 495 299 487 313 c 0 476 335 454 350 432 350 c 0 409 350 386 333 375 307 c 0 369 294 366 281 362 258 c 1 EndSplineSet EndChar StartChar: uni04D6 Encoding: 1238 1238 Width: 600 Flags: W HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 623 68<254.5 309.5> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> Ref: 728 N 1 0 0 1 -18 120 Ref: 69 N 1 0 0 1 0 0 EndChar StartChar: uni04D7 Encoding: 1239 1239 Width: 600 Flags: W HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 477 68<264.5 319.5> Ref: 728 N 1 0 0 1 -8 -26 Ref: 101 N 1 0 0 1 0 0 EndChar StartChar: uni04D8 Encoding: 1240 1240 Width: 600 Flags: W HStem: -14 100<249 293> 241 100<242 463> 367 216<98 102> 497 100<271 306> VStem: 184 382<281.534 293> Fore 466 241 m 1 250 241 l 2 226 241 212 244 204 250 c 0 192 260 184 276 184 291 c 0 184 308 192 325 208 334 c 1 216 340 224 341 250 341 c 2 464 341 l 1 452 432 383 497 290 497 c 0 256 497 220 488 192 473 c 0 164 457 154 444 148 420 c 1 144 396 142 389 134 381 c 0 126 373 112 367 100 367 c 0 84 367 68 375 58 388 c 0 52 397 50 408 50 433 c 2 50 517 l 2 50 542 50 550 56 559 c 0 66 574 82 583 100 583 c 0 116 583 128 577 142 559 c 1 152 563 l 2 208 586 242 597 294 597 c 0 448 597 566 475 566 315 c 2 566 249 l 2 566 97 442 -14 272 -14 c 0 200 -14 132 4 88 36 c 0 54 60 34 86 34 109 c 0 34 136 58 159 84 159 c 0 98 159 110 154 120 143 c 0 148 115 148 115 158 109 c 0 184 94 224 86 268 86 c 0 384 86 461 147 466 241 c 1 EndSplineSet MinimumDistance: x20,-1 EndChar StartChar: afii10846 Encoding: 1241 1241 Width: 600 Flags: W HStem: -16 100<251 302> 157 100<251 445> 350 100<279 316> VStem: 192 364<195.748 209> Fore 446 157 m 1 252 157 l 2 214 157 192 175 192 207 c 0 192 240 214 258 258 257 c 2 448 257 l 1 441 276 430 293 416 307 c 0 388 336 350 350 300 350 c 0 256 350 220 341 194 325 c 0 180 316 174 307 170 289 c 0 166 267 164 261 156 255 c 1 148 247 132 241 120 241 c 0 104 241 88 249 78 262 c 0 72 271 70 281 70 307 c 2 70 384 l 2 70 430 84 450 118 450 c 0 138 450 150 441 156 420 c 1 194 440 242 450 300 450 c 0 450 450 556 350 556 207 c 0 556 146 534 93 494 53 c 0 446 5 384 -16 286 -16 c 0 214 -16 150 -4 108 16 c 1 68 37 44 63 44 89 c 0 44 117 68 140 94 140 c 0 106 140 116 136 124 128 c 1 150 107 156 103 174 97 c 0 198 89 240 84 280 84 c 0 370 84 426 108 446 157 c 1 EndSplineSet MinimumDistance: x17,-1 EndChar StartChar: uni04DA Encoding: 1242 1242 Width: 600 Flags: W HStem: -14 100<249 293> 241 100<242 463> 367 216<98 102> 497 100<271 306> 623 120<186 206 402 406> VStem: 136 120<674 690> 184 382<281.534 293> 344 120<674 690> Fore 466 241 m 1 250 241 l 2 226 241 212 244 204 250 c 0 192 260 184 276 184 291 c 0 184 308 192 325 208 334 c 1 216 340 224 341 250 341 c 2 464 341 l 1 452 432 383 497 290 497 c 0 256 497 220 488 192 473 c 0 164 457 154 444 148 420 c 1 144 396 142 389 134 381 c 0 126 373 112 367 100 367 c 0 84 367 68 375 58 388 c 0 52 397 50 408 50 433 c 2 50 517 l 2 50 542 50 550 56 559 c 0 66 574 82 583 100 583 c 0 116 583 128 577 142 559 c 1 152 563 l 2 208 586 242 597 294 597 c 0 448 597 566 475 566 315 c 2 566 249 l 2 566 97 442 -14 272 -14 c 0 200 -14 132 4 88 36 c 0 54 60 34 86 34 109 c 0 34 136 58 159 84 159 c 0 98 159 110 154 120 143 c 0 148 115 148 115 158 109 c 0 184 94 224 86 268 86 c 0 384 86 461 147 466 241 c 1 196 743 m 0 230 743 256 716 256 682 c 0 256 650 229 623 196 623 c 0 163 623 136 650 136 683 c 0 136 716 163 743 196 743 c 0 404 743 m 0 438 743 464 716 464 682 c 0 464 650 437 623 404 623 c 0 371 623 344 650 344 683 c 0 344 716 371 743 404 743 c 0 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: uni04DB Encoding: 1243 1243 Width: 600 Flags: W HStem: -16 100<251 302> 157 100<251 445> 350 100<279 316> 477 120<188 204 396 412> VStem: 136 120<528 544> 192 364<195.748 209> 344 120<528 544> Fore 446 157 m 1 252 157 l 2 214 157 192 175 192 207 c 0 192 240 214 258 258 257 c 2 448 257 l 1 441 276 430 293 416 307 c 0 388 336 350 350 300 350 c 0 256 350 220 341 194 325 c 0 180 316 174 307 170 289 c 0 166 267 164 261 156 255 c 1 148 247 132 241 120 241 c 0 104 241 88 249 78 262 c 0 72 271 70 281 70 307 c 2 70 384 l 2 70 430 84 450 118 450 c 0 138 450 150 441 156 420 c 1 194 440 242 450 300 450 c 0 450 450 556 350 556 207 c 0 556 146 534 93 494 53 c 0 446 5 384 -16 286 -16 c 0 214 -16 150 -4 108 16 c 1 68 37 44 63 44 89 c 0 44 117 68 140 94 140 c 0 106 140 116 136 124 128 c 1 150 107 156 103 174 97 c 0 198 89 240 84 280 84 c 0 370 84 426 108 446 157 c 1 196 597 m 0 230 597 256 570 256 536 c 0 256 504 229 477 196 477 c 0 163 477 136 504 136 537 c 0 136 570 163 597 196 597 c 0 404 597 m 0 438 597 464 570 464 536 c 0 464 504 437 477 404 477 c 0 371 477 344 504 344 537 c 0 344 570 371 597 404 597 c 0 EndSplineSet MinimumDistance: x31,-1 EndChar StartChar: uni04DC Encoding: 1244 1244 Width: 600 Flags: W HStem: 0 100<24 52 232 249 349.031 367.854 547 568> 483 100<24 33 232 249 349.031 373.464 567 568> 623 120<186 206 394 414> VStem: -23 186<528 535> 136 120<681 688> 250 99<100 259 338 483> 344 120<681 688> 436 186<528 535> DStem: 33 483 132 487 148 330 250 337 467 487 566 483 349 337 451 330 Fore 348 583 m 2 374 583 381 582 390 576 c 0 405 567 414 550 414 533 c 0 414 517 406 502 393 492 c 1 387 484 371 483 349 483 c 1 349 337 l 1 467 487 l 1 446 495 436 509 436 532 c 0 436 560 452 578 481 581 c 0 493 583 494 583 502 583 c 2 556 583 l 2 583 583 592 581 602 574 c 0 614 564 622 549 622 533 c 0 622 500 601 483 566 483 c 1 451 330 l 1 512 298 545 214 547 100 c 1 557 100 l 2 584 100 592 98 602 91 c 0 615 81 623 66 623 50 c 0 623 33 614 16 599 7 c 0 592 3 577 0 557 0 c 2 469 0 l 1 467 148 431 260 349 260 c 1 349 100 l 1 370 100 383 100 390 93 c 1 405 84 414 67 414 50 c 0 414 35 406 19 393 10 c 0 385 3 371 0 348 0 c 2 251 0 l 2 228 0 214 3 206 10 c 0 193 19 185 35 185 50 c 0 185 67 194 84 209 93 c 1 216 100 229 100 250 100 c 1 250 260 l 1 168 260 132 148 130 0 c 1 42 0 l 2 22 0 7 3 0 7 c 0 -15 16 -24 33 -24 50 c 0 -24 66 -16 81 -3 91 c 0 7 98 15 100 42 100 c 2 52 100 l 1 54 214 87 298 148 330 c 1 33 483 l 1 -2 483 -23 500 -23 533 c 0 -23 549 -15 564 -3 574 c 0 7 581 16 583 43 583 c 2 97 583 l 2 105 583 106 583 118 581 c 0 147 578 163 560 163 532 c 0 163 509 153 495 132 487 c 1 250 337 l 1 250 483 l 1 228 483 212 484 206 492 c 1 193 502 185 517 185 533 c 0 185 550 194 567 209 576 c 0 218 582 225 583 251 583 c 2 348 583 l 2 196 743 m 0 230 743 256 716 256 682 c 0 256 650 229 623 196 623 c 0 163 623 136 650 136 683 c 0 136 716 163 743 196 743 c 0 404 743 m 0 438 743 464 716 464 682 c 0 464 650 437 623 404 623 c 0 371 623 344 650 344 683 c 0 344 716 371 743 404 743 c 0 EndSplineSet EndChar StartChar: uni04DD Encoding: 1245 1245 Width: 600 Flags: W HStem: 0 21G<47 118 264 335 481 552> 337 99.1475<27 34 566 571> 417 20G<49 118 254 345 481 550> 477 120<185 205 394 411> VStem: -17 201<384 389> 135 120<528 544> 248 103<101 160 288 337> 343 120<528 544> 415 205<48 52> 415 201<384 389> DStem: 34 337 168 350 170 227 248 287 170 227 248 161 34 100 170 87 351 161 429 227 429 87 565 100 431 350 565 337 351 287 429 227 Fore 335 0 m 2 264 0 l 2 220 0 204 17 204 50 c 0 204 67 214 84 230 93 c 1 238 99 248 100 248 100 c 1 248 161 l 1 170 87 l 1 182 74 184 64 184 50 c 0 184 17 162 0 118 0 c 2 47 0 l 2 25 0 11 2 3 7 c 0 -11 17 -21 33 -21 50 c 0 -21 66 -14 81 1 93 c 0 12 101 18 101 34 100 c 1 170 227 l 1 34 337 l 1 24 337 16 337 7 344 c 0 -9 356 -17 370 -17 387 c 0 -17 403 -11 418 3 428 c 0 13 435 23 437 49 437 c 2 118 437 l 2 142 437 152 435 160 430 c 0 176 420 184 404 184 387 c 0 184 373 180 364 168 350 c 1 248 287 l 1 248 337 l 1 248 337 234 339 224 346 c 0 212 356 204 371 204 387 c 0 204 404 212 421 228 430 c 1 236 436 230 437 254 437 c 2 345 437 l 2 369 437 363 436 371 430 c 1 387 421 395 404 395 387 c 0 395 371 387 356 375 346 c 0 365 339 351 337 351 337 c 1 351 287 l 1 431 350 l 1 419 364 415 373 415 387 c 0 415 404 423 420 439 430 c 0 447 435 457 437 481 437 c 2 550 437 l 2 576 437 586 435 596 428 c 0 610 418 616 403 616 387 c 0 616 370 608 356 592 344 c 0 583 337 575 337 565 337 c 1 429 227 l 1 565 100 l 1 581 101 587 101 598 93 c 0 613 81 620 66 620 50 c 0 620 33 610 17 596 7 c 0 588 2 574 0 552 0 c 2 481 0 l 2 437 0 415 17 415 50 c 0 415 64 417 74 429 87 c 1 351 161 l 1 351 100 l 1 351 100 361 99 369 93 c 1 385 84 395 67 395 50 c 0 395 17 379 0 335 0 c 2 195 597 m 0 229 597 255 570 255 536 c 0 255 504 228 477 195 477 c 0 162 477 135 504 135 537 c 0 135 570 162 597 195 597 c 0 403 597 m 0 437 597 463 570 463 536 c 0 463 504 436 477 403 477 c 0 370 477 343 504 343 537 c 0 343 570 370 597 403 597 c 0 EndSplineSet EndChar StartChar: uni04DE Encoding: 1246 1246 Width: 600 Flags: W HStem: -14 100<286 318> 1 198<110 115> 240 101<222 304> 497 100<286 318> 623 120<187 206 397 414> VStem: 136 120<674 690> 344 120<674 690> 413 104<418 431> 434 104<153 164> Fore 234 341 m 2 276 341 l 2 350 341 356 356 376 366 c 0 398 377 413 400 413 421 c 0 413 464 363 497 300 497 c 0 238 497 190 470 181 430 c 0 174 398 174 398 167 390 c 0 159 382 145 376 131 376 c 0 116 376 101 384 91 397 c 0 84 407 82 415 82 443 c 2 82 531 l 2 82 557 83 565 89 574 c 0 97 588 114 597 131 597 c 0 151 597 160 589 170 564 c 1 205 586 249 597 300 597 c 0 424 597 517 521 517 420 c 0 517 363 494 317 461 298 c 1 467 294 473 290 479 285 c 0 519 253 538 212 538 160 c 0 538 56 446 -14 309 -14 c 0 255 -14 202 -1 153 25 c 1 136 5 129 1 113 1 c 0 78 1 62 22 62 67 c 2 62 133 l 2 62 158 64 169 71 179 c 0 81 192 96 199 112 199 c 0 126 199 139 194 148 185 c 0 155 178 155 178 163 151 c 0 173 115 236 86 302 86 c 0 376 86 434 119 434 162 c 0 434 183 420 203 398 215 c 0 377 226 361 240 293 240 c 2 234 240 l 2 210 240 197 243 188 249 c 0 176 259 168 275 168 290 c 0 168 307 177 324 192 333 c 0 201 339 209 341 234 341 c 2 196 743 m 0 230 743 256 716 256 682 c 0 256 650 229 623 196 623 c 0 163 623 136 650 136 683 c 0 136 716 163 743 196 743 c 0 404 743 m 0 438 743 464 716 464 682 c 0 464 650 437 623 404 623 c 0 371 623 344 650 344 683 c 0 344 716 371 743 404 743 c 0 EndSplineSet MinimumDistance: x18,-1 EndChar StartChar: uni04DF Encoding: 1247 1247 Width: 600 Flags: W HStem: -16 100<281 313> 1 166<121 135> 178 100<234.892 313> 350 100<281 313> 477 120<187 201 395 409> VStem: 136 120<528 544> 188 283<225 235> 344 120<528 544> 396 110<311 317> 417 110<122 129> Fore 255 278 m 2 286 278 l 2 352 278 356 286 370 291 c 0 386 297 396 306 396 315 c 0 396 333 348 350 297 350 c 0 255 350 222 341 194 321 c 1 189 312 l 2 177 290 163 281 142 281 c 0 127 281 111 289 101 301 c 0 94 311 92 321 92 347 c 2 92 384 l 2 92 430 107 450 139 450 c 0 154 450 163 443 171 424 c 1 210 442 251 450 300 450 c 0 420 450 506 393 506 313 c 0 506 281 491 252 471 235 c 1 471 225 l 1 504 205 527 164 527 125 c 0 527 43 433 -16 304 -16 c 0 247 -16 196 -6 156 13 c 1 145 4 137 1 124 1 c 0 106 1 90 9 80 25 c 0 75 34 73 43 73 67 c 2 73 100 l 2 73 127 75 136 83 146 c 0 93 160 107 167 124 167 c 0 150 167 166 153 175 123 c 1 204 97 246 84 300 84 c 0 364 84 417 104 417 127 c 0 417 140 404 154 383 162 c 0 366 169 342 178 291 178 c 2 249 178 l 2 210 178 188 196 188 228 c 0 188 261 210 279 255 278 c 2 196 597 m 0 230 597 256 570 256 536 c 0 256 504 229 477 196 477 c 0 163 477 136 504 136 537 c 0 136 570 163 597 196 597 c 0 404 597 m 0 438 597 464 570 464 536 c 0 464 504 437 477 404 477 c 0 371 477 344 504 344 537 c 0 344 570 371 597 404 597 c 0 EndSplineSet MinimumDistance: x17,-1 EndChar StartChar: uni04E0 Encoding: 1248 1248 Width: 600 Flags: W HStem: -14 100<286 318> 1 198<110 115> 240 101<222 304> 497 100<286 318> VStem: 413 104<418 431> 434 104<153 164> Fore 234 341 m 2 276 341 l 2 350 341 356 356 376 366 c 0 398 377 413 400 413 421 c 0 413 464 363 497 300 497 c 0 238 497 190 470 181 430 c 0 174 398 174 398 167 390 c 0 159 382 145 376 131 376 c 0 116 376 101 384 91 397 c 0 84 407 82 415 82 443 c 2 82 531 l 2 82 557 83 565 89 574 c 0 97 588 114 597 131 597 c 0 151 597 160 589 170 564 c 1 205 586 249 597 300 597 c 0 424 597 517 521 517 420 c 0 517 363 494 317 461 298 c 1 467 294 473 290 479 285 c 0 519 253 538 212 538 160 c 0 538 56 446 -14 309 -14 c 0 255 -14 202 -1 153 25 c 1 136 5 129 1 113 1 c 0 78 1 62 22 62 67 c 2 62 133 l 2 62 158 64 169 71 179 c 0 81 192 96 199 112 199 c 0 126 199 139 194 148 185 c 0 155 178 155 178 163 151 c 0 173 115 236 86 302 86 c 0 376 86 434 119 434 162 c 0 434 183 420 203 398 215 c 0 377 226 361 240 293 240 c 2 234 240 l 2 210 240 197 243 188 249 c 0 176 259 168 275 168 290 c 0 168 307 177 324 192 333 c 0 201 339 209 341 234 341 c 2 EndSplineSet MinimumDistance: x18,-1 EndChar StartChar: uni04E1 Encoding: 1249 1249 Width: 600 Flags: W HStem: -16 100<281 313> 1 166<121 126> 178 100<234.892 313> 350 100<281 313> VStem: 188 283<225 235> 396 110<311 317> 417 110<122 129> Fore 255 278 m 2 286 278 l 2 352 278 356 286 370 291 c 0 386 297 396 306 396 315 c 0 396 333 348 350 297 350 c 0 255 350 222 341 194 321 c 1 189 312 l 2 177 290 163 281 142 281 c 0 127 281 111 289 101 301 c 0 94 311 92 321 92 347 c 2 92 384 l 2 92 430 107 450 139 450 c 0 154 450 163 443 171 424 c 1 210 442 251 450 300 450 c 0 420 450 506 393 506 313 c 0 506 281 491 252 471 235 c 1 471 225 l 1 504 205 527 164 527 125 c 0 527 43 433 -16 304 -16 c 0 247 -16 196 -6 156 13 c 1 145 4 137 1 124 1 c 0 106 1 90 9 80 25 c 0 75 34 73 43 73 67 c 2 73 100 l 2 73 127 75 136 83 146 c 0 93 160 107 167 124 167 c 0 150 167 166 153 175 123 c 1 204 97 246 84 300 84 c 0 364 84 417 104 417 127 c 0 417 140 404 154 383 162 c 0 366 169 342 178 291 178 c 2 249 178 l 2 210 178 188 196 188 228 c 0 188 261 210 279 255 278 c 2 EndSplineSet MinimumDistance: x17,-1 EndChar StartChar: uni04E2 Encoding: 1250 1250 Width: 600 Flags: W HStem: 0 100<67 92 194 229 373 406 508 533> 483 100<194 229 373 406> 623 80<165 424> VStem: 41 233<528 535> 93 100<100 141 257 483> 125 350<656 665> 326 233<528 535> 407 100<100 325 441 483> DStem: 407 441 407 326 193 256 193 141 Fore 407 326 m 1 193 141 l 1 193 100 l 1 208 100 l 2 234 100 244 98 253 91 c 0 266 81 274 66 274 50 c 0 274 33 265 16 250 7 c 0 242 2 229 0 208 0 c 2 87 0 l 2 63 0 50 3 41 9 c 0 29 19 21 35 21 50 c 0 21 67 30 84 45 93 c 0 54 99 62 100 87 100 c 2 93 100 l 1 93 483 l 1 60 486 41 504 41 533 c 0 41 550 50 567 65 576 c 0 74 582 82 583 107 583 c 2 208 583 l 2 235 583 244 581 253 574 c 0 266 564 274 549 274 533 c 0 274 516 265 499 250 490 c 0 241 485 232 483 208 483 c 2 193 483 l 1 193 256 l 1 407 441 l 1 407 483 l 1 392 483 l 2 366 483 357 485 347 492 c 0 334 502 326 517 326 533 c 0 326 550 335 567 350 576 c 0 359 582 367 583 392 583 c 2 493 583 l 2 520 583 529 581 539 574 c 0 551 564 559 549 559 533 c 0 559 504 540 486 507 483 c 1 507 100 l 1 513 100 l 2 540 100 549 98 558 91 c 0 571 81 579 66 579 50 c 0 579 33 570 16 555 7 c 0 547 2 534 0 513 0 c 2 392 0 l 2 368 0 356 3 347 9 c 0 334 19 326 35 326 50 c 0 326 67 335 84 350 93 c 0 359 99 368 100 392 100 c 2 407 100 l 1 407 326 l 1 178 703 m 2 422 703 l 2 445 703 457 700 464 692 c 0 470 685 475 671 475 663 c 0 475 638 455 623 422 623 c 2 178 623 l 2 153 623 145 625 136 635 c 0 130 643 125 655 125 663 c 0 125 688 144 703 178 703 c 2 EndSplineSet MinimumDistance: x35,-1 EndChar StartChar: uni04E3 Encoding: 1251 1251 Width: 600 Flags: W HStem: 0 21G<98 187 413 502> 0.144728 99.8553<91 91 192.031 207.093 399 406 507.031 522.093> 337 99.1444<79 91 193 193 391.955 406.969 508 511> 477 80<175 431> VStem: 31 222<48 50 50.0314 61.2516 384 389> 92 100<100 113 215 337> 125 350<512 519> 346 222<48 50 50.0314 61.2516 374.748 386> 407 100<100 223 325 336> DStem: 407 325 407 224 192 214 192 113 Fore 192 337 m 1 192 214 l 1 407 325 l 1 407 336 l 1 368 336 346 354 346 386 c 0 347 419 367 439 412 436 c 1 502 437 l 2 546 437 568 420 568 387 c 0 569 355 546 337 507 337 c 1 507 100 l 1 546 100 569 82 568 50 c 0 568 17 548 -3 502 0 c 1 413 0 l 2 368 0 346 17 346 50 c 0 346 82 368 100 407 100 c 1 407 224 l 1 192 113 l 1 192 100 l 1 231 100 254 82 253 50 c 0 253 17 233 -3 187 0 c 1 98 0 l 2 53 0 31 17 31 50 c 0 31 82 53 100 92 100 c 1 92 337 l 1 53 337 31 355 31 387 c 0 31 420 53 438 98 437 c 2 186 436 l 2 231 435 253 419 253 386 c 0 253 354 231 337 192 337 c 1 178 557 m 2 422 557 l 2 445 557 457 554 464 546 c 0 470 539 475 525 475 517 c 0 475 492 455 477 422 477 c 2 178 477 l 2 153 477 145 479 136 489 c 0 130 497 125 509 125 517 c 0 125 542 144 557 178 557 c 2 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: uni04E4 Encoding: 1252 1252 Width: 600 Flags: W HStem: 0 100<67 92 194 229 373 406 508 533> 483 100<194 229 373 406> 623 120<192 198 394 409> VStem: 41 233<528 535> 93 100<100 141 257 483> 136 120<681 688> 326 233<528 535> 344 120<681 688> 407 100<100 325 441 483> DStem: 407 441 407 326 193 256 193 141 Fore 407 326 m 1 193 141 l 1 193 100 l 1 208 100 l 2 234 100 244 98 253 91 c 0 266 81 274 66 274 50 c 0 274 33 265 16 250 7 c 0 242 2 229 0 208 0 c 2 87 0 l 2 63 0 50 3 41 9 c 0 29 19 21 35 21 50 c 0 21 67 30 84 45 93 c 0 54 99 62 100 87 100 c 2 93 100 l 1 93 483 l 1 60 486 41 504 41 533 c 0 41 550 50 567 65 576 c 0 74 582 82 583 107 583 c 2 208 583 l 2 235 583 244 581 253 574 c 0 266 564 274 549 274 533 c 0 274 516 265 499 250 490 c 0 241 485 232 483 208 483 c 2 193 483 l 1 193 256 l 1 407 441 l 1 407 483 l 1 392 483 l 2 366 483 357 485 347 492 c 0 334 502 326 517 326 533 c 0 326 550 335 567 350 576 c 0 359 582 367 583 392 583 c 2 493 583 l 2 520 583 529 581 539 574 c 0 551 564 559 549 559 533 c 0 559 504 540 486 507 483 c 1 507 100 l 1 513 100 l 2 540 100 549 98 558 91 c 0 571 81 579 66 579 50 c 0 579 33 570 16 555 7 c 0 547 2 534 0 513 0 c 2 392 0 l 2 368 0 356 3 347 9 c 0 334 19 326 35 326 50 c 0 326 67 335 84 350 93 c 0 359 99 368 100 392 100 c 2 407 100 l 1 407 326 l 1 196 743 m 0 230 743 256 716 256 682 c 0 256 650 229 623 196 623 c 0 163 623 136 650 136 683 c 0 136 716 163 743 196 743 c 0 404 743 m 0 438 743 464 716 464 682 c 0 464 650 437 623 404 623 c 0 371 623 344 650 344 683 c 0 344 716 371 743 404 743 c 0 EndSplineSet MinimumDistance: x35,-1 EndChar StartChar: uni04E5 Encoding: 1253 1253 Width: 600 Flags: W HStem: 0 21G<98 187 413 502> 0.144728 99.8553<91 91 192.031 207.325 399 406 507.031 522.093> 337 99.1444<79 91 193 198 391.722 406.969 508 511> 477 120<186 198 399 414> VStem: 31 222<48 50 50.0314 61.2516 384 389> 92 100<100 113 215 337> 136 120<528 544> 344 120<528 544> 346 222<48 50 50.0314 61.2516 374.748 386> 407 100<100 223 325 336> DStem: 407 325 407 224 192 214 192 113 Fore 192 337 m 1 192 214 l 1 407 325 l 1 407 336 l 1 368 336 346 354 346 386 c 0 347 419 367 439 412 436 c 1 502 437 l 2 546 437 568 420 568 387 c 0 569 355 546 337 507 337 c 1 507 100 l 1 546 100 569 82 568 50 c 0 568 17 548 -3 502 0 c 1 413 0 l 2 368 0 346 17 346 50 c 0 346 82 368 100 407 100 c 1 407 224 l 1 192 113 l 1 192 100 l 1 231 100 254 82 253 50 c 0 253 17 233 -3 187 0 c 1 98 0 l 2 53 0 31 17 31 50 c 0 31 82 53 100 92 100 c 1 92 337 l 1 53 337 31 355 31 387 c 0 31 420 53 438 98 437 c 2 186 436 l 2 231 435 253 419 253 386 c 0 253 354 231 337 192 337 c 1 196 597 m 0 230 597 256 570 256 536 c 0 256 504 229 477 196 477 c 0 163 477 136 504 136 537 c 0 136 570 163 597 196 597 c 0 404 597 m 0 438 597 464 570 464 536 c 0 464 504 437 477 404 477 c 0 371 477 344 504 344 537 c 0 344 570 371 597 404 597 c 0 EndSplineSet MinimumDistance: x8,-1 EndChar StartChar: uni04E6 Encoding: 1254 1254 Width: 600 Flags: W HStem: -14 100<251 348.5> 497 100<251 333.5> VStem: 21 100<235.5 348> 136 120<666.5 699> 344 120<666.5 699> 479 100<234 335> Ref: 168 N 1 0 0 1 0 89 Ref: 79 N 1 0 0 1 0 0 EndChar StartChar: uni04E7 Encoding: 1255 1255 Width: 600 Flags: W HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> VStem: 42 100<179.5 255> 136 120<520.5 553> 344 120<520.5 553> 458 100<179.5 254> Ref: 168 N 1 0 0 1 0 -57 Ref: 111 N 1 0 0 1 0 0 EndChar StartChar: uni04E8 Encoding: 1256 1256 Width: 600 Flags: W HStem: -14 100<293 309> 237 100<129 472> 497 100<293 309> VStem: 21 558<274 306> Fore 300 597 m 0 367 597 432 570 485 520 c 0 548 460 579 383 579 287 c 0 579 123 452 -14 300 -14 c 0 146 -14 21 123 21 292 c 0 21 460 146 597 300 597 c 0 473 237 m 1 128 237 l 1 149 150 218 86 300 86 c 0 381 86 452 151 473 237 c 1 474 337 m 1 456 429 385 497 300 497 c 0 215 497 144 428 125 337 c 1 474 337 l 1 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: uni04E9 Encoding: 1257 1257 Width: 600 Flags: W HStem: -16 100<282 314> 178 80<150 450> 350 100<282 314> VStem: 42 516<208 224> Fore 303 450 m 0 444 450 558 346 558 217 c 0 558 87 444 -16 300 -16 c 0 156 -16 42 87 42 217 c 0 42 349 155 450 303 450 c 0 451 258 m 1 431 312 372 350 302 350 c 0 228 350 169 313 149 258 c 1 451 258 l 1 451 178 m 1 149 178 l 1 168 123 227 84 300 84 c 0 373 84 432 123 451 178 c 1 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni04EA Encoding: 1258 1258 Width: 600 Flags: W HStem: -14 100<293 309> 237 100<129 472> 497 100<293 309> 623 120<185.067 198 393.067 406> VStem: 21 558<274 306> 136 120<674 690> 344 120<674 690> Fore 300 597 m 0 367 597 432 570 485 520 c 0 548 460 579 383 579 287 c 0 579 123 452 -14 300 -14 c 0 146 -14 21 123 21 292 c 0 21 460 146 597 300 597 c 0 473 237 m 1 128 237 l 1 149 150 218 86 300 86 c 0 381 86 452 151 473 237 c 1 474 337 m 1 456 429 385 497 300 497 c 0 215 497 144 428 125 337 c 1 474 337 l 1 196 743 m 0 230 743 256 716 256 682 c 0 256 650 229 623 196 623 c 0 163 623 136 650 136 683 c 0 136 716 163 743 196 743 c 0 404 743 m 0 438 743 464 716 464 682 c 0 464 650 437 623 404 623 c 0 371 623 344 650 344 683 c 0 344 716 371 743 404 743 c 0 EndSplineSet MinimumDistance: x16,-1 EndChar StartChar: uni04EB Encoding: 1259 1259 Width: 600 Flags: W HStem: -16 100<282 314> 178 80<150 450> 350 100<282 314> 477 120<186 202 394 410> VStem: 42 516<208 224> 136 120<528 544> 344 120<528 544> Fore 303 450 m 0 444 450 558 346 558 217 c 0 558 87 444 -16 300 -16 c 0 156 -16 42 87 42 217 c 0 42 349 155 450 303 450 c 0 451 258 m 1 431 312 372 350 302 350 c 0 228 350 169 313 149 258 c 1 451 258 l 1 451 178 m 1 149 178 l 1 168 123 227 84 300 84 c 0 373 84 432 123 451 178 c 1 196 597 m 0 230 597 256 570 256 536 c 0 256 504 229 477 196 477 c 0 163 477 136 504 136 537 c 0 136 570 163 597 196 597 c 0 404 597 m 0 438 597 464 570 464 536 c 0 464 504 437 477 404 477 c 0 371 477 344 504 344 537 c 0 344 570 371 597 404 597 c 0 EndSplineSet MinimumDistance: x15,-1 EndChar StartChar: uni04EC Encoding: 1260 1260 Width: 600 Flags: W HStem: -14 100<249 293> 241 100<242 463> 367 216<98 102> 497 100<271 306> 623 120<186 206 402 406> VStem: 136 120<674 690> 184 382<281.534 293> 344 120<674 690> Fore 466 241 m 1 250 241 l 2 226 241 212 244 204 250 c 0 192 260 184 276 184 291 c 0 184 308 192 325 208 334 c 1 216 340 224 341 250 341 c 2 464 341 l 1 452 432 383 497 290 497 c 0 256 497 220 488 192 473 c 0 164 457 154 444 148 420 c 1 144 396 142 389 134 381 c 0 126 373 112 367 100 367 c 0 84 367 68 375 58 388 c 0 52 397 50 408 50 433 c 2 50 517 l 2 50 542 50 550 56 559 c 0 66 574 82 583 100 583 c 0 116 583 128 577 142 559 c 1 152 563 l 2 208 586 242 597 294 597 c 0 448 597 566 475 566 315 c 2 566 249 l 2 566 97 442 -14 272 -14 c 0 200 -14 132 4 88 36 c 0 54 60 34 86 34 109 c 0 34 136 58 159 84 159 c 0 98 159 110 154 120 143 c 0 148 115 148 115 158 109 c 0 184 94 224 86 268 86 c 0 384 86 461 147 466 241 c 1 196 743 m 0 230 743 256 716 256 682 c 0 256 650 229 623 196 623 c 0 163 623 136 650 136 683 c 0 136 716 163 743 196 743 c 0 404 743 m 0 438 743 464 716 464 682 c 0 464 650 437 623 404 623 c 0 371 623 344 650 344 683 c 0 344 716 371 743 404 743 c 0 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: uni04ED Encoding: 1261 1261 Width: 600 Flags: W HStem: -16 100<251 302> 157 100<251 445> 350 100<279 316> 477 120<188 204 396 412> VStem: 136 120<528 544> 192 364<195.748 209> 344 120<528 544> Fore 446 157 m 1 252 157 l 2 214 157 192 175 192 207 c 0 192 240 214 258 258 257 c 2 448 257 l 1 441 276 430 293 416 307 c 0 388 336 350 350 300 350 c 0 256 350 220 341 194 325 c 0 180 316 174 307 170 289 c 0 166 267 164 261 156 255 c 1 148 247 132 241 120 241 c 0 104 241 88 249 78 262 c 0 72 271 70 281 70 307 c 2 70 384 l 2 70 430 84 450 118 450 c 0 138 450 150 441 156 420 c 1 194 440 242 450 300 450 c 0 450 450 556 350 556 207 c 0 556 146 534 93 494 53 c 0 446 5 384 -16 286 -16 c 0 214 -16 150 -4 108 16 c 1 68 37 44 63 44 89 c 0 44 117 68 140 94 140 c 0 106 140 116 136 124 128 c 1 150 107 156 103 174 97 c 0 198 89 240 84 280 84 c 0 370 84 426 108 446 157 c 1 196 597 m 0 230 597 256 570 256 536 c 0 256 504 229 477 196 477 c 0 163 477 136 504 136 537 c 0 136 570 163 597 196 597 c 0 404 597 m 0 438 597 464 570 464 536 c 0 464 504 437 477 404 477 c 0 371 477 344 504 344 537 c 0 344 570 371 597 404 597 c 0 EndSplineSet MinimumDistance: x31,-1 EndChar StartChar: uni04EE Encoding: 1262 1262 Width: 600 Flags: W HStem: 0 21G<184 294> 0.957314 99.0427<164 176> 563 20G<86 178 424 514> 623 80<164 426> VStem: 20 224<528 535> 118 242<48 52> 125 350<656 665> 356 224<528 535> DStem: 244 216 522 483 176 100 306 100 394 484 522 483 300 312 306 100 Fore 306 100 m 1 340 98 360 80 360 50 c 0 360 33 352 16 336 7 c 0 328 2 316 0 294 0 c 2 184 0 l 2 160 0 148 3 138 9 c 1 126 19 118 34 118 50 c 0 118 81 140 100 176 100 c 1 244 216 l 1 78 483 l 1 42 485 20 503 20 533 c 0 20 560 38 578 66 581 c 0 78 583 80 583 86 583 c 2 178 583 l 2 206 583 214 581 224 574 c 0 236 564 244 549 244 533 c 0 244 511 236 498 206 484 c 1 300 312 l 1 394 484 l 1 366 498 356 511 356 533 c 0 356 548 364 564 378 573 c 1 386 580 402 583 424 583 c 2 514 583 l 2 540 583 548 581 558 574 c 0 572 564 580 549 580 533 c 0 580 502 558 484 522 483 c 1 306 100 l 1 178 703 m 2 422 703 l 2 445 703 457 700 464 692 c 0 470 685 475 671 475 663 c 0 475 638 455 623 422 623 c 2 178 623 l 2 153 623 145 625 136 635 c 0 130 643 125 655 125 663 c 0 125 688 144 703 178 703 c 2 EndSplineSet MinimumDistance: x24,-1 x19,24 x6,1 EndChar StartChar: uni04EF Encoding: 1263 1263 Width: 600 Flags: W HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> 477 80<178 422> Ref: 175 N 1 0 0 1 0 -69 Ref: 121 N 1 0 0 1 0 0 EndChar StartChar: uni04F0 Encoding: 1264 1264 Width: 600 Flags: W HStem: 0 21G<184 294> 0.957314 99.0427<164 176> 563 20G<86 178 424 514> 623 120<186 206 394 406> VStem: 20 224<528 535> 118 242<48 52> 136 120<681 688> 344 120<681 688> 356 224<528 535> DStem: 244 216 522 483 176 100 306 100 394 484 522 483 300 312 306 100 Fore 306 100 m 1 340 98 360 80 360 50 c 0 360 33 352 16 336 7 c 0 328 2 316 0 294 0 c 2 184 0 l 2 160 0 148 3 138 9 c 1 126 19 118 34 118 50 c 0 118 81 140 100 176 100 c 1 244 216 l 1 78 483 l 1 42 485 20 503 20 533 c 0 20 560 38 578 66 581 c 0 78 583 80 583 86 583 c 2 178 583 l 2 206 583 214 581 224 574 c 0 236 564 244 549 244 533 c 0 244 511 236 498 206 484 c 1 300 312 l 1 394 484 l 1 366 498 356 511 356 533 c 0 356 548 364 564 378 573 c 1 386 580 402 583 424 583 c 2 514 583 l 2 540 583 548 581 558 574 c 0 572 564 580 549 580 533 c 0 580 502 558 484 522 483 c 1 306 100 l 1 196 743 m 0 230 743 256 716 256 682 c 0 256 650 229 623 196 623 c 0 163 623 136 650 136 683 c 0 136 716 163 743 196 743 c 0 404 743 m 0 438 743 464 716 464 682 c 0 464 650 437 623 404 623 c 0 371 623 344 650 344 683 c 0 344 716 371 743 404 743 c 0 EndSplineSet MinimumDistance: x24,-1 x19,24 x6,1 EndChar StartChar: uni04F1 Encoding: 1265 1265 Width: 600 Flags: W HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> VStem: 136 120<520.5 553> 344 120<520.5 553> Ref: 168 N 1 0 0 1 0 -57 Ref: 121 N 1 0 0 1 0 0 EndChar StartChar: uni04F2 Encoding: 1266 1266 Width: 600 Flags: W HStem: 0 21G<184 294> 0.957314 99.0427<164 176> 563 20G<86 178 424 514> VStem: 20 224<528 535> 118 242<48 52> 356 224<528 535> DStem: 244 216 522 483 176 100 306 100 248 806 291 749 146 696 189 639 394 484 522 483 300 312 306 100 412 806 455 749 310 696 353 639 Fore 306 100 m 1 340 98 360 80 360 50 c 0 360 33 352 16 336 7 c 0 328 2 316 0 294 0 c 2 184 0 l 2 160 0 148 3 138 9 c 1 126 19 118 34 118 50 c 0 118 81 140 100 176 100 c 1 244 216 l 1 78 483 l 1 42 485 20 503 20 533 c 0 20 560 38 578 66 581 c 0 78 583 80 583 86 583 c 2 178 583 l 2 206 583 214 581 224 574 c 0 236 564 244 549 244 533 c 0 244 511 236 498 206 484 c 1 300 312 l 1 394 484 l 1 366 498 356 511 356 533 c 0 356 548 364 564 378 573 c 1 386 580 402 583 424 583 c 2 514 583 l 2 540 583 548 581 558 574 c 0 572 564 580 549 580 533 c 0 580 502 558 484 522 483 c 1 306 100 l 1 291 749 m 2 189 639 l 2 180 629 169 623 160 623 c 0 142 623 125 641 125 660 c 0 125 671 126 673 146 696 c 1 248 806 l 2 259 817 266 821 277 821 c 0 295 821 311 804 311 785 c 0 311 774 306 765 291 749 c 2 455 749 m 2 353 639 l 2 343 629 333 623 324 623 c 0 306 623 289 641 289 660 c 0 289 671 290 673 310 696 c 1 412 806 l 2 422 817 430 821 441 821 c 0 459 821 475 804 475 785 c 0 475 774 470 765 455 749 c 2 EndSplineSet MinimumDistance: x24,-1 x19,24 x6,1 EndChar StartChar: uni04F3 Encoding: 1267 1267 Width: 600 Flags: W HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> DStem: 248 660 291 603 146 550 189 493 412 660 455 603 310 550 353 493 Ref: 733 N 1 0 0 1 0 -19 Ref: 121 N 1 0 0 1 0 0 EndChar StartChar: uni04F4 Encoding: 1268 1268 Width: 600 Flags: W HStem: 0 100<358 389 491 502> 170 100<271 294> 483 100<191 214 358 389> 623 120<189 206 393.067 406> VStem: 38 234<528 535> 90 100<308 483> 136 120<681 688> 308 234<528 535> 344 120<681 688> 390 100<100 207 308 483> Fore 390 208 m 1 363 185 329 170 284 170 c 0 190 170 96 185 90 305 c 1 90 483 l 1 58 486 38 504 38 533 c 0 38 550 48 567 62 576 c 0 72 582 80 583 104 583 c 2 206 583 l 2 232 583 242 581 250 574 c 0 264 564 272 549 272 533 c 0 272 516 262 499 248 490 c 0 238 485 230 483 206 483 c 2 190 483 l 1 190 308 l 1 202 282 247 270 290 270 c 0 333 270 369 282 390 308 c 1 390 483 l 1 374 483 l 2 348 483 340 485 330 492 c 0 316 502 308 517 308 533 c 0 308 550 318 567 332 576 c 0 342 582 350 583 374 583 c 2 476 583 l 2 502 583 512 581 522 574 c 0 534 564 542 549 542 533 c 0 542 504 522 486 490 483 c 1 490 100 l 1 496 100 l 2 522 100 532 98 540 91 c 0 554 81 562 66 562 50 c 0 562 33 552 16 538 7 c 0 530 2 516 0 496 0 c 2 374 0 l 2 350 0 338 3 330 9 c 0 316 19 308 35 308 50 c 0 308 67 318 84 332 93 c 0 342 99 350 100 374 100 c 2 390 100 l 1 390 208 l 1 196 743 m 0 230 743 256 716 256 682 c 0 256 650 229 623 196 623 c 0 163 623 136 650 136 683 c 0 136 716 163 743 196 743 c 0 404 743 m 0 438 743 464 716 464 682 c 0 464 650 437 623 404 623 c 0 371 623 344 650 344 683 c 0 344 716 371 743 404 743 c 0 EndSplineSet MinimumDistance: x25,-1 EndChar StartChar: uni04F5 Encoding: 1269 1269 Width: 600 Flags: W HStem: 0 436<395 485> 0.369504 99.6305<385 389 490.031 505.093> 111 97<289 305> 337 99.1444<97 109 211 211 374.907 389.969 491 497> 477 120<193 206 394 406> VStem: 110 100<251 337> 136 120<528 544> 344 120<528 544> 390 100<100 140 251 336> Fore 210 337 m 1 210 252 l 2 210 218 260 208 300 208 c 0 340 208 390 231 390 252 c 2 390 336 l 1 351 336 328 354 329 386 c 0 330 419 349 439 395 436 c 1 485 437 l 2 528 437 550 420 551 387 c 0 552 355 529 337 490 337 c 1 490 100 l 1 529 100 552 82 551 50 c 0 550 17 531 -3 485 0 c 1 396 0 l 2 351 0 329 17 329 50 c 0 329 82 351 100 390 100 c 1 390 141 l 1 370 122 339 111 302 111 c 0 202 111 110 135 110 252 c 2 110 337 l 1 71 337 49 355 49 387 c 0 49 420 71 438 116 437 c 2 204 436 l 2 249 435 271 419 271 386 c 0 271 354 249 337 210 337 c 1 196 597 m 0 230 597 256 570 256 536 c 0 256 504 229 477 196 477 c 0 163 477 136 504 136 537 c 0 136 570 163 597 196 597 c 0 404 597 m 0 438 597 464 570 464 536 c 0 464 504 437 477 404 477 c 0 371 477 344 504 344 537 c 0 344 570 371 597 404 597 c 0 EndSplineSet MinimumDistance: x9,-1 EndChar StartChar: uni04F6 Encoding: 1270 1270 Width: 600 EndChar StartChar: uni04F7 Encoding: 1271 1271 Width: 600 EndChar StartChar: uni04F8 Encoding: 1272 1272 Width: 600 Flags: W HStem: 0 100<27 46 148 218 459 460 562 571> 283 100<148 215> 483 100<27 46 148 187 443 460 561.016 579.601> 623 120<187 203 395 411> VStem: -21 260<528 535> 47 100<101 282 383 483> 136 120<681 688> 311 106<188 194> 344 120<681 688> 461 100<100 483> Fore 561 483 m 1 561 100 l 1 584 100 595 98 601 91 c 1 615 81 621 66 621 50 c 0 621 17 599 0 555 0 c 2 466 0 l 2 442 0 430 3 422 10 c 1 408 19 400 35 400 50 c 0 400 67 410 84 424 93 c 1 430 100 440 100 461 100 c 1 461 483 l 1 440 483 427 484 422 492 c 1 408 502 400 517 400 533 c 0 400 550 410 567 424 576 c 0 434 582 440 583 466 583 c 2 555 583 l 2 583 583 591 581 601 574 c 0 615 564 621 549 621 533 c 0 621 516 613 499 597 490 c 1 592 485 581 483 561 483 c 1 147 383 m 1 179 383 l 2 273 383 323 366 367 317 c 0 399 282 417 235 417 189 c 0 417 78 327 0 199 0 c 2 45 0 l 2 19 0 11 1 3 7 c 1 -13 16 -21 33 -21 50 c 0 -21 65 -13 81 -1 91 c 1 6 99 24 100 47 100 c 1 47 483 l 1 27 483 8 483 3 490 c 1 -13 499 -21 516 -21 533 c 0 -21 548 -13 564 -1 573 c 0 7 580 21 583 45 583 c 2 173 583 l 2 193 583 207 580 215 576 c 0 229 567 239 550 239 533 c 0 239 517 231 502 217 492 c 0 207 485 199 483 173 483 c 2 147 483 l 1 147 383 l 1 147 100 m 1 199 100 l 2 269 100 311 135 311 192 c 0 311 248 269 283 199 283 c 2 147 283 l 1 147 100 l 1 196 743 m 0 230 743 256 716 256 682 c 0 256 650 229 623 196 623 c 0 163 623 136 650 136 683 c 0 136 716 163 743 196 743 c 0 404 743 m 0 438 743 464 716 464 682 c 0 464 650 437 623 404 623 c 0 371 623 344 650 344 683 c 0 344 716 371 743 404 743 c 0 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni04F9 Encoding: 1273 1273 Width: 600 Flags: W HStem: 0 100<52 52 153.125 231 456 456 558 558> 180 100<153.125 215> 417 20G<59 147> 477 120<185.067 206 394 408> VStem: 53 100<101 179 280 337> 136 120<528 544> 292 102<136 145> 344 120<528 544> 406 202<48 50 50.0314 64.4753 371.525 386> 457 100<100 336> Fore 153 337 m 1 153 280 l 1 206 280 l 2 348 280 392 241 394 143 c 1 392 8 273 0 227 0 c 2 59 0 l 2 13 0 -9 17 -9 50 c 0 -9 82 13 100 53 100 c 1 53 337 l 1 13 337 -9 355 -9 387 c 0 -9 420 11 437 59 437 c 2 147 437 l 2 194 437 213 420 213 387 c 0 213 355 191 337 153 337 c 1 153 100 m 1 259 100 294 97 292 136 c 1 292 180 251 180 153 180 c 1 153 100 l 1 457 336 m 1 418 336 406 354 406 386 c 0 407 419 427 435 472 436 c 2 542 437 l 2 586 438 608 420 608 387 c 0 609 355 596 337 557 337 c 1 557 100 l 1 596 100 609 82 608 50 c 0 608 17 587 0 542 0 c 2 473 0 l 2 428 0 406 17 406 50 c 0 406 82 418 100 457 100 c 1 457 336 l 1 196 597 m 0 230 597 256 570 256 536 c 0 256 504 229 477 196 477 c 0 163 477 136 504 136 537 c 0 136 570 163 597 196 597 c 0 404 597 m 0 438 597 464 570 464 536 c 0 464 504 437 477 404 477 c 0 371 477 344 504 344 537 c 0 344 570 371 597 404 597 c 0 EndSplineSet MinimumDistance: x21,-1 EndChar StartChar: afii57799 Encoding: 1456 1456 Width: 0 Flags: W HStem: -236 58<298 304> -119 59<298 304> Fore 300 -178 m 0 316 -178 329 -191 329 -207 c 0 329 -223 316 -236 300 -236 c 0 284 -236 271 -223 271 -207 c 0 271 -191 284 -178 300 -178 c 0 300 -60 m 0 316 -60 329 -73 329 -89 c 0 329 -106 316 -119 300 -119 c 0 284 -119 271 -106 271 -89 c 0 271 -73 284 -60 300 -60 c 0 EndSplineSet EndChar StartChar: afii57801 Encoding: 1457 1457 Width: 0 Flags: W HStem: -236 58<239 243 416 426> -119 59<180 186 296 302 416 426> VStem: 153 59<-93 -87> 212 59<-209 -203> 271 58<-93 -87> 388 59<-209 -203 -93 -87> Fore 241 -178 m 0 257 -178 271 -191 271 -207 c 0 271 -223 257 -236 241 -236 c 0 225 -236 212 -223 212 -207 c 0 212 -191 225 -178 241 -178 c 0 182 -60 m 0 199 -60 212 -73 212 -89 c 0 212 -106 199 -119 182 -119 c 0 166 -119 153 -106 153 -89 c 0 153 -73 166 -60 182 -60 c 0 418 -178 m 0 434 -178 447 -191 447 -207 c 0 447 -223 434 -236 418 -236 c 0 401 -236 388 -223 388 -207 c 0 388 -191 401 -178 418 -178 c 0 418 -60 m 0 434 -60 447 -73 447 -89 c 0 447 -106 434 -119 418 -119 c 0 401 -119 388 -106 388 -89 c 0 388 -73 401 -60 418 -60 c 0 300 -60 m 0 316 -60 329 -73 329 -89 c 0 329 -106 316 -119 300 -119 c 0 284 -119 271 -106 271 -89 c 0 271 -73 284 -60 300 -60 c 0 EndSplineSet EndChar StartChar: afii57800 Encoding: 1458 1458 Width: 0 Flags: W HStem: -236 58<416 426> -101 41<168 314> VStem: 388 59<-209 -203 -93 -87> Fore 174 -60 m 2 308 -60 l 2 320 -60 329 -69 329 -80 c 0 329 -92 320 -101 308 -101 c 2 174 -101 l 2 162 -101 153 -92 153 -80 c 0 153 -69 162 -60 174 -60 c 2 418 -178 m 0 434 -178 447 -191 447 -207 c 0 447 -223 434 -236 418 -236 c 0 401 -236 388 -223 388 -207 c 0 388 -191 401 -178 418 -178 c 0 418 -60 m 0 434 -60 447 -73 447 -89 c 0 447 -106 434 -119 418 -119 c 0 401 -119 388 -106 388 -89 c 0 388 -73 401 -60 418 -60 c 0 EndSplineSet EndChar StartChar: afii57802 Encoding: 1459 1459 Width: 0 Flags: W HStem: -236 58<416 425> -101 41<167 219 259 313> VStem: 219 41<-207 -101> 388 59<-209 -200 -93 -87> Fore 219 -101 m 1 173 -101 l 2 162 -101 152 -92 152 -80 c 0 152 -69 162 -60 173 -60 c 2 308 -60 l 2 320 -60 329 -69 329 -80 c 0 329 -92 320 -101 308 -101 c 2 260 -101 l 1 260 -200 l 2 260 -211 251 -220 240 -220 c 0 228 -220 219 -211 219 -200 c 2 219 -101 l 1 418 -178 m 0 434 -178 447 -191 447 -207 c 0 447 -223 434 -236 418 -236 c 0 401 -236 388 -223 388 -207 c 0 388 -191 401 -178 418 -178 c 0 418 -60 m 0 434 -60 447 -73 447 -89 c 0 447 -106 434 -119 418 -119 c 0 401 -119 388 -106 388 -89 c 0 388 -73 401 -60 418 -60 c 0 EndSplineSet MinimumDistance: y0,8 y0,10 x7,4 x7,6 x0,3 x0,1 EndChar StartChar: afii57793 Encoding: 1460 1460 Width: 0 Flags: W Fore 300 -60 m 0 316 -60 329 -73 329 -89 c 0 329 -106 316 -119 300 -119 c 0 284 -119 271 -106 271 -89 c 0 271 -73 284 -60 300 -60 c 0 EndSplineSet EndChar StartChar: afii57794 Encoding: 1461 1461 Width: 0 Flags: W VStem: 212 59<-91 -87> 329 59<-91 -87> Fore 241 -60 m 0 257 -60 271 -73 271 -89 c 0 271 -106 257 -119 241 -119 c 0 225 -119 212 -106 212 -89 c 0 212 -73 225 -60 241 -60 c 0 359 -60 m 0 375 -60 388 -73 388 -89 c 0 388 -106 375 -119 359 -119 c 0 343 -119 329 -106 329 -89 c 0 329 -73 343 -60 359 -60 c 0 EndSplineSet EndChar StartChar: afii57795 Encoding: 1462 1462 Width: 0 Flags: W HStem: -236 58<298 302> -119 59<239 245 355 361> VStem: 212 59<-93 -87> 271 58<-209 -203> 329 59<-93 -87> Fore 300 -178 m 0 316 -178 329 -191 329 -207 c 0 329 -223 316 -236 300 -236 c 0 284 -236 271 -223 271 -207 c 0 271 -191 284 -178 300 -178 c 0 241 -60 m 0 257 -60 271 -73 271 -89 c 0 271 -106 257 -119 241 -119 c 0 225 -119 212 -106 212 -89 c 0 212 -73 225 -60 241 -60 c 0 359 -60 m 0 375 -60 388 -73 388 -89 c 0 388 -106 375 -119 359 -119 c 0 343 -119 329 -106 329 -89 c 0 329 -73 343 -60 359 -60 c 0 EndSplineSet EndChar StartChar: afii57798 Encoding: 1463 1463 Width: 0 Flags: W HStem: -101 41<227 373> Fore 233 -60 m 2 368 -60 l 2 379 -60 388 -69 388 -80 c 0 388 -92 379 -101 368 -101 c 2 233 -101 l 2 222 -101 212 -92 212 -80 c 0 212 -69 222 -60 233 -60 c 2 EndSplineSet EndChar StartChar: afii57797 Encoding: 1464 1464 Width: 0 Flags: W HStem: -101 41<227 279 319 373> VStem: 279 41<-205 -101> Fore 279 -101 m 1 233 -101 l 2 222 -101 212 -92 212 -80 c 0 212 -69 222 -60 233 -60 c 2 368 -60 l 2 380 -60 389 -69 389 -80 c 0 389 -92 380 -101 368 -101 c 2 320 -101 l 1 320 -200 l 2 320 -211 311 -220 300 -220 c 0 288 -220 279 -211 279 -200 c 2 279 -101 l 1 EndSplineSet MinimumDistance: y0,8 y0,10 x7,4 x7,6 x0,3 x0,1 EndChar StartChar: afii57806 Encoding: 1465 1465 Width: 0 Flags: W Fore 0 599 m 0 16 599 29 586 29 569 c 0 29 553 16 540 0 540 c 0 -16 540 -29 553 -29 569 c 0 -29 586 -16 599 0 599 c 0 EndSplineSet EndChar StartChar: afii57796 Encoding: 1467 1467 Width: 0 Flags: W HStem: -236 58<416 426> -178 59<296 302> -119 59<180 186> VStem: 153 59<-93 -87> 271 58<-150 -146> 388 59<-209 -203> Fore 300 -119 m 0 316 -119 329 -132 329 -148 c 0 329 -164 316 -178 300 -178 c 0 284 -178 271 -164 271 -148 c 0 271 -132 284 -119 300 -119 c 0 182 -60 m 0 199 -60 212 -73 212 -89 c 0 212 -106 199 -119 182 -119 c 0 166 -119 153 -106 153 -89 c 0 153 -73 166 -60 182 -60 c 0 418 -178 m 0 434 -178 447 -191 447 -207 c 0 447 -223 434 -236 418 -236 c 0 401 -236 388 -223 388 -207 c 0 388 -191 401 -178 418 -178 c 0 EndSplineSet EndChar StartChar: afii57807 Encoding: 1468 1468 Width: 0 Flags: W Fore 300 270 m 0 316 270 329 257 329 241 c 0 329 224 316 211 300 211 c 0 284 211 271 224 271 241 c 0 271 257 284 270 300 270 c 0 EndSplineSet EndChar StartChar: afii57839 Encoding: 1469 1469 Width: 0 Flags: W VStem: 280 40<-221 -75> Fore 280 -216 m 2 280 -80 l 2 280 -69 289 -60 300 -60 c 0 311 -60 320 -69 320 -80 c 2 320 -216 l 2 320 -227 311 -236 300 -236 c 0 289 -236 280 -227 280 -216 c 2 EndSplineSet EndChar StartChar: afii57645 Encoding: 1470 1470 Width: 600 Flags: W HStem: 380 100<107 492> Fore 110 480 m 2 490 480 l 2 518 480 540 458 540 430 c 0 540 402 518 380 490 380 c 2 110 380 l 2 82 380 60 402 60 430 c 0 60 458 82 480 110 480 c 2 EndSplineSet EndChar StartChar: afii57841 Encoding: 1471 1471 Width: 0 Flags: W HStem: 540 41<227 373> Fore 233 581 m 2 368 581 l 2 379 581 388 572 388 560 c 0 388 549 379 540 368 540 c 2 233 540 l 2 222 540 212 549 212 560 c 0 212 572 222 581 233 581 c 2 EndSplineSet EndChar StartChar: afii57842 Encoding: 1472 1472 Width: 600 Flags: W VStem: 250 100<-106 568> Fore 350 556 m 2 350 -87 l 2 350 -112 348 -122 341 -132 c 0 331 -145 316 -153 300 -153 c 0 283 -153 267 -144 257 -129 c 0 252 -121 250 -110 250 -87 c 2 250 556 l 2 250 582 252 592 259 602 c 0 269 614 284 622 300 622 c 0 317 622 334 613 343 598 c 0 348 589 350 580 350 556 c 2 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: afii57804 Encoding: 1473 1473 Width: 0 Flags: W Fore 549 599 m 0 565 599 578 586 578 569 c 0 578 553 565 540 549 540 c 0 532 540 519 553 519 569 c 0 519 586 532 599 549 599 c 0 EndSplineSet EndChar StartChar: afii57803 Encoding: 1474 1474 Width: 0 Flags: W Fore 79 599 m 0 95 599 108 586 108 569 c 0 108 553 95 540 79 540 c 0 62 540 49 553 49 569 c 0 49 586 62 599 79 599 c 0 EndSplineSet EndChar StartChar: afii57658 Encoding: 1475 1475 Width: 600 Flags: W HStem: -15 132<288 311> 304 133<288 311> Fore 309 -15 m 2 291 -15 l 2 255 -15 225 15 225 51 c 0 225 87 255 117 291 117 c 2 309 117 l 2 346 117 375 88 375 51 c 0 375 14 346 -15 309 -15 c 2 309 304 m 2 291 304 l 2 255 304 225 334 225 370 c 0 225 407 255 437 291 437 c 2 309 437 l 2 346 437 375 408 375 370 c 0 375 333 346 304 309 304 c 2 EndSplineSet EndChar StartChar: uni05C4 Encoding: 1476 1476 Width: 0 Flags: W Fore 275 734 m 0 292 734 305 721 305 704 c 0 305 687 292 674 275 674 c 0 258 674 245 687 245 704 c 0 245 721 258 734 275 734 c 0 EndSplineSet EndChar StartChar: afii57664 Encoding: 1488 1488 Width: 600 Flags: W HStem: 0 21G<60 173> 380 100<416.788 440> VStem: 60 163<47 53> 377 163<419.788 433> DStem: 75 395 145 465 150 319 374 237 225 244 145 465 455 15 374 237 225 244 448 162 455 15 525 85 Fore 374 237 m 1 421 259 442 278 440 303 c 1 440 380 l 1 427 380 l 2 399 380 377 402 377 430 c 0 377 458 399 480 427 480 c 2 540 480 l 1 540 303 l 1 538 230 495 190 448 162 c 1 525 85 l 2 545 66 545 34 525 15 c 1 506 -5 474 -5 455 15 c 1 225 244 l 1 178 223 159 207 160 177 c 1 160 100 l 1 173 100 l 2 201 100 223 78 223 50 c 0 223 22 201 0 173 0 c 2 60 0 l 1 60 177 l 1 61 250 104 292 150 319 c 1 75 395 l 1 55 414 55 446 75 465 c 1 94 485 126 485 145 465 c 1 374 237 l 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: afii57665 Encoding: 1489 1489 Width: 600 Flags: W HStem: 0 100<107 345 444 492> 380 100<107 268> VStem: 345 100<99 321> Fore 345 100 m 1 345 303 l 1 344 344 344 344 328 363 c 1 310 379 308 379 268 380 c 2 110 380 l 2 82 380 60 402 60 430 c 0 60 458 82 480 110 480 c 2 268 480 l 2 308 481 360 474 399 434 c 1 439 396 446 344 445 303 c 1 445 100 l 1 490 100 l 2 518 100 540 78 540 50 c 0 540 22 518 0 490 0 c 2 110 0 l 2 82 0 60 22 60 50 c 0 60 78 82 100 110 100 c 2 345 100 l 1 EndSplineSet MinimumDistance: x11,-1 x10,13 x10,11 x0,14 x0,16 EndChar StartChar: afii57666 Encoding: 1490 1490 Width: 600 Flags: W HStem: 380 100<202 284> Fore 345 221 m 1 345 303 l 1 343 346 345 343 328 363 c 1 314 377 298 380 268 380 c 2 205 380 l 2 177 380 155 402 155 430 c 0 155 458 177 480 205 480 c 2 268 480 l 2 302 480 356 476 399 434 c 0 438 397 447 346 445 303 c 1 445 183 l 1 475 62 l 1 482 35 466 8 439 1 c 0 412 -5 385 11 378 38 c 1 358 121 l 1 335 117 307 110 293 101 c 0 253 77 249 71 215 22 c 0 199 -1 168 -7 145 9 c 0 122 24 116 55 132 78 c 0 163 125 191 160 244 189 c 0 277 207 316 216 345 221 c 1 EndSplineSet EndChar StartChar: afii57667 Encoding: 1491 1491 Width: 600 Flags: W HStem: 380 100<107 345 444 492> VStem: 345 100<47 380> Fore 345 380 m 1 110 380 l 2 82 380 60 402 60 430 c 0 60 458 82 480 110 480 c 2 490 480 l 2 518 480 540 458 540 430 c 0 540 402 518 380 490 380 c 2 445 380 l 1 445 50 l 2 445 22 423 0 395 0 c 0 367 0 345 22 345 50 c 2 345 380 l 1 EndSplineSet MinimumDistance: x4,-1 y0,8 y0,10 x7,4 x7,6 x0,3 x0,1 EndChar StartChar: afii57668 Encoding: 1492 1492 Width: 600 Flags: W HStem: 380 100<107 363> VStem: 95 100<47 224> 440 100<47 321> Fore 95 50 m 2 95 222 l 2 95 250 117 272 145 272 c 0 172 272 195 250 195 222 c 2 195 50 l 2 195 22 172 0 145 0 c 0 117 0 95 22 95 50 c 2 540 303 m 1 540 50 l 2 540 22 518 0 490 0 c 0 462 0 440 22 440 50 c 2 440 303 l 1 439 344 439 344 423 363 c 1 405 379 401 379 363 380 c 2 110 380 l 2 82 380 60 402 60 430 c 0 60 458 82 480 110 480 c 2 363 480 l 2 403 481 455 474 494 434 c 1 534 396 541 344 540 303 c 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: afii57669 Encoding: 1493 1493 Width: 600 Flags: W HStem: 380 100<197 278> VStem: 278 100<47 380> Fore 378 480 m 1 378 50 l 2 378 22 356 0 328 0 c 0 300 0 278 22 278 50 c 2 278 380 l 1 200 380 l 2 172 380 150 402 150 430 c 0 150 458 172 480 200 480 c 2 378 480 l 1 EndSplineSet MinimumDistance: x0,-1 y4,1 y4,3 x4,7 x4,5 EndChar StartChar: afii57670 Encoding: 1494 1494 Width: 600 Flags: W HStem: 380 100<170 250 349 429> VStem: 250 100<47 380> Fore 250 380 m 1 173 380 l 2 146 380 123 402 123 430 c 0 123 458 146 480 173 480 c 2 427 480 l 2 454 480 477 458 477 430 c 0 477 402 454 380 427 380 c 2 350 380 l 1 350 50 l 2 350 22 328 0 300 0 c 0 272 0 250 22 250 50 c 2 250 380 l 1 EndSplineSet MinimumDistance: x4,-1 y0,8 y0,10 x7,4 x7,6 x0,3 x0,1 EndChar StartChar: afii57671 Encoding: 1495 1495 Width: 600 Flags: W HStem: 380 100<106 118 258 363> VStem: 87 100<47 297> 440 100<47 303> Fore 259 380 m 1 204 325 l 2 189 309 188 305 187 297 c 1 187 50 l 2 187 22 165 0 137 0 c 0 110 0 87 22 87 50 c 2 87 297 l 1 85 340 89 351 108 370 c 2 118 380 l 1 110 380 l 2 82 380 60 402 60 430 c 0 60 458 82 480 110 480 c 2 363 480 l 2 403 481 455 474 494 434 c 1 534 395 541 344 540 303 c 1 540 50 l 2 540 22 518 0 490 0 c 0 462 0 440 22 440 50 c 2 440 303 l 1 439 342 439 345 423 363 c 1 405 379 402 379 363 380 c 2 259 380 l 1 EndSplineSet MinimumDistance: x14,-1 EndChar StartChar: afii57672 Encoding: 1496 1496 Width: 600 Flags: W HStem: 0 100<284.063 347> 380 100<91 107 417 424> VStem: 107 100<176 380> 424 100<176 380> DStem: 379 480 418 380 244 333 324 273 Fore 418 380 m 1 324 273 l 1 307 251 276 247 254 263 c 0 232 280 227 311 244 333 c 1 379 480 l 1 524 480 l 1 524 177 l 1 525 138 519 86 478 46 c 1 426 -8 366 0 284 0 c 0 244 -1 192 6 154 46 c 1 113 85 106 137 107 177 c 1 107 380 l 1 94 380 l 2 66 380 44 402 44 430 c 0 44 458 66 480 94 480 c 2 207 480 l 1 207 177 l 1 208 139 208 135 224 117 c 1 242 101 245 101 284 100 c 2 347 100 l 2 386 101 389 101 407 117 c 1 423 134 423 140 424 177 c 1 424 380 l 1 418 380 l 1 EndSplineSet MinimumDistance: x5,-1 x11,14 x11,12 EndChar StartChar: afii57673 Encoding: 1497 1497 Width: 600 Flags: W HStem: 380 100<191 266> VStem: 266 100<237 380> Fore 366 480 m 1 366 240 l 2 366 212 344 190 316 190 c 0 288 190 266 212 266 240 c 2 266 380 l 1 194 380 l 2 166 380 144 402 144 430 c 0 144 458 166 480 194 480 c 2 366 480 l 1 EndSplineSet MinimumDistance: x0,-1 y4,1 y4,3 x4,7 x4,5 EndChar StartChar: afii57674 Encoding: 1498 1498 Width: 600 Flags: W HStem: 380 100<107 323> VStem: 400 100<-153 329> Fore 500 303 m 1 500 -150 l 2 500 -178 478 -200 450 -200 c 0 422 -200 400 -178 400 -150 c 2 400 303 l 1 399 344 399 344 383 363 c 1 365 379 361 379 323 380 c 2 110 380 l 2 82 380 60 402 60 430 c 0 60 458 82 480 110 480 c 2 323 480 l 2 363 481 415 474 454 434 c 1 494 396 501 344 500 303 c 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: afii57675 Encoding: 1499 1499 Width: 600 Flags: W HStem: 0 100<107 322> 380 100<107 322> VStem: 399 100<176 303> Fore 322 0 m 2 110 0 l 2 82 0 60 22 60 50 c 0 60 78 82 100 110 100 c 2 322 100 l 2 362 101 363 101 382 117 c 1 397 134 398 140 399 177 c 1 399 303 l 1 398 343 398 344 382 363 c 1 364 379 360 379 322 380 c 2 110 380 l 2 82 380 60 402 60 430 c 0 60 458 82 480 110 480 c 2 322 480 l 2 362 481 414 474 453 434 c 1 493 396 500 344 499 303 c 1 499 177 l 1 500 138 494 86 453 46 c 1 414 6 363 -1 322 0 c 2 EndSplineSet MinimumDistance: x15,-1 EndChar StartChar: afii57676 Encoding: 1500 1500 Width: 600 Flags: W HStem: 380 100<159 440> 380 249<107 113> VStem: 60 100<479 581> DStem: 423 275 494 205 233 85 304 15 Fore 494 205 m 2 304 15 l 2 284 -5 252 -5 233 15 c 1 213 34 213 66 233 85 c 2 423 275 l 2 436 289 439 295 440 303 c 1 440 380 l 1 60 380 l 1 60 579 l 2 60 607 82 629 110 629 c 0 138 629 160 607 160 579 c 2 160 480 l 1 540 480 l 1 540 303 l 1 541 260 514 224 494 205 c 2 EndSplineSet MinimumDistance: x12,-1 y11,8 y11,10 y13,11 x11,13 x11,12 EndChar StartChar: afii57677 Encoding: 1501 1501 Width: 600 Flags: W HStem: 0 100<180 428> 380 100<95 136 276 351> VStem: 80 100<100 272> 428 100<100 304> Fore 277 380 m 1 197 300 l 2 180 283 180 279 180 272 c 2 180 100 l 1 428 100 l 1 428 303 l 1 427 340 427 346 411 363 c 1 393 379 389 379 351 380 c 2 277 380 l 1 136 380 m 1 98 380 l 2 70 380 48 402 48 430 c 0 48 458 70 480 98 480 c 2 351 480 l 2 391 481 443 474 482 434 c 1 523 394 529 342 528 303 c 1 528 0 l 1 80 0 l 1 80 272 l 1 77 315 107 352 126 370 c 2 136 380 l 1 EndSplineSet MinimumDistance: x14,-1 EndChar StartChar: afii57678 Encoding: 1502 1502 Width: 600 Flags: W HStem: 0 100<336 440> 380 100<72 92 337 364> VStem: 92 100<47 222 371 380> 440 100<99 303> DStem: 302 480 338 380 192 371 209 255 Fore 192 371 m 1 302 480 l 1 363 480 l 2 403 481 455 474 494 434 c 1 534 395 541 343 540 303 c 1 540 0 l 1 345 0 l 2 317 0 295 22 295 50 c 0 295 78 317 100 345 100 c 2 440 100 l 1 440 303 l 1 439 341 439 345 423 363 c 1 405 379 401 379 363 380 c 2 338 380 l 1 209 255 l 2 197 243 200 246 195 237 c 0 194 236 195 237 192 222 c 1 192 50 l 2 192 22 169 0 142 0 c 0 114 0 92 22 92 50 c 0 92 380 l 1 75 380 l 2 47 380 25 402 25 430 c 0 25 458 47 480 75 480 c 2 192 480 l 1 192 371 l 1 EndSplineSet MinimumDistance: x4,-1 y20,17 y20,19 x9,6 x9,8 x20,23 x20,21 EndChar StartChar: afii57679 Encoding: 1503 1503 Width: 600 Flags: W HStem: 380 100<197 278> VStem: 278 100<-153 380> Fore 378 480 m 1 378 -150 l 2 378 -178 356 -200 328 -200 c 0 300 -200 278 -178 278 -150 c 2 278 380 l 1 200 380 l 2 172 380 150 402 150 430 c 0 150 458 172 480 200 480 c 2 378 480 l 1 EndSplineSet MinimumDistance: x0,-1 y4,1 y4,3 x4,7 x4,5 EndChar StartChar: afii57680 Encoding: 1504 1504 Width: 600 Flags: W HStem: 0 100<170 345> 380 100<234 268> VStem: 345 100<99 303> Fore 395 0 m 1 173 0 l 2 146 0 123 22 123 50 c 0 123 78 146 100 173 100 c 2 345 100 l 1 345 303 l 1 344 343 344 345 328 363 c 1 310 379 308 379 268 380 c 2 237 380 l 2 209 380 187 402 187 430 c 0 187 458 209 480 237 480 c 2 268 480 l 2 308 481 360 474 399 434 c 1 439 395 446 344 445 303 c 1 445 50 l 1 445 0 l 1 395 0 l 1 EndSplineSet MinimumDistance: x13,-1 x4,1 x4,3 EndChar StartChar: afii57681 Encoding: 1505 1505 Width: 600 Flags: W HStem: 0 21G<268 384> 380 100<107 148 288 363> DStem: 423 180 494 110 343 100 384 0 Fore 289 380 m 1 209 300 l 2 196 286 193 280 192 272 c 1 192 177 l 1 193 140 193 134 209 117 c 1 227 101 230 101 268 100 c 2 343 100 l 1 423 180 l 2 436 194 439 200 440 208 c 1 440 303 l 1 439 341 439 345 423 363 c 1 405 379 401 379 363 380 c 2 289 380 l 1 148 380 m 1 110 380 l 2 82 380 60 402 60 430 c 0 60 458 82 480 110 480 c 2 363 480 l 2 403 481 455 474 494 434 c 1 534 395 541 343 540 303 c 1 540 208 l 1 541 165 514 129 494 110 c 2 384 0 l 1 268 0 l 2 228 -1 177 6 138 46 c 1 97 86 91 138 92 177 c 1 92 272 l 1 90 323 122 355 148 380 c 1 EndSplineSet MinimumDistance: x17,-1 EndChar StartChar: afii57682 Encoding: 1506 1506 Width: 600 Flags: W HStem: 0 100<107 209 311.063 332 332.031 357.279> 380 100<107 163 389 433> DStem: 163 380 247 480 209 100 311 100 433 380 547 480 409 183 508 170 Fore 209 100 m 1 163 380 l 1 110 380 l 2 82 380 60 402 60 430 c 0 60 458 82 480 110 480 c 2 247 480 l 1 311 100 l 1 357 100 370 98 391 117 c 0 405 131 403 136 409 183 c 1 433 380 l 1 395 380 l 2 367 380 345 402 345 430 c 0 345 458 367 480 395 480 c 2 547 480 l 1 508 170 l 2 504 139 505 89 462 46 c 0 423 6 372 -1 332 0 c 2 110 0 l 2 82 0 60 22 60 50 c 0 60 78 82 100 110 100 c 2 209 100 l 1 EndSplineSet MinimumDistance: x13,-1 EndChar StartChar: afii57683 Encoding: 1507 1507 Width: 600 Flags: W HStem: 380 100<107 148 288 363> VStem: 92 100<256 272> 440 100<-153 304> Fore 289 380 m 1 209 300 l 2 190 280 192 280 192 256 c 1 276 256 l 2 304 256 326 234 326 206 c 0 326 178 304 156 276 156 c 2 92 156 l 1 92 272 l 1 89 323 122 355 148 380 c 1 110 380 l 2 82 380 60 402 60 430 c 0 60 458 82 480 110 480 c 2 363 480 l 2 403 481 455 474 494 434 c 1 534 395 541 343 540 303 c 1 540 -150 l 2 540 -178 518 -200 490 -200 c 0 462 -200 440 -178 440 -150 c 2 440 303 l 1 439 341 439 345 423 363 c 1 405 379 401 379 363 380 c 2 289 380 l 1 EndSplineSet MinimumDistance: x14,-1 EndChar StartChar: afii57684 Encoding: 1508 1508 Width: 600 Flags: W HStem: 0 100<102 363> 380 100<102 148 288 363> VStem: 440 100<176 327> Fore 199 290 m 1 276 290 l 2 304 290 326 268 326 240 c 0 326 212 304 190 276 190 c 2 92 190 l 1 92 244 86 290 104 325 c 0 116 350 132 364 148 380 c 1 110 380 l 2 82 380 60 402 60 430 c 0 60 458 82 480 110 480 c 2 363 480 l 2 403 481 455 474 494 434 c 1 534 396 541 344 540 303 c 1 540 177 l 1 541 137 534 85 494 46 c 1 455 6 403 -1 363 0 c 2 110 0 l 2 82 0 60 22 60 50 c 0 60 78 82 100 110 100 c 2 363 100 l 2 401 101 405 101 423 117 c 1 439 135 439 139 440 177 c 1 440 303 l 1 439 344 439 344 423 363 c 1 405 379 402 379 363 380 c 2 289 380 l 1 262 353 224 316 199 290 c 1 EndSplineSet MinimumDistance: x12,-1 EndChar StartChar: afii57685 Encoding: 1509 1509 Width: 600 Flags: W HStem: 380 100<107 155 384.788 440> VStem: 234 100<-153 180> DStem: 440 373 540 320 300 278 334 180 Fore 300 278 m 1 440 373 l 1 440 380 l 1 395 380 l 2 367 380 345 402 345 430 c 0 345 458 367 480 395 480 c 2 540 480 l 1 540 320 l 1 334 180 l 1 334 -150 l 2 334 -178 312 -200 284 -200 c 0 257 -200 234 -178 234 -150 c 2 234 191 l 1 155 347 l 1 155 380 l 1 110 380 l 2 82 380 60 402 60 430 c 0 60 458 82 480 110 480 c 2 255 480 l 1 255 360 l 1 300 278 l 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: afii57686 Encoding: 1510 1510 Width: 600 Flags: W HStem: 0 100<95 405> 380 100<95 143 372.788 428> DStem: 143 320 243 367 405 100 329 295 143 320 407 229 405 100 528 127 428 369 528 319 329 295 407 229 Fore 329 295 m 1 428 369 l 1 428 380 l 1 383 380 l 2 355 380 333 402 333 430 c 0 333 458 355 480 383 480 c 2 528 480 l 1 528 319 l 1 407 229 l 1 528 127 l 1 528 0 l 1 98 0 l 2 70 0 48 22 48 50 c 0 48 78 70 100 98 100 c 2 405 100 l 1 143 320 l 1 143 380 l 1 98 380 l 2 70 380 48 402 48 430 c 0 48 458 70 480 98 480 c 2 243 480 l 1 243 367 l 1 329 295 l 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: afii57687 Encoding: 1511 1511 Width: 600 Flags: W HStem: 380 100<97 431> VStem: 113 100<-153 232> 430 100<225.505 380> DStem: 416 204 481 129 298 85 369 14 Fore 481 129 m 1 369 14 l 1 349 -5 318 -5 298 14 c 0 278 34 278 65 298 85 c 2 416 204 l 2 429 217 417 202 427 220 c 1 432 232 429 222 430 230 c 1 430 380 l 1 100 380 l 2 72 380 50 402 50 430 c 0 50 458 72 480 100 480 c 2 530 480 l 1 530 230 l 1 531 211 523 188 517 177 c 1 514 166 496 138 481 129 c 1 213 222 m 2 213 -150 l 2 213 -178 191 -200 163 -200 c 0 136 -200 113 -178 113 -150 c 2 113 222 l 2 113 250 136 272 163 272 c 0 191 272 213 250 213 222 c 2 EndSplineSet MinimumDistance: x11,-1 x7,10 x7,8 EndChar StartChar: afii57688 Encoding: 1512 1512 Width: 600 Flags: W HStem: 380 100<107 363> VStem: 440 100<47 321> Fore 540 303 m 1 540 50 l 2 540 22 518 0 490 0 c 0 462 0 440 22 440 50 c 2 440 303 l 1 439 344 439 344 423 363 c 1 405 379 401 379 363 380 c 2 110 380 l 2 82 380 60 402 60 430 c 0 60 458 82 480 110 480 c 2 363 480 l 2 403 481 455 474 494 434 c 1 534 396 541 344 540 303 c 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: afii57689 Encoding: 1513 1513 Width: 600 Flags: W HStem: 0 100<151 220 321 354> 380 99.3881<151 153> VStem: 51 100<100 380> 51 143<417.866 433> 228 163<420.192 433> DStem: 256 385 356 382 220 100 321 100 456 380 569 480 431 183 531 170 Fore 456 380 m 1 431 183 l 1 425 140 426 135 408 117 c 1 388 101 391 102 354 100 c 2 321 100 l 1 356 382 l 1 376 389 391 408 391 430 c 0 391 458 369 480 341 480 c 0 319 480 298 480 278 480 c 0 250 480 228 458 228 430 c 0 228 410 239 393 256 385 c 1 220 100 l 1 151 100 l 1 151 380 l 1 179 380 194 402 194 430 c 0 194 458 172 480 144 480 c 2 51 480 l 1 51 0 l 1 354 0 l 1 395 -2 443 9 478 45 c 1 520 84 527 133 531 170 c 1 569 480 l 1 467 480 l 2 439 480 417 458 417 430 c 0 417 402 428 380 456 380 c 1 EndSplineSet MinimumDistance: x21,-1 x9,6 EndChar StartChar: afii57690 Encoding: 1514 1514 Width: 600 Flags: W HStem: 0 100<75 111> 380 100<107 155 254 363> VStem: 155 100<144 380> 440 100<39 321> Fore 255 380 m 1 255 145 l 1 256 115 250 70 217 38 c 1 185 5 140 -1 110 0 c 2 78 0 l 2 51 0 28 22 28 50 c 0 28 78 51 100 78 100 c 2 110 100 l 2 138 101 135 100 146 109 c 1 155 120 154 117 155 145 c 1 155 380 l 1 110 380 l 2 82 380 60 402 60 430 c 0 60 458 82 480 110 480 c 2 363 480 l 2 403 481 455 474 494 434 c 1 534 396 541 344 540 303 c 1 540 50 l 2 540 22 518 0 490 0 c 0 462 0 440 22 440 50 c 2 440 303 l 1 439 344 439 344 423 363 c 1 405 379 401 379 363 380 c 2 255 380 l 1 EndSplineSet MinimumDistance: x16,-1 x10,13 x10,11 EndChar StartChar: afii57716 Encoding: 1520 1520 Width: 600 Flags: W HStem: 380 100<83 164 355 436> VStem: 164 100<47 380> 436 100<47 380> Fore 264 480 m 1 264 50 l 2 264 22 242 0 214 0 c 0 186 0 164 22 164 50 c 2 164 380 l 1 86 380 l 2 58 380 36 402 36 430 c 0 36 458 58 480 86 480 c 2 264 480 l 1 536 480 m 1 536 50 l 2 536 22 514 0 486 0 c 0 458 0 436 22 436 50 c 2 436 380 l 1 358 380 l 2 330 380 308 402 308 430 c 0 308 458 330 480 358 480 c 2 536 480 l 1 EndSplineSet MinimumDistance: x8,-1 y12,9 y12,11 y4,1 y4,3 x12,15 x12,13 x4,7 x4,5 EndChar StartChar: afii57717 Encoding: 1521 1521 Width: 600 Flags: W HStem: 380 100<89 164 347.788 436> VStem: 164 100<229.788 380> 436 100<47 380> Fore 536 480 m 1 536 50 l 2 536 22 514 0 486 0 c 0 458 0 436 22 436 50 c 2 436 380 l 1 358 380 l 2 330 380 308 402 308 430 c 0 308 458 330 480 358 480 c 2 536 480 l 1 264 480 m 1 264 240 l 2 264 212 242 190 214 190 c 0 186 190 164 212 164 240 c 2 164 380 l 1 92 380 l 2 64 380 42 402 42 430 c 0 42 458 64 480 92 480 c 2 264 480 l 1 EndSplineSet MinimumDistance: x0,-1 y12,9 y12,11 y4,1 y4,3 x4,7 x4,5 x12,15 x12,13 EndChar StartChar: afii57718 Encoding: 1522 1522 Width: 600 Flags: W HStem: 380 100<89 164 361 436> VStem: 164 100<237 380> 436 100<237 380> Fore 264 480 m 1 264 240 l 2 264 212 242 190 214 190 c 0 186 190 164 212 164 240 c 2 164 380 l 1 92 380 l 2 64 380 42 402 42 430 c 0 42 458 64 480 92 480 c 2 264 480 l 1 536 480 m 1 536 240 l 2 536 212 514 190 486 190 c 0 458 190 436 212 436 240 c 2 436 380 l 1 364 380 l 2 336 380 314 402 314 430 c 0 314 458 336 480 364 480 c 2 536 480 l 1 EndSplineSet MinimumDistance: x8,-1 y12,9 y12,11 y4,1 y4,3 x12,15 x12,13 x4,7 x4,5 EndChar StartChar: uni05F3 Encoding: 1523 1523 Width: 600 Flags: W Fore 254 605 m 1 395 605 l 1 314 351 l 2 306 326 298 315 276 315 c 0 255 315 245 325 242 350 c 1 254 605 l 1 EndSplineSet EndChar StartChar: uni05F4 Encoding: 1524 1524 Width: 600 Flags: W Fore 152 605 m 1 293 605 l 1 212 351 l 1 203 326 196 315 174 315 c 0 153 315 143 325 140 350 c 1 152 605 l 1 372 605 m 1 513 605 l 1 432 351 l 2 424 326 416 315 394 315 c 0 373 315 363 325 360 350 c 1 372 605 l 1 EndSplineSet EndChar StartChar: uni1E00 Encoding: 7680 7680 Width: 600 HStem: -281 54<281 318.5> -93 53<281 319> 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> VStem: 177 53<-178 -142> 370 53<-178.5 -142.5> Ref: 730 N 1 0 0 1 0 -767 Ref: 65 N 1 0 0 1 0 0 EndChar StartChar: uni1E01 Encoding: 7681 7681 Width: 600 HStem: -297 54<203 240.5> -109 53<203 241> -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> VStem: 42 106<118 128> 99 53<-194 -158> 292 53<-194.5 -158.5> 389 100<135 185 279 304> Ref: 730 N 1 0 0 1 -78 -783 Ref: 97 N 1 0 0 1 0 0 EndChar StartChar: uni1E02 Encoding: 7682 7682 Width: 600 HStem: 0 100<61 93 195 381> 242 100<195 328> 483 100<61 93 195 334> 637 120<281.067 296> VStem: 94 100<101 241 343 482> 232 120<695 701> 428 100<416 421> 471 100<144 162> Ref: 729 N 1 0 0 1 -8 103 Ref: 66 N 1 0 0 1 0 0 EndChar StartChar: uni1E03 Encoding: 7683 7683 Width: 600 HStem: -14 100<295.5 346.5> 351 100<298.5 347> 664 120<271.067 286> VStem: 74 100<180.5 236.5 401 524 524 524> 222 120<722 728> 471 100<202 235.5> Ref: 729 N 1 0 0 1 -18 130 Ref: 98 N 1 0 0 1 0 0 EndChar StartChar: uni1E04 Encoding: 7684 7684 Width: 600 HStem: -160 120<215.067 230> 0 100<61 93 195 381> 242 100<195 328> 483 100<61 93 195 334> VStem: 94 100<101 241 343 482> 166 120<-102 -96> 428 100<416 421> 471 100<144 162> Ref: 729 N 1 0 0 1 -74 -694 Ref: 66 N 1 0 0 1 0 0 EndChar StartChar: uni1E05 Encoding: 7685 7685 Width: 600 HStem: -174 120<314.067 329> -14 100<295.5 346.5> 351 100<298.5 347> VStem: 74 100<180.5 236.5 401 524 524 524> 265 120<-116 -110> 471 100<202 235.5> Ref: 729 N 1 0 0 1 25 -708 Ref: 98 N 1 0 0 1 0 0 EndChar StartChar: uni1E06 Encoding: 7686 7686 Width: 600 HStem: -120 80<104 348> 0 100<61 93 195 381> 242 100<195 328> 483 100<61 93 195 334> VStem: 94 100<101 241 343 482> 428 100<416 421> 471 100<144 162> Ref: 175 N 1 0 0 1 -74 -666 Ref: 66 N 1 0 0 1 0 0 EndChar StartChar: uni1E07 Encoding: 7687 7687 Width: 600 HStem: -134 80<203 447> -14 100<295.5 346.5> 351 100<298.5 347> VStem: 74 100<180.5 236.5 401 524 524 524> 471 100<202 235.5> Ref: 175 N 1 0 0 1 25 -680 Ref: 98 N 1 0 0 1 0 0 EndChar StartChar: uni1E08 Encoding: 7688 7688 Width: 600 HStem: -229 70<294 311> -100 186<292 329> 367 216<490 501> 497 100<289 328> VStem: 33 100<235 331> 267 70<-42 -14> 342 70<-141 -129> DStem: 424 821 470 765 291 710 337 653 Ref: 180 N 1 0 0 1 18 141 Ref: 199 N 1 0 0 1 0 0 EndChar StartChar: uni1E09 Encoding: 7689 7689 Width: 600 HStem: -229 70<302.5 322.5> 350 100<285 332.5> VStem: 54 100<168.5 226> 272 70<-42 -16> 347 70<-142 -123> DStem: 520 674 566 618 387 563 433 506 Ref: 180 N 1 0 0 1 114 -6 Ref: 231 N 1 0 0 1 0 0 EndChar StartChar: uni1E0A Encoding: 7690 7690 Width: 600 HStem: 0 100<68 74 174 284> 483 100<174 174 174 284> 637 120<271.067 286> VStem: 74 100<100 483> 222 120<695 701> 450 100<261 305> Ref: 729 N 1 0 0 1 -18 103 Ref: 68 N 1 0 0 1 0 0 EndChar StartChar: uni1E0B Encoding: 7691 7691 Width: 600 HStem: -14 100<258 306> 351 100<257 306> 664 120<312.067 327> VStem: 33 100<202 235.5> 263 120<722 728> 431 100<201 235 401 525 525 525> Ref: 729 N 1 0 0 1 23 130 Ref: 100 N 1 0 0 1 0 0 EndChar StartChar: uni1E0C Encoding: 7692 7692 Width: 600 HStem: -160 120<171.067 186> 0 100<68 74 174 284> 483 100<174 174 174 284> VStem: 74 100<100 483> 122 120<-102 -96> 450 100<261 305> Ref: 729 N 1 0 0 1 -118 -694 Ref: 68 N 1 0 0 1 0 0 EndChar StartChar: uni1E0D Encoding: 7693 7693 Width: 600 HStem: -174 120<269.067 284> -14 100<258 306> 351 100<257 306> VStem: 33 100<202 235.5> 220 120<-116 -110> 431 100<201 235 401 525 525 525> Ref: 729 N 1 0 0 1 -20 -708 Ref: 100 N 1 0 0 1 0 0 EndChar StartChar: uni1E0E Encoding: 7694 7694 Width: 600 HStem: -120 80<60 304> 0 100<68 74 174 284> 483 100<174 174 174 284> VStem: 74 100<100 483> 450 100<261 305> Ref: 175 N 1 0 0 1 -118 -666 Ref: 68 N 1 0 0 1 0 0 EndChar StartChar: uni1E0F Encoding: 7695 7695 Width: 600 HStem: -134 80<158 402> -14 100<258 306> 351 100<257 306> VStem: 33 100<202 235.5> 431 100<201 235 401 525 525 525> Ref: 175 N 1 0 0 1 -20 -680 Ref: 100 N 1 0 0 1 0 0 EndChar StartChar: uni1E10 Encoding: 7696 7696 Width: 600 HStem: -221 70<177.5 197.5> 0 100<68 74 166.5 186 174 284> 483 100<174 174 174 284> VStem: 74 100<100 483> 147 70<-33 8> 222 70<-134 -115.5> 450 100<261 305> Ref: 184 N 1 0 0 1 -115 8 Ref: 68 N 1 0 0 1 0 0 EndChar StartChar: uni1E11 Encoding: 7697 7697 Width: 600 HStem: -235 70<275.5 295.5> -14 100<258 306 264.5 284> 351 100<257 306> VStem: 33 100<202 235.5> 245 70<-47 -6> 320 70<-148 -129.5> 431 100<201 235 401 525 525 525> Ref: 184 N 1 0 0 1 -17 -6 Ref: 100 N 1 0 0 1 0 0 EndChar StartChar: uni1E12 Encoding: 7698 7698 Width: 600 HStem: 0 100<68 74 174 284> 483 100<174 174 174 284> VStem: 74 100<100 483> 450 100<261 305> DStem: 183 -129 183 -40 295 -226 334 -169 183 -129 183 -40 295 -226 334 -169 183 -40 183 -129 31 -169 70 -226 183 -129 183 -40 295 -226 334 -169 183 -40 183 -129 31 -169 70 -226 183 -129 183 -40 295 -226 334 -169 183 -40 183 -129 31 -169 70 -226 183 -129 183 -40 295 -226 334 -169 183 -40 183 -129 31 -169 70 -226 183 -129 183 -40 295 -226 334 -169 183 -40 183 -129 31 -169 70 -226 Ref: 710 N 1 0 0 1 -118 -736 Ref: 68 N 1 0 0 1 0 0 EndChar StartChar: uni1E13 Encoding: 7699 7699 Width: 600 HStem: -14 100<258 306> 351 100<257 306> VStem: 33 100<202 235.5> 431 100<201 235 401 525 525 525> DStem: 281 -143 281 -54 393 -240 432 -183 281 -143 281 -54 393 -240 432 -183 281 -54 281 -143 129 -183 168 -240 281 -143 281 -54 393 -240 432 -183 281 -54 281 -143 129 -183 168 -240 281 -143 281 -54 393 -240 432 -183 281 -54 281 -143 129 -183 168 -240 281 -143 281 -54 393 -240 432 -183 281 -54 281 -143 129 -183 168 -240 281 -143 281 -54 393 -240 432 -183 281 -54 281 -143 129 -183 168 -240 Ref: 710 N 1 0 0 1 -20 -750 Ref: 100 N 1 0 0 1 0 0 EndChar StartChar: uni1E14 Encoding: 7700 7700 Width: 600 HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 689 80<173 435> VStem: 94 100<101 242 343 482> 125 350<728 736> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> DStem: 135 937 181 993 268 825 314 882 Ref: 96 N 1 0 0 1 -13 313 Ref: 274 N 1 0 0 1 0 0 EndChar StartChar: uni1E15 Encoding: 7701 7701 Width: 600 HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 546 80<178 422> DStem: 135 794 181 850 268 682 314 739 Ref: 96 N 1 0 0 1 -13 170 Ref: 275 N 1 0 0 1 0 0 EndChar StartChar: uni1E16 Encoding: 7702 7702 Width: 600 HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 689 80<173 435> VStem: 94 100<101 242 343 482> 125 350<728 736> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> DStem: 419 993 465 937 286 882 332 825 Ref: 180 N 1 0 0 1 13 313 Ref: 274 N 1 0 0 1 0 0 EndChar StartChar: uni1E17 Encoding: 7703 7703 Width: 600 HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 546 80<178 422> DStem: 419 850 465 794 286 739 332 682 Ref: 180 N 1 0 0 1 13 170 Ref: 275 N 1 0 0 1 0 0 EndChar StartChar: uni1E18 Encoding: 7704 7704 Width: 600 HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> DStem: 315 -129 315 -40 427 -226 466 -169 315 -129 315 -40 427 -226 466 -169 315 -40 315 -129 163 -169 202 -226 315 -129 315 -40 427 -226 466 -169 315 -40 315 -129 163 -169 202 -226 315 -129 315 -40 427 -226 466 -169 315 -40 315 -129 163 -169 202 -226 315 -129 315 -40 427 -226 466 -169 315 -40 315 -129 163 -169 202 -226 315 -129 315 -40 427 -226 466 -169 315 -40 315 -129 163 -169 202 -226 Ref: 710 N 1 0 0 1 14 -736 Ref: 69 N 1 0 0 1 0 0 EndChar StartChar: uni1E19 Encoding: 7705 7705 Width: 600 HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> DStem: 297 -145 297 -56 409 -242 448 -185 297 -145 297 -56 409 -242 448 -185 297 -56 297 -145 145 -185 184 -242 297 -145 297 -56 409 -242 448 -185 297 -56 297 -145 145 -185 184 -242 297 -145 297 -56 409 -242 448 -185 297 -56 297 -145 145 -185 184 -242 297 -145 297 -56 409 -242 448 -185 297 -56 297 -145 145 -185 184 -242 297 -145 297 -56 409 -242 448 -185 297 -56 297 -145 145 -185 184 -242 Ref: 710 N 1 0 0 1 -4 -752 Ref: 101 N 1 0 0 1 0 0 EndChar StartChar: uni1E1A Encoding: 7706 7706 Width: 600 HStem: -173 69<385 392> -109 69<238 243> 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> Ref: 732 N 1 0 0 1 14 -696 Ref: 69 N 1 0 0 1 0 0 EndChar StartChar: uni1E1B Encoding: 7707 7707 Width: 600 HStem: -189 69<368 375> -125 69<221 226> -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> Ref: 732 N 1 0 0 1 -3 -712 Ref: 101 N 1 0 0 1 0 0 EndChar StartChar: uni1E1C Encoding: 7708 7708 Width: 600 HStem: -221 70<310.5 330.5> 0 100<61 93 195 450 299.5 319> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 637 68<276.5 331.5> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 280 70<-33 8> 355 70<-134 -115.5> 428 100<415 483> 450 100<100 171> Ref: 728 N 1 0 0 1 4 134 Ref: 552 N 1 0 0 1 0 0 EndChar StartChar: uni1E1D Encoding: 7709 7709 Width: 600 HStem: -237 70<292.5 312.5> -16 100<262 329 281.5 301> 172 88<145 439> 350 100<255.5 328.5> 490 68<263.5 318.5> VStem: 262 70<-49 -8> 337 70<-150 -131.5> Ref: 728 N 1 0 0 1 -9 -13 Ref: 553 N 1 0 0 1 0 0 EndChar StartChar: uni1E1E Encoding: 7710 7710 Width: 600 HStem: 0 100<79 94 194 294> 243 99<194 279> 483 100<79 94 194 194 194 450> 637 120<303.067 318> VStem: 94 100<100 243 342 483> 254 120<695 701> 450 100<432 483 483 483> Ref: 729 N 1 0 0 1 14 103 Ref: 70 N 1 0 0 1 0 0 EndChar StartChar: uni1E1F Encoding: 7711 7711 Width: 600 HStem: 0 100<141 199 299 438> 337 100<153 199 299 450> 523 100<354.5 398.5> 663 120<381.067 396> VStem: 199 100<100 337 437 474> 332 120<721 727> Ref: 729 N 1 0 0 1 92 129 Ref: 102 N 1 0 0 1 0 0 EndChar StartChar: uni1E20 Encoding: 7712 7712 Width: 600 HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344> 637 80<288 532> VStem: 33 100<246 253 253 317> 450 100<111 180> Ref: 175 N 1 0 0 1 110 91 Ref: 71 N 1 0 0 1 0 0 EndChar StartChar: uni1E21 Encoding: 7713 7713 Width: 600 HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296> 491 80<147 391> VStem: 33 100<182 255.5> 410 100<-20 35 35 35 181 254.5> Ref: 175 N 1 0 0 1 -31 -55 Ref: 103 N 1 0 0 1 0 0 EndChar StartChar: uni1E22 Encoding: 7714 7714 Width: 600 HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5> 637 120<291.067 306> VStem: 95 100<100 241 341 483> 242 120<695 701> 409 100<100 241 241 241 341 483> Ref: 729 N 1 0 0 1 2 103 Ref: 72 N 1 0 0 1 0 0 EndChar StartChar: uni1E23 Encoding: 7715 7715 Width: 600 HStem: 0 20 350 100<306 336.5> 664 120<134.067 149> VStem: 85 120<722 728> 95 100<100 283 389 524 524 524> 409 100<100 271 271 284> Ref: 729 N 1 0 0 1 -155 130 Ref: 104 N 1 0 0 1 0 0 EndChar StartChar: uni1E24 Encoding: 7716 7716 Width: 600 HStem: -160 120<291.067 306> 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5> VStem: 95 100<100 241 341 483> 242 120<-102 -96> 409 100<100 241 241 241 341 483> Ref: 729 N 1 0 0 1 2 -694 Ref: 72 N 1 0 0 1 0 0 EndChar StartChar: uni1E25 Encoding: 7717 7717 Width: 600 HStem: -160 120<291.067 306> 0 20 350 100<306 336.5> VStem: 95 100<100 283 389 524 524 524> 242 120<-102 -96> 409 100<100 271 271 284> Ref: 729 N 1 0 0 1 2 -694 Ref: 104 N 1 0 0 1 0 0 EndChar StartChar: uni1E26 Encoding: 7718 7718 Width: 600 HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5> VStem: 95 100<100 241 341 483> 138 120<680.5 713> 346 120<680.5 713> 409 100<100 241 241 241 341 483> Ref: 168 N 1 0 0 1 2 103 Ref: 72 N 1 0 0 1 0 0 EndChar StartChar: uni1E27 Encoding: 7719 7719 Width: 600 HStem: 0 20 350 100<306 336.5> VStem: 95 100<100 283 389 524 524 524> 133 120<707.5 740> 341 120<707.5 740> 409 100<100 271 271 284> Ref: 168 N 1 0 0 1 -3 130 Ref: 104 N 1 0 0 1 0 0 EndChar StartChar: uni1E28 Encoding: 7720 7720 Width: 600 HStem: -221 70<140.5 160.5> -92 100<129.5 149> 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5> VStem: 95 100<100 241 341 483> 110 70<-33 8> 185 70<-134 -115.5> 409 100<100 241 241 241 341 483> Ref: 184 N 1 0 0 1 -152 8 Ref: 72 N 1 0 0 1 0 0 EndChar StartChar: uni1E29 Encoding: 7721 7721 Width: 600 HStem: -221 70<140.5 160.5> -92 100<129.5 149> 0 20 350 100<306 336.5> VStem: 95 100<100 283 389 524 524 524> 110 70<-33 8> 185 70<-134 -115.5> 409 100<100 271 271 284> Ref: 184 N 1 0 0 1 -152 8 Ref: 104 N 1 0 0 1 0 0 EndChar StartChar: uni1E2A Encoding: 7722 7722 Width: 600 HStem: -224 68<274.5 329.5> 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5> VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483> Ref: 728 N 1 0 0 1 2 -727 Ref: 72 N 1 0 0 1 0 0 EndChar StartChar: uni1E2B Encoding: 7723 7723 Width: 600 HStem: -224 68<274.5 329.5> 0 20 350 100<306 336.5> VStem: 95 100<100 283 389 524 524 524> 409 100<100 271 271 284> Ref: 728 N 1 0 0 1 2 -727 Ref: 104 N 1 0 0 1 0 0 EndChar StartChar: uni1E2C Encoding: 7724 7724 Width: 600 HStem: -173 69<371 378> -109 69<224 229> 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> VStem: 250 100<100 483> Ref: 732 N 1 0 0 1 0 -696 Ref: 73 N 1 0 0 1 0 0 EndChar StartChar: uni1E2D Encoding: 7725 7725 Width: 600 HStem: -173 69<371 378> -109 69<224 229> 0 100<110 249 350 478> 337 100<158 249> 518 105<219 335> VStem: 218 118<519 622> 250 100<100 337> Ref: 732 N 1 0 0 1 0 -696 Ref: 105 N 1 0 0 1 0 0 EndChar StartChar: uni1E2E Encoding: 7726 7726 Width: 600 HStem: 0 100<131 249 351 467> 483 100<131 249 351 467> 678 120<185.067 198 393.067 406> VStem: 136 120<736 740> 250 100<100 483> 344 120<736 740> DStem: 419 1022 465 966 286 911 332 854 Ref: 180 N 1 0 0 1 13 342 Ref: 207 N 1 0 0 1 0 0 EndChar StartChar: uni1E2F Encoding: 7727 7727 Width: 600 HStem: 0 100<110 249 350 478> 337 100<158 249> 534 120<171 181 382 389> VStem: 119 120<592 596> 250 100<100 337> 327 120<592 596> DStem: 402 878 448 822 269 767 315 710 Ref: 180 N 1 0 0 1 -4 198 Ref: 239 N 1 0 0 1 0 0 EndChar StartChar: uni1E30 Encoding: 7728 7728 Width: 600 HStem: 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5> VStem: 94 100<100 208 334 483> DStem: 412 821 458 765 279 710 325 653 Ref: 180 N 1 0 0 1 6 141 Ref: 75 N 1 0 0 1 0 0 EndChar StartChar: uni1E31 Encoding: 7729 7729 Width: 600 HStem: 0 100<81.7263 114 471 525> 337 100<429 473> 524 100<81 114> VStem: 115 100<100 164 288 524> 278 245<384 389> 320 251<48 52> DStem: 233 178 311 241 336 87 471 100 284 848 330 792 151 737 197 680 294 350 429 337 215 287 311 241 Ref: 180 N 1 0 0 1 -122 168 Ref: 107 N 1 0 0 1 0 0 EndChar StartChar: uni1E32 Encoding: 7730 7730 Width: 600 HStem: -160 120<297.067 312> 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5> VStem: 94 100<100 208 334 483> 248 120<-102 -96> Ref: 729 N 1 0 0 1 8 -694 Ref: 75 N 1 0 0 1 0 0 EndChar StartChar: uni1E33 Encoding: 7731 7731 Width: 600 HStem: -160 120<291.067 306> 0 100<81.7263 114 471 525> 337 100<429 473> 524 100<81 114> VStem: 115 100<100 164 288 524> 242 120<-102 -96> 278 245<384 389> 320 251<48 52> DStem: 233 178 311 241 336 87 471 100 294 350 429 337 215 287 311 241 Ref: 729 N 1 0 0 1 2 -694 Ref: 107 N 1 0 0 1 0 0 EndChar StartChar: uni1E34 Encoding: 7732 7732 Width: 600 HStem: -120 80<186 430> 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5> VStem: 94 100<100 208 334 483> Ref: 175 N 1 0 0 1 8 -666 Ref: 75 N 1 0 0 1 0 0 EndChar StartChar: uni1E35 Encoding: 7733 7733 Width: 600 HStem: -120 80<180 424> 0 100<81.7263 114 471 525> 337 100<429 473> 524 100<81 114> VStem: 115 100<100 164 288 524> 278 245<384 389> 320 251<48 52> DStem: 233 178 311 241 336 87 471 100 294 350 429 337 215 287 311 241 Ref: 175 N 1 0 0 1 2 -666 Ref: 107 N 1 0 0 1 0 0 EndChar StartChar: uni1E36 Encoding: 7734 7734 Width: 600 HStem: -160 120<324.067 339> 0 100<99 156 256 471> 483 100<99 156 256 313 256 256> VStem: 156 100<100 483> 275 120<-102 -96> 471 100<100 192> Ref: 729 N 1 0 0 1 35 -694 Ref: 76 N 1 0 0 1 0 0 EndChar StartChar: uni1E37 Encoding: 7735 7735 Width: 600 HStem: -160 120<289.067 304> 0 100<128 250 350 472> 524 100<172 250> VStem: 240 120<-102 -96> 250 100<100 524 524 524> Ref: 729 N 1 0 0 1 0 -694 Ref: 108 N 1 0 0 1 0 0 EndChar StartChar: uni1E38 Encoding: 7736 7736 Width: 600 HStem: -160 120<324.067 339> 0 100<99 156 256 471> 483 100<99 156 256 313 256 256> 637 80<84 328> VStem: 156 100<100 483> 275 120<-102 -96> 471 100<100 192> Ref: 175 N 1 0 0 1 -94 91 Ref: 7734 N 1 0 0 1 0 0 EndChar StartChar: uni1E39 Encoding: 7737 7737 Width: 600 HStem: -160 120<289.067 304> 0 100<128 250 350 472> 524 100<172 250> 664 80<139 383> VStem: 240 120<-102 -96> 250 100<100 524 524 524> Ref: 175 N 1 0 0 1 -39 118 Ref: 7735 N 1 0 0 1 0 0 EndChar StartChar: uni1E3A Encoding: 7738 7738 Width: 600 HStem: -120 80<213 457> 0 100<99 156 256 471> 483 100<99 156 256 313 256 256> VStem: 156 100<100 483> 471 100<100 192> Ref: 175 N 1 0 0 1 35 -666 Ref: 76 N 1 0 0 1 0 0 EndChar StartChar: uni1E3B Encoding: 7739 7739 Width: 600 HStem: -120 80<178 422> 0 100<128 250 350 472> 524 100<172 250> VStem: 250 100<100 524 524 524> Ref: 175 N 1 0 0 1 0 -666 Ref: 108 N 1 0 0 1 0 0 EndChar StartChar: uni1E3C Encoding: 7740 7740 Width: 600 HStem: 0 100<99 156 256 471> 483 100<99 156 256 313 256 256> VStem: 156 100<100 483> 471 100<100 192> DStem: 335 -129 335 -40 447 -226 486 -169 335 -129 335 -40 447 -226 486 -169 335 -40 335 -129 183 -169 222 -226 335 -129 335 -40 447 -226 486 -169 335 -40 335 -129 183 -169 222 -226 335 -129 335 -40 447 -226 486 -169 335 -40 335 -129 183 -169 222 -226 335 -129 335 -40 447 -226 486 -169 335 -40 335 -129 183 -169 222 -226 335 -129 335 -40 447 -226 486 -169 335 -40 335 -129 183 -169 222 -226 Ref: 710 N 1 0 0 1 34 -736 Ref: 76 N 1 0 0 1 0 0 EndChar StartChar: uni1E3D Encoding: 7741 7741 Width: 600 HStem: 0 100<128 250 350 472> 524 100<172 250> VStem: 250 100<100 524 524 524> DStem: 301 -129 301 -40 413 -226 452 -169 301 -129 301 -40 413 -226 452 -169 301 -40 301 -129 149 -169 188 -226 301 -129 301 -40 413 -226 452 -169 301 -40 301 -129 149 -169 188 -226 301 -129 301 -40 413 -226 452 -169 301 -40 301 -129 149 -169 188 -226 301 -129 301 -40 413 -226 452 -169 301 -40 301 -129 149 -169 188 -226 301 -129 301 -40 413 -226 452 -169 301 -40 301 -129 149 -169 188 -226 Ref: 710 N 1 0 0 1 -0 -736 Ref: 108 N 1 0 0 1 0 0 EndChar StartChar: uni1E3E Encoding: 7742 7742 Width: 600 HStem: 0 100<29 41 143 189 413 461 563 573> 563 20<438 548> VStem: -19 262<48 52> 42 100<100 388> 361 262<48 52> 462 100<100 388> DStem: 142 389 165 583 260 138 303 286 171 821 217 765 38 710 84 653 438 583 462 389 303 286 351 138 Ref: 180 N 1 0 0 1 -235 141 Ref: 77 N 1 0 0 1 0 0 EndChar StartChar: uni1E3F Encoding: 7743 7743 Width: 600 HStem: 0 21<48 136 252 346 463 557> 0.967046 99.033<28 40 141.031 156.045 352.031 366.367 563 573> 350 100<216 228 427 434> 417 20<48 141> VStem: 41 100<100 305> 252 100<100 305> 252 160<48 52> 463 100<100 321> 463 160<48 52> DStem: 448 674 494 618 315 563 361 506 Ref: 180 N 1 0 0 1 42 -6 Ref: 109 N 1 0 0 1 0 0 EndChar StartChar: uni1E40 Encoding: 7744 7744 Width: 600 HStem: 0 100<29 41 143 189 413 461 563 573> 563 20<438 548> 637 120<41.0667 56> VStem: -19 262<48 52> -8 120<695 701> 42 100<100 388> 361 262<48 52> 462 100<100 388> DStem: 142 389 165 583 260 138 303 286 438 583 462 389 303 286 351 138 Ref: 729 N 1 0 0 1 -248 103 Ref: 77 N 1 0 0 1 0 0 EndChar StartChar: uni1E41 Encoding: 7745 7745 Width: 600 HStem: 0 21<48 136 252 346 463 557> 0.967046 99.033<28 40 141.031 156.045 352.031 366.367 563 573> 350 100<216 228 427 434> 417 20<48 141> 490 120<318.067 333> VStem: 41 100<100 305> 252 100<100 305> 252 160<48 52> 269 120<548 554> 463 100<100 321> 463 160<48 52> Ref: 729 N 1 0 0 1 29 -44 Ref: 109 N 1 0 0 1 0 0 EndChar StartChar: uni1E42 Encoding: 7746 7746 Width: 600 HStem: -160 120<291.067 306> 0 100<29 41 143 189 413 461 563 573> 563 20<438 548> VStem: -19 262<48 52> 42 100<100 388> 242 120<-102 -96> 361 262<48 52> 462 100<100 388> DStem: 142 389 165 583 260 138 303 286 438 583 462 389 303 286 351 138 Ref: 729 N 1 0 0 1 2 -694 Ref: 77 N 1 0 0 1 0 0 EndChar StartChar: uni1E43 Encoding: 7747 7747 Width: 600 HStem: -160 120<291.067 306> 0 21<48 136 252 346 463 557> 0.967046 99.033<28 40 141.031 156.045 352.031 366.367 563 573> 350 100<216 228 427 434> 417 20<48 141> VStem: 41 100<100 305> 242 120<-102 -96> 252 100<100 305> 252 160<48 52> 463 100<100 321> 463 160<48 52> Ref: 729 N 1 0 0 1 2 -694 Ref: 109 N 1 0 0 1 0 0 EndChar StartChar: uni1E44 Encoding: 7748 7748 Width: 600 HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5> 637 120<281.067 296> VStem: 73 100<100 394> 232 120<695 701> 431 100<191 483> Ref: 729 N 1 0 0 1 -8 103 Ref: 78 N 1 0 0 1 0 0 EndChar StartChar: uni1E45 Encoding: 7749 7749 Width: 600 HStem: 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20<101 195> 490 120<286.067 301> VStem: 95 100<100 282> 237 120<548 554> 410 100<100 288> Ref: 729 N 1 0 0 1 -3 -44 Ref: 110 N 1 0 0 1 0 0 EndChar StartChar: uni1E46 Encoding: 7750 7750 Width: 600 HStem: -160 120<294.067 309> 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5> VStem: 73 100<100 394> 245 120<-102 -96> 431 100<191 483> Ref: 729 N 1 0 0 1 5 -694 Ref: 78 N 1 0 0 1 0 0 EndChar StartChar: uni1E47 Encoding: 7751 7751 Width: 600 HStem: -160 120<286.067 301> 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20<101 195> VStem: 95 100<100 282> 237 120<-102 -96> 410 100<100 288> Ref: 729 N 1 0 0 1 -3 -694 Ref: 110 N 1 0 0 1 0 0 EndChar StartChar: uni1E48 Encoding: 7752 7752 Width: 600 HStem: -120 80<183 427> 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5> VStem: 73 100<100 394> 431 100<191 483> Ref: 175 N 1 0 0 1 5 -666 Ref: 78 N 1 0 0 1 0 0 EndChar StartChar: uni1E49 Encoding: 7753 7753 Width: 600 HStem: -120 80<175 419> 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20<101 195> VStem: 95 100<100 282> 410 100<100 288> Ref: 175 N 1 0 0 1 -3 -666 Ref: 110 N 1 0 0 1 0 0 EndChar StartChar: uni1E4A Encoding: 7754 7754 Width: 600 HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5> VStem: 73 100<100 394> 431 100<191 483> DStem: 305 -129 305 -40 417 -226 456 -169 305 -129 305 -40 417 -226 456 -169 305 -40 305 -129 153 -169 192 -226 305 -129 305 -40 417 -226 456 -169 305 -40 305 -129 153 -169 192 -226 305 -129 305 -40 417 -226 456 -169 305 -40 305 -129 153 -169 192 -226 305 -129 305 -40 417 -226 456 -169 305 -40 305 -129 153 -169 192 -226 305 -129 305 -40 417 -226 456 -169 305 -40 305 -129 153 -169 192 -226 Ref: 710 N 1 0 0 1 4 -736 Ref: 78 N 1 0 0 1 0 0 EndChar StartChar: uni1E4B Encoding: 7755 7755 Width: 600 HStem: 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20<101 195> VStem: 95 100<100 282> 410 100<100 288> DStem: 297 -129 297 -40 409 -226 448 -169 297 -129 297 -40 409 -226 448 -169 297 -40 297 -129 145 -169 184 -226 297 -129 297 -40 409 -226 448 -169 297 -40 297 -129 145 -169 184 -226 297 -129 297 -40 409 -226 448 -169 297 -40 297 -129 145 -169 184 -226 297 -129 297 -40 409 -226 448 -169 297 -40 297 -129 145 -169 184 -226 297 -129 297 -40 409 -226 448 -169 297 -40 297 -129 145 -169 184 -226 Ref: 710 N 1 0 0 1 -4 -736 Ref: 110 N 1 0 0 1 0 0 EndChar StartChar: uni1E4C Encoding: 7756 7756 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> 730 69<225 241> VStem: 21 100<235.5 348> 479 100<234 335> DStem: 465 1023 511 967 332 912 378 855 Ref: 180 N 1 0 0 1 59 343 Ref: 213 N 1 0 0 1 0 0 EndChar StartChar: uni1E4D Encoding: 7757 7757 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 587 69<225 241> VStem: 42 100<179.5 255> 458 100<179.5 254> DStem: 465 880 511 824 332 769 378 712 Ref: 180 N 1 0 0 1 59 200 Ref: 245 N 1 0 0 1 0 0 EndChar StartChar: uni1E4E Encoding: 7758 7758 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> 730 69<225 241> VStem: 21 100<235.5 348> 182 120<882.5 915> 390 120<882.5 915> 479 100<234 335> Ref: 168 N 1 0 0 1 46 305 Ref: 213 N 1 0 0 1 0 0 EndChar StartChar: uni1E4F Encoding: 7759 7759 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 587 69<225 241> VStem: 42 100<179.5 255> 182 120<739.5 772> 390 120<739.5 772> 458 100<179.5 254> Ref: 168 N 1 0 0 1 46 162 Ref: 245 N 1 0 0 1 0 0 EndChar StartChar: uni1E50 Encoding: 7760 7760 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> 689 80<178 422> VStem: 21 100<235.5 348> 479 100<234 335> DStem: 135 937 181 993 268 825 314 882 Ref: 96 N 1 0 0 1 -13 313 Ref: 332 N 1 0 0 1 0 0 EndChar StartChar: uni1E51 Encoding: 7761 7761 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 546 80<178 422> VStem: 42 100<179.5 255> 458 100<179.5 254> DStem: 135 794 181 850 268 682 314 739 Ref: 96 N 1 0 0 1 -13 170 Ref: 333 N 1 0 0 1 0 0 EndChar StartChar: uni1E52 Encoding: 7762 7762 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> 689 80<178 422> VStem: 21 100<235.5 348> 479 100<234 335> DStem: 419 993 465 937 286 882 332 825 Ref: 180 N 1 0 0 1 13 313 Ref: 332 N 1 0 0 1 0 0 EndChar StartChar: uni1E53 Encoding: 7763 7763 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 546 80<178 422> VStem: 42 100<179.5 255> 458 100<179.5 254> DStem: 419 850 465 794 286 739 332 682 Ref: 180 N 1 0 0 1 13 170 Ref: 333 N 1 0 0 1 0 0 EndChar StartChar: uni1E54 Encoding: 7764 7764 Width: 600 HStem: 0 100<79 94 194 293> 200 100<194 292> 483 100<79 94 194 312 194 194> VStem: 94 100<100 200 300 483> 423 106<371 419.5> DStem: 314 821 360 765 181 710 227 653 Ref: 180 N 1 0 0 1 -92 141 Ref: 80 N 1 0 0 1 0 0 EndChar StartChar: uni1E55 Encoding: 7765 7765 Width: 600 HStem: -205 100<58 74 174 232> 10 100<299.5 366> 350 100<302 343.5> VStem: 74 100<-105 66 195.5 247> 471 100<195 246.5> DStem: 446 674 492 618 313 563 359 506 Ref: 180 N 1 0 0 1 40 -6 Ref: 112 N 1 0 0 1 0 0 EndChar StartChar: uni1E56 Encoding: 7766 7766 Width: 600 HStem: 0 100<79 94 194 293> 200 100<194 292> 483 100<79 94 194 312 194 194> 637 120<185.067 200> VStem: 94 100<100 200 300 483> 136 120<695 701> 423 106<371 419.5> Ref: 729 N 1 0 0 1 -104 103 Ref: 80 N 1 0 0 1 0 0 EndChar StartChar: uni1E57 Encoding: 7767 7767 Width: 600 HStem: -205 100<58 74 174 232> 10 100<299.5 366> 350 100<302 343.5> 490 120<316.067 331> VStem: 74 100<-105 66 195.5 247> 267 120<548 554> 471 100<195 246.5> Ref: 729 N 1 0 0 1 27 -44 Ref: 112 N 1 0 0 1 0 0 EndChar StartChar: uni1E58 Encoding: 7768 7768 Width: 600 HStem: 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306> 637 120<179.067 194> VStem: 94 100<100 222 322 483> 130 120<695 701> 416 106<383 429.5> Ref: 729 N 1 0 0 1 -110 103 Ref: 82 N 1 0 0 1 0 0 EndChar StartChar: uni1E59 Encoding: 7769 7769 Width: 600 HStem: 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447> 490 120<301.067 316> VStem: 178 100<100 247> 252 120<548 554> Ref: 729 N 1 0 0 1 12 -44 Ref: 114 N 1 0 0 1 0 0 EndChar StartChar: uni1E5A Encoding: 7770 7770 Width: 600 HStem: -160 120<305.067 320> 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306> VStem: 94 100<100 222 322 483> 256 120<-102 -96> 416 106<383 429.5> Ref: 729 N 1 0 0 1 16 -694 Ref: 82 N 1 0 0 1 0 0 EndChar StartChar: uni1E5B Encoding: 7771 7771 Width: 600 HStem: -160 120<257.067 272> 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447> VStem: 178 100<100 247> 208 120<-102 -96> Ref: 729 N 1 0 0 1 -32 -694 Ref: 114 N 1 0 0 1 0 0 EndChar StartChar: uni1E5C Encoding: 7772 7772 Width: 600 HStem: -160 120<305.067 320> 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306> 637 80<68 312> VStem: 94 100<100 222 322 483> 256 120<-102 -96> 416 106<383 429.5> Ref: 175 N 1 0 0 1 -110 91 Ref: 7770 N 1 0 0 1 0 0 EndChar StartChar: uni1E5D Encoding: 7773 7773 Width: 600 HStem: -160 120<257.067 272> 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447> 490 80<323 567> VStem: 178 100<100 247> 208 120<-102 -96> Ref: 175 N 1 0 0 1 145 -56 Ref: 7771 N 1 0 0 1 0 0 EndChar StartChar: uni1E5E Encoding: 7774 7774 Width: 600 HStem: -120 80<194 438> 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306> VStem: 94 100<100 222 322 483> 416 106<383 429.5> Ref: 175 N 1 0 0 1 16 -666 Ref: 82 N 1 0 0 1 0 0 EndChar StartChar: uni1E5F Encoding: 7775 7775 Width: 600 HStem: -120 80<146 390> 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447> VStem: 178 100<100 247> Ref: 175 N 1 0 0 1 -32 -666 Ref: 114 N 1 0 0 1 0 0 EndChar StartChar: uni1E60 Encoding: 7776 7776 Width: 600 HStem: -14 100<282 339> 497 100<267.5 324.5> 637 120<373.067 388> VStem: 82 104<410.5 442.5> 324 120<695 701> 434 104<140.5 172.5> Ref: 729 N 1 0 0 1 84 103 Ref: 83 N 1 0 0 1 0 0 EndChar StartChar: uni1E61 Encoding: 7777 7777 Width: 600 HStem: -16 100<275.5 332> 350 100<275.5 322> 490 120<367.067 382> VStem: 92 110<310.5 324> 318 120<548 554> 417 110<115.5 133.5> Ref: 729 N 1 0 0 1 78 -44 Ref: 115 N 1 0 0 1 0 0 EndChar StartChar: uni1E62 Encoding: 7778 7778 Width: 600 HStem: -174 120<298.067 313> -14 100<282 339> 497 100<267.5 324.5> VStem: 82 104<410.5 442.5> 249 120<-116 -110> 434 104<140.5 172.5> Ref: 729 N 1 0 0 1 9 -708 Ref: 83 N 1 0 0 1 0 0 EndChar StartChar: uni1E63 Encoding: 7779 7779 Width: 600 HStem: -176 120<293.067 308> -16 100<275.5 332> 350 100<275.5 322> VStem: 92 110<310.5 324> 244 120<-118 -112> 417 110<115.5 133.5> Ref: 729 N 1 0 0 1 4 -710 Ref: 115 N 1 0 0 1 0 0 EndChar StartChar: uni1E64 Encoding: 7780 7780 Width: 600 HStem: -14 100<282 339> 497 100<267.5 324.5> 879 120<427.067 442> VStem: 82 104<410.5 442.5> 378 120<937 943> 434 104<140.5 172.5> Ref: 729 N 1 0 0 1 138 345 Ref: 346 N 1 0 0 1 0 0 EndChar StartChar: uni1E65 Encoding: 7781 7781 Width: 600 HStem: -16 100<275.5 332> 350 100<275.5 322> 736 120<427.067 442> VStem: 92 110<310.5 324> 378 120<794 800> 417 110<115.5 133.5> Ref: 729 N 1 0 0 1 138 202 Ref: 347 N 1 0 0 1 0 0 EndChar StartChar: uni1E66 Encoding: 7782 7782 Width: 600 HStem: -14 100<286 324> 1 198<110 115> 497 100<286 318> 879 120<303.067 318> VStem: 82 104<418 431> 254 120<937 943> 434 104<153 164> DStem: 162 748 201 806 314 620 314 709 426 806 465 748 314 709 314 620 Ref: 729 N 1 0 0 1 14 345 Ref: 352 N 1 0 0 1 0 0 EndChar StartChar: uni1E67 Encoding: 7783 7783 Width: 600 HStem: -16 100<281 314> 1 166<121 135> 350 100<281 314> 736 120<299.067 314> VStem: 92 110<311 317> 250 120<794 800> 417 110<122 129> DStem: 158 605 197 662 310 477 310 566 422 662 461 605 310 566 310 477 Ref: 729 N 1 0 0 1 10 202 Ref: 353 N 1 0 0 1 0 0 EndChar StartChar: uni1E68 Encoding: 7784 7784 Width: 600 HStem: -174 120<298.067 313> -14 100<282 339> 497 100<267.5 324.5> 637 120<373.067 388> VStem: 82 104<410.5 442.5> 249 120<-116 -110> 324 120<695 701> 434 104<140.5 172.5> Ref: 729 N 1 0 0 1 84 103 Ref: 7778 N 1 0 0 1 0 0 EndChar StartChar: uni1E69 Encoding: 7785 7785 Width: 600 HStem: -176 120<293.067 308> -16 100<275.5 332> 350 100<275.5 322> 490 120<367.067 382> VStem: 92 110<310.5 324> 244 120<-118 -112> 318 120<548 554> 417 110<115.5 133.5> Ref: 729 N 1 0 0 1 78 -44 Ref: 7779 N 1 0 0 1 0 0 EndChar StartChar: uni1E6A Encoding: 7786 7786 Width: 600 HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349> 637 120<289.067 304> VStem: 42 100<390 483> 240 120<695 701> 249 100<100 483> 458 100<390 483 483 483> Ref: 729 N 1 0 0 1 0 103 Ref: 84 N 1 0 0 1 0 0 EndChar StartChar: uni1E6B Encoding: 7787 7787 Width: 600 HStem: -16 100<281 325> 337 100<79 114 214 395> 571 20<156 172.5> 631 120<153.067 168> VStem: 104 120<689 695> 114 100<130.5 141 141 337 437 525> Ref: 729 N 1 0 0 1 -136 97 Ref: 116 N 1 0 0 1 0 0 EndChar StartChar: uni1E6C Encoding: 7788 7788 Width: 600 HStem: -160 120<289.067 304> 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349> VStem: 42 100<390 483> 240 120<-102 -96> 249 100<100 483> 458 100<390 483 483 483> Ref: 729 N 1 0 0 1 -0 -694 Ref: 84 N 1 0 0 1 0 0 EndChar StartChar: uni1E6D Encoding: 7789 7789 Width: 600 HStem: -176 120<288.067 303> -16 100<281 325> 337 100<79 114 214 395> 571 20<156 172.5> VStem: 114 100<130.5 141 141 337 437 525> 239 120<-118 -112> Ref: 729 N 1 0 0 1 -1 -710 Ref: 116 N 1 0 0 1 0 0 EndChar StartChar: uni1E6E Encoding: 7790 7790 Width: 600 HStem: -120 80<178 422> 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349> VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483> Ref: 175 N 1 0 0 1 -0 -666 Ref: 84 N 1 0 0 1 0 0 EndChar StartChar: uni1E6F Encoding: 7791 7791 Width: 600 HStem: -136 80<177 421> -16 100<281 325> 337 100<79 114 214 395> 571 20<156 172.5> VStem: 114 100<130.5 141 141 337 437 525> Ref: 175 N 1 0 0 1 -1 -682 Ref: 116 N 1 0 0 1 0 0 EndChar StartChar: uni1E70 Encoding: 7792 7792 Width: 600 HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349> VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483> DStem: 300 -129 300 -40 412 -226 451 -169 300 -129 300 -40 412 -226 451 -169 300 -40 300 -129 148 -169 187 -226 300 -129 300 -40 412 -226 451 -169 300 -40 300 -129 148 -169 187 -226 300 -129 300 -40 412 -226 451 -169 300 -40 300 -129 148 -169 187 -226 300 -129 300 -40 412 -226 451 -169 300 -40 300 -129 148 -169 187 -226 300 -129 300 -40 412 -226 451 -169 300 -40 300 -129 148 -169 187 -226 Ref: 710 N 1 0 0 1 -1 -736 Ref: 84 N 1 0 0 1 0 0 EndChar StartChar: uni1E71 Encoding: 7793 7793 Width: 600 HStem: -16 100<281 325> 337 100<79 114 214 395> 571 20<156 172.5> VStem: 114 100<130.5 141 141 337 437 525> DStem: 299 -145 299 -56 411 -242 450 -185 299 -145 299 -56 411 -242 450 -185 299 -56 299 -145 147 -185 186 -242 299 -145 299 -56 411 -242 450 -185 299 -56 299 -145 147 -185 186 -242 299 -145 299 -56 411 -242 450 -185 299 -56 299 -145 147 -185 186 -242 299 -145 299 -56 411 -242 450 -185 299 -56 299 -145 147 -185 186 -242 299 -145 299 -56 411 -242 450 -185 299 -56 299 -145 147 -185 186 -242 Ref: 710 N 1 0 0 1 -2 -752 Ref: 116 N 1 0 0 1 0 0 EndChar StartChar: uni1E72 Encoding: 7794 7794 Width: 600 HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> VStem: 71 100<205 483> 136 120<-130.5 -98> 344 120<-130.5 -98> 429 100<196 205 205 483> Ref: 168 N 1 0 0 1 0 -708 Ref: 85 N 1 0 0 1 0 0 EndChar StartChar: uni1E73 Encoding: 7795 7795 Width: 600 HStem: -13 100<253 300.5> 337 100<375 410> VStem: 95 100<156 159 159 338 338 338> 109 120<-129.5 -97> 317 120<-129.5 -97> 410 100<155 337 337 337> Ref: 168 N 1 0 0 1 -27 -707 Ref: 117 N 1 0 0 1 0 0 EndChar StartChar: uni1E74 Encoding: 7796 7796 Width: 600 HStem: -187 69<371 378> -123 69<224 229> -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> VStem: 71 100<205 483> 429 100<196 205 205 483> Ref: 732 N 1 0 0 1 0 -710 Ref: 85 N 1 0 0 1 0 0 EndChar StartChar: uni1E75 Encoding: 7797 7797 Width: 600 HStem: -186 69<344 351> -122 69<197 202> -13 100<253 300.5> 337 100<375 410> VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337> Ref: 732 N 1 0 0 1 -27 -709 Ref: 117 N 1 0 0 1 0 0 EndChar StartChar: uni1E76 Encoding: 7798 7798 Width: 600 HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> VStem: 71 100<205 483> 429 100<196 205 205 483> DStem: 301 -143 301 -54 413 -240 452 -183 301 -143 301 -54 413 -240 452 -183 301 -54 301 -143 149 -183 188 -240 301 -143 301 -54 413 -240 452 -183 301 -54 301 -143 149 -183 188 -240 301 -143 301 -54 413 -240 452 -183 301 -54 301 -143 149 -183 188 -240 301 -143 301 -54 413 -240 452 -183 301 -54 301 -143 149 -183 188 -240 301 -143 301 -54 413 -240 452 -183 301 -54 301 -143 149 -183 188 -240 Ref: 710 N 1 0 0 1 -0 -750 Ref: 85 N 1 0 0 1 0 0 EndChar StartChar: uni1E77 Encoding: 7799 7799 Width: 600 HStem: -13 100<253 300.5> 337 100<375 410> VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337> DStem: 273 -142 273 -53 385 -239 424 -182 273 -142 273 -53 385 -239 424 -182 273 -53 273 -142 121 -182 160 -239 273 -142 273 -53 385 -239 424 -182 273 -53 273 -142 121 -182 160 -239 273 -142 273 -53 385 -239 424 -182 273 -53 273 -142 121 -182 160 -239 273 -142 273 -53 385 -239 424 -182 273 -53 273 -142 121 -182 160 -239 273 -142 273 -53 385 -239 424 -182 273 -53 273 -142 121 -182 160 -239 Ref: 710 N 1 0 0 1 -28 -749 Ref: 117 N 1 0 0 1 0 0 EndChar StartChar: uni1E78 Encoding: 7800 7800 Width: 600 HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 623 69<371 378> 687 69<224 229> VStem: 71 100<205 483> 429 100<196 205 205 483> DStem: 458 980 504 924 325 869 371 812 Ref: 180 N 1 0 0 1 52 300 Ref: 360 N 1 0 0 1 0 0 EndChar StartChar: uni1E79 Encoding: 7801 7801 Width: 600 HStem: -13 100<253 300.5> 337 100<375 410> 477 69<363 370> 541 69<216 221> VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337> DStem: 450 834 496 778 317 723 363 666 Ref: 180 N 1 0 0 1 44 154 Ref: 361 N 1 0 0 1 0 0 EndChar StartChar: uni1E7A Encoding: 7802 7802 Width: 600 HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 689 80<178 422> VStem: 71 100<205 483> 136 120<852.5 885> 344 120<852.5 885> 429 100<196 205 205 483> Ref: 168 N 1 0 0 1 0 275 Ref: 362 N 1 0 0 1 0 0 EndChar StartChar: uni1E7B Encoding: 7803 7803 Width: 600 HStem: -13 100<253 300.5> 337 100<375 410> 546 80<178 422> VStem: 95 100<156 159 159 338 338 338> 136 120<709.5 742> 344 120<709.5 742> 410 100<155 337 337 337> Ref: 168 N 1 0 0 1 0 132 Ref: 363 N 1 0 0 1 0 0 EndChar StartChar: uni1E7C Encoding: 7804 7804 Width: 600 HStem: 0 20 483 100<45 47 159 159 159 178 423 447 553 555 555 563.5> 637 69<371 378> 701 69<224 229> Ref: 732 N 1 0 0 1 0 114 Ref: 86 N 1 0 0 1 0 0 EndChar StartChar: uni1E7D Encoding: 7805 7805 Width: 600 HStem: 0 20 417 20<66 198 198 211 399 534 534 547> 490 69<371 378> 554 69<224 229> Ref: 732 N 1 0 0 1 0 -33 Ref: 118 N 1 0 0 1 0 0 EndChar StartChar: uni1E7E Encoding: 7806 7806 Width: 600 HStem: -160 120<287.067 302> 0 20 483 100<45 47 159 159 159 178 423 447 553 555 555 563.5> VStem: 238 120<-102 -96> Ref: 729 N 1 0 0 1 -2 -694 Ref: 86 N 1 0 0 1 0 0 EndChar StartChar: uni1E7F Encoding: 7807 7807 Width: 600 HStem: -160 120<288.067 303> 0 20 417 20<66 198 198 211 399 534 534 547> VStem: 239 120<-102 -96> Ref: 729 N 1 0 0 1 -1 -694 Ref: 118 N 1 0 0 1 0 0 EndChar StartChar: Wgrave Encoding: 7808 7808 Width: 600 HStem: 0 20 483 100<139 139 139 187 413 466> DStem: 135 765 181 821 268 653 314 710 Ref: 96 N 1 0 0 1 -13 141 Ref: 87 N 1 0 0 1 0 0 EndChar StartChar: wgrave Encoding: 7809 7809 Width: 600 HStem: 0 20 417 20<66 158 158 171 441 534 534 547> DStem: 135 618 181 674 268 506 314 563 Ref: 96 N 1 0 0 1 -13 -6 Ref: 119 N 1 0 0 1 0 0 EndChar StartChar: Wacute Encoding: 7810 7810 Width: 600 HStem: 0 20 483 100<139 139 139 187 413 466> DStem: 419 821 465 765 286 710 332 653 Ref: 180 N 1 0 0 1 13 141 Ref: 87 N 1 0 0 1 0 0 EndChar StartChar: wacute Encoding: 7811 7811 Width: 600 HStem: 0 20 417 20<66 158 158 171 441 534 534 547> DStem: 419 674 465 618 286 563 332 506 Ref: 180 N 1 0 0 1 13 -6 Ref: 119 N 1 0 0 1 0 0 EndChar StartChar: Wdieresis Encoding: 7812 7812 Width: 600 HStem: 0 20 483 100<139 139 139 187 413 466> VStem: 136 120<680.5 713> 344 120<680.5 713> Ref: 168 N 1 0 0 1 0 103 Ref: 87 N 1 0 0 1 0 0 EndChar StartChar: wdieresis Encoding: 7813 7813 Width: 600 HStem: 0 20 417 20<66 158 158 171 441 534 534 547> VStem: 136 120<533.5 566> 344 120<533.5 566> Ref: 168 N 1 0 0 1 0 -44 Ref: 119 N 1 0 0 1 0 0 EndChar StartChar: uni1E86 Encoding: 7814 7814 Width: 600 HStem: 0 20 483 100<139 139 139 187 413 466> 637 120<289.067 304> VStem: 240 120<695 701> Ref: 729 N 1 0 0 1 0 103 Ref: 87 N 1 0 0 1 0 0 EndChar StartChar: uni1E87 Encoding: 7815 7815 Width: 600 HStem: 0 20 417 20<66 158 158 171 441 534 534 547> 490 120<289.067 304> VStem: 240 120<548 554> Ref: 729 N 1 0 0 1 0 -44 Ref: 119 N 1 0 0 1 0 0 EndChar StartChar: uni1E88 Encoding: 7816 7816 Width: 600 HStem: -160 120<289.067 304> 0 20 483 100<139 139 139 187 413 466> VStem: 240 120<-102 -96> Ref: 729 N 1 0 0 1 0 -694 Ref: 87 N 1 0 0 1 0 0 EndChar StartChar: uni1E89 Encoding: 7817 7817 Width: 600 HStem: -160 120<291.067 306> 0 20 417 20<66 158 158 171 441 534 534 547> VStem: 242 120<-102 -96> Ref: 729 N 1 0 0 1 2 -694 Ref: 119 N 1 0 0 1 0 0 EndChar StartChar: uni1E8A Encoding: 7818 7818 Width: 600 HStem: 0 21<76 187 413 524> 0.749951 99.25<58 69> 563 20<85 176 422 512> 637 120<287.067 302> VStem: 10 243<48 52> 19 224<528 535> 238 120<695 701> 347 243<48 52> 355 223<528 535> DStem: 77 483 205 484 235 298 300 375 235 298 301 220 69 100 199 100 301 220 364 297 402 100 531 100 393 484 521 483 300 375 364 297 Ref: 729 N 1 0 0 1 -2 103 Ref: 88 N 1 0 0 1 0 0 EndChar StartChar: uni1E8B Encoding: 7819 7819 Width: 600 HStem: 0 20 417 20<106 198 198 211 400 491 491 504> 490 120<287.067 302> VStem: 238 120<548 554> Ref: 729 N 1 0 0 1 -2 -44 Ref: 120 N 1 0 0 1 0 0 EndChar StartChar: uni1E8C Encoding: 7820 7820 Width: 600 HStem: 0 21<76 187 413 524> 0.749951 99.25<58 69> 563 20<85 176 422 512> VStem: 10 243<48 52> 19 224<528 535> 134 120<680.5 713> 342 120<680.5 713> 347 243<48 52> 355 223<528 535> DStem: 77 483 205 484 235 298 300 375 235 298 301 220 69 100 199 100 301 220 364 297 402 100 531 100 393 484 521 483 300 375 364 297 Ref: 168 N 1 0 0 1 -2 103 Ref: 88 N 1 0 0 1 0 0 EndChar StartChar: uni1E8D Encoding: 7821 7821 Width: 600 HStem: 0 20 417 20<106 198 198 211 400 491 491 504> VStem: 134 120<533.5 566> 342 120<533.5 566> Ref: 168 N 1 0 0 1 -2 -44 Ref: 120 N 1 0 0 1 0 0 EndChar StartChar: uni1E8E Encoding: 7822 7822 Width: 600 HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> 637 120<289.067 304> VStem: 240 120<695 701> 250 100<100 245> Ref: 729 N 1 0 0 1 0 103 Ref: 89 N 1 0 0 1 0 0 EndChar StartChar: uni1E8F Encoding: 7823 7823 Width: 600 HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> 490 120<289.067 304> VStem: 240 120<548 554> Ref: 729 N 1 0 0 1 0 -44 Ref: 121 N 1 0 0 1 0 0 EndChar StartChar: uni1E90 Encoding: 7824 7824 Width: 600 HStem: 0 100<201 427> 483 100<196 375 196 196> VStem: 96 100<413 483> 427 100<100 172> DStem: 301 747 301 836 413 650 452 707 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 Ref: 710 N 1 0 0 1 -0 140 Ref: 90 N 1 0 0 1 0 0 EndChar StartChar: uni1E91 Encoding: 7825 7825 Width: 600 HStem: 0 100<244 419> 337 100<197 346 197 197> DStem: 302 600 302 689 414 503 453 560 302 600 302 689 414 503 453 560 302 689 302 600 150 560 189 503 302 600 302 689 414 503 453 560 302 689 302 600 150 560 189 503 302 600 302 689 414 503 453 560 302 689 302 600 150 560 189 503 302 600 302 689 414 503 453 560 302 689 302 600 150 560 189 503 302 600 302 689 414 503 453 560 302 689 302 600 150 560 189 503 Ref: 710 N 1 0 0 1 1 -7 Ref: 122 N 1 0 0 1 0 0 EndChar StartChar: uni1E92 Encoding: 7826 7826 Width: 600 HStem: -160 120<289.067 304> 0 100<201 427> 483 100<196 375 196 196> VStem: 96 100<413 483> 240 120<-102 -96> 427 100<100 172> Ref: 729 N 1 0 0 1 0 -694 Ref: 90 N 1 0 0 1 0 0 EndChar StartChar: uni1E93 Encoding: 7827 7827 Width: 600 HStem: -160 120<291.067 306> 0 100<244 419> 337 100<197 346 197 197> VStem: 242 120<-102 -96> Ref: 729 N 1 0 0 1 2 -694 Ref: 122 N 1 0 0 1 0 0 EndChar StartChar: uni1E94 Encoding: 7828 7828 Width: 600 HStem: -120 80<178 422> 0 100<201 427> 483 100<196 375 196 196> VStem: 96 100<413 483> 427 100<100 172> Ref: 175 N 1 0 0 1 0 -666 Ref: 90 N 1 0 0 1 0 0 EndChar StartChar: uni1E95 Encoding: 7829 7829 Width: 600 HStem: -120 80<180 424> 0 100<244 419> 337 100<197 346 197 197> Ref: 175 N 1 0 0 1 2 -666 Ref: 122 N 1 0 0 1 0 0 EndChar StartChar: uni1E96 Encoding: 7830 7830 Width: 600 HStem: -120 80<180 424> 0 20 350 100<306 336.5> VStem: 95 100<100 283 389 524 524 524> 409 100<100 271 271 284> Ref: 175 N 1 0 0 1 2 -666 Ref: 104 N 1 0 0 1 0 0 EndChar StartChar: uni1E97 Encoding: 7831 7831 Width: 600 HStem: -16 100<281 325> 337 100<79 114 214 395> 571 20<156 172.5> VStem: 0 120<674.5 707> 114 100<130.5 141 141 337 437 525> 208 120<674.5 707> Ref: 168 N 1 0 0 1 -136 97 Ref: 116 N 1 0 0 1 0 0 EndChar StartChar: uni1E98 Encoding: 7832 7832 Width: 600 HStem: 0 20 417 20<66 158 158 171 441 534 534 547> 490 54<281 318.5> 678 53<281 319> VStem: 177 53<593 629> 370 53<592.5 628.5> Ref: 730 N 1 0 0 1 0 4 Ref: 119 N 1 0 0 1 0 0 EndChar StartChar: uni1E99 Encoding: 7833 7833 Width: 600 HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> 490 54<281 318.5> 678 53<281 319> VStem: 177 53<593 629> 370 53<592.5 628.5> Ref: 730 N 1 0 0 1 0 4 Ref: 121 N 1 0 0 1 0 0 EndChar StartChar: uni1E9B Encoding: 7835 7835 Width: 600 HStem: 0 100<123 199 300 443> 337 100<139 199> 523 100<379 395> 663 120<381.067 396> VStem: 199 100<100 337 437 480> 332 120<721 727> Ref: 729 N 1 0 0 1 92 129 Ref: 383 N 1 0 0 1 0 0 EndChar StartChar: uni1EA0 Encoding: 7840 7840 Width: 600 HStem: -160 120<289.067 304> 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> VStem: 240 120<-102 -96> Ref: 729 N 1 0 0 1 0 -694 Ref: 65 N 1 0 0 1 0 0 EndChar StartChar: uni1EA1 Encoding: 7841 7841 Width: 600 HStem: -176 120<211.067 226> -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> VStem: 42 106<118 128> 162 120<-118 -112> 389 100<135 185 279 304> Ref: 729 N 1 0 0 1 -78 -710 Ref: 97 N 1 0 0 1 0 0 EndChar StartChar: uni1EA2 Encoding: 7842 7842 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 860 53<235 251> VStem: 123 53<783.668 798> 220 52<663 672> 316 53<781 798> Ref: 777 N 1 0 0 1 -54 186 Ref: 65 N 1 0 0 1 0 0 EndChar StartChar: uni1EA3 Encoding: 7843 7843 Width: 600 HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 713 53<281 297> VStem: 42 106<118 128> 169 53<636.668 651> 266 52<516 525> 362 53<634 651> 389 100<135 185 279 304> Ref: 777 N 1 0 0 1 -8 39 Ref: 97 N 1 0 0 1 0 0 EndChar StartChar: uni1EA4 Encoding: 7844 7844 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> DStem: 403 1063 449 1007 270 952 316 895 Ref: 180 N 1 0 0 1 -3 383 Ref: 194 N 1 0 0 1 0 0 EndChar StartChar: uni1EA5 Encoding: 7845 7845 Width: 600 HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> VStem: 42 106<118 128> 389 100<135 185 279 304> DStem: 290 607 290 696 402 510 441 567 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 409 920 455 864 276 809 322 752 Ref: 180 N 1 0 0 1 3 240 Ref: 226 N 1 0 0 1 0 0 EndChar StartChar: uni1EA6 Encoding: 7846 7846 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> DStem: 119 1007 165 1063 252 895 298 952 Ref: 96 N 1 0 0 1 -29 383 Ref: 194 N 1 0 0 1 0 0 EndChar StartChar: uni1EA7 Encoding: 7847 7847 Width: 600 HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> VStem: 42 106<118 128> 389 100<135 185 279 304> DStem: 125 864 171 920 258 752 304 809 290 607 290 696 402 510 441 567 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 Ref: 96 N 1 0 0 1 -23 240 Ref: 226 N 1 0 0 1 0 0 EndChar StartChar: uni1EA8 Encoding: 7848 7848 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 1102 53<273 289> VStem: 161 53<1025.67 1040> 258 52<905 914> 354 53<1023 1040> Ref: 777 N 1 0 0 1 -16 428 Ref: 194 N 1 0 0 1 0 0 EndChar StartChar: uni1EA9 Encoding: 7849 7849 Width: 600 HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 959 53<279 295> VStem: 42 106<118 128> 167 53<882.668 897> 264 52<762 771> 360 53<880 897> 389 100<135 185 279 304> DStem: 290 607 290 696 402 510 441 567 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 Ref: 777 N 1 0 0 1 -10 285 Ref: 226 N 1 0 0 1 0 0 EndChar StartChar: uni1EAA Encoding: 7850 7850 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 879 69<355 362> 943 69<208 213> Ref: 732 N 1 0 0 1 -16 356 Ref: 194 N 1 0 0 1 0 0 EndChar StartChar: uni1EAB Encoding: 7851 7851 Width: 600 HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 736 69<361 368> 800 69<214 219> VStem: 42 106<118 128> 389 100<135 185 279 304> DStem: 290 607 290 696 402 510 441 567 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 Ref: 732 N 1 0 0 1 -10 213 Ref: 226 N 1 0 0 1 0 0 EndChar StartChar: uni1EAC Encoding: 7852 7852 Width: 600 HStem: -160 120<289.067 304> 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> VStem: 240 120<-102 -96> DStem: 247 747 247 836 359 650 398 707 247 747 247 836 359 650 398 707 247 836 247 747 95 707 134 650 247 747 247 836 359 650 398 707 247 836 247 747 95 707 134 650 247 747 247 836 359 650 398 707 247 836 247 747 95 707 134 650 247 747 247 836 359 650 398 707 247 836 247 747 95 707 134 650 247 747 247 836 359 650 398 707 247 836 247 747 95 707 134 650 Ref: 710 N 1 0 0 1 -54 140 Ref: 7840 N 1 0 0 1 0 0 EndChar StartChar: uni1EAD Encoding: 7853 7853 Width: 600 HStem: -176 120<211.067 226> -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> VStem: 42 106<118 128> 162 120<-118 -112> 389 100<135 185 279 304> DStem: 293 600 293 689 405 503 444 560 293 600 293 689 405 503 444 560 293 689 293 600 141 560 180 503 293 600 293 689 405 503 444 560 293 689 293 600 141 560 180 503 293 600 293 689 405 503 444 560 293 689 293 600 141 560 180 503 293 600 293 689 405 503 444 560 293 689 293 600 141 560 180 503 293 600 293 689 405 503 444 560 293 689 293 600 141 560 180 503 Ref: 710 N 1 0 0 1 -8 -7 Ref: 7841 N 1 0 0 1 0 0 EndChar StartChar: uni1EAE Encoding: 7854 7854 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 647 68<272.5 327.5> DStem: 380 983 426 927 247 872 293 815 Ref: 180 S 1 0 0 1 -26 303 Ref: 258 N 1 0 0 1 0 0 EndChar StartChar: uni1EAF Encoding: 7855 7855 Width: 600 HStem: -16 100<218 234> 0 100<489 522> 196 92<266 302> 350 100<277 314> 503 68<283 314> VStem: 42 106<118 128> 389 100<135 185 279 304> DStem: 383 839 429 783 250 728 296 671 Ref: 180 S 1 0 0 1 -23 159 Ref: 259 N 1 0 0 1 0 0 EndChar StartChar: uni1EB0 Encoding: 7856 7856 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 647 68<272.5 327.5> DStem: 165 930 211 986 298 818 344 875 Ref: 96 S 1 0 0 1 17 306 Ref: 258 N 1 0 0 1 0 0 EndChar StartChar: uni1EB1 Encoding: 7857 7857 Width: 600 HStem: -16 100<218 234> 0 100<489 522> 196 92<266 302> 350 100<277 314> 503 68<283 314> VStem: 42 106<118 128> 389 100<135 185 279 304> DStem: 171 759 217 815 304 647 350 704 Ref: 96 S 1 0 0 1 23 135 Ref: 259 N 1 0 0 1 0 0 EndChar StartChar: uni1EB2 Encoding: 7858 7858 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 647 68<272.5 327.5> 992 53<277 293> VStem: 165 53<915.668 930> 262 52<795 804> 358 53<913 930> Ref: 777 S 1 0 0 1 -12 318 Ref: 258 N 1 0 0 1 0 0 EndChar StartChar: uni1EB3 Encoding: 7859 7859 Width: 600 HStem: -16 100<218 234> 0 100<489 522> 196 92<266 302> 350 100<277 314> 503 68<283 314> 857 53<280 296> VStem: 42 106<118 128> 168 53<780.668 795> 265 52<660 669> 361 53<778 795> 389 100<135 185 279 304> Ref: 777 N 1 0 0 1 -9 183 Ref: 259 N 1 0 0 1 0 0 EndChar StartChar: uni1EB4 Encoding: 7860 7860 Width: 600 HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 647 68<272.5 327.5> 871 69<371 378> 935 69<224 229> Ref: 732 N 1 0 0 1 0 348 Ref: 258 N 1 0 0 1 0 0 EndChar StartChar: uni1EB5 Encoding: 7861 7861 Width: 600 HStem: -16 100<218 234> 0 100<489 522> 196 92<266 302> 350 100<277 314> 503 68<283 314> 727 69<371 378> 791 69<224 229> VStem: 42 106<118 128> 389 100<135 185 279 304> Ref: 732 N 1 0 0 1 0 204 Ref: 259 N 1 0 0 1 0 0 EndChar StartChar: uni1EB6 Encoding: 7862 7862 Width: 600 HStem: -160 120<289.067 304> 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 637 68<218.5 273.5> VStem: 240 120<-102 -96> Ref: 728 N 1 0 0 1 -54 134 Ref: 7840 N 1 0 0 1 0 0 EndChar StartChar: uni1EB7 Encoding: 7863 7863 Width: 600 HStem: -176 120<211.067 226> -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 490 68<264.5 319.5> VStem: 42 106<118 128> 162 120<-118 -112> 389 100<135 185 279 304> Ref: 728 N 1 0 0 1 -8 -13 Ref: 7841 N 1 0 0 1 0 0 EndChar StartChar: uni1EB8 Encoding: 7864 7864 Width: 600 HStem: -160 120<303.067 318> 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 254 120<-102 -96> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> Ref: 729 N 1 0 0 1 14 -694 Ref: 69 N 1 0 0 1 0 0 EndChar StartChar: uni1EB9 Encoding: 7865 7865 Width: 600 HStem: -176 120<286.067 301> -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> VStem: 237 120<-118 -112> Ref: 729 N 1 0 0 1 -3 -710 Ref: 101 N 1 0 0 1 0 0 EndChar StartChar: uni1EBA Encoding: 7866 7866 Width: 600 HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 860 53<292.5 308.5> VStem: 94 100<101 242 343 482> 180.5 53<783.668 798> 277.5 52<663 672> 279 99<218 242 343 369> 373.5 53<781 798> 428 100<415 483> 450 100<100 171> Ref: 777 N 1 0 0 1 3.5 186 Ref: 69 N 1 0 0 1 0 0 EndChar StartChar: uni1EBB Encoding: 7867 7867 Width: 600 HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 713 53<280 296> VStem: 168 53<636.668 651> 265 52<516 525> 361 53<634 651> Ref: 777 N 1 0 0 1 -9 39 Ref: 101 N 1 0 0 1 0 0 EndChar StartChar: uni1EBC Encoding: 7868 7868 Width: 600 HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 637 69<375 382> 701 69<228 233> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> Ref: 732 N 1 0 0 1 4 114 Ref: 69 N 1 0 0 1 0 0 EndChar StartChar: uni1EBD Encoding: 7869 7869 Width: 600 HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 490 69<362 369> 554 69<215 220> Ref: 732 N 1 0 0 1 -9 -33 Ref: 101 N 1 0 0 1 0 0 EndChar StartChar: uni1EBE Encoding: 7870 7870 Width: 600 HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> DStem: 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 411 1063 457 1007 278 952 324 895 Ref: 180 N 1 0 0 1 5 383 Ref: 202 N 1 0 0 1 0 0 EndChar StartChar: uni1EBF Encoding: 7871 7871 Width: 600 HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> DStem: 424 920 470 864 291 809 337 752 Ref: 180 N 1 0 0 1 18 240 Ref: 234 N 1 0 0 1 0 0 EndChar StartChar: uni1EC0 Encoding: 7872 7872 Width: 600 HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> DStem: 127 1007 173 1063 260 895 306 952 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 Ref: 96 N 1 0 0 1 -21 383 Ref: 202 N 1 0 0 1 0 0 EndChar StartChar: uni1EC1 Encoding: 7873 7873 Width: 600 HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> DStem: 140 864 186 920 273 752 319 809 Ref: 96 N 1 0 0 1 -8 240 Ref: 234 N 1 0 0 1 0 0 EndChar StartChar: uni1EC2 Encoding: 7874 7874 Width: 600 HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 1102 53<281 297> VStem: 94 100<101 242 343 482> 169 53<1025.67 1040> 266 52<905 914> 279 99<218 242 343 369> 362 53<1023 1040> 428 100<415 483> 450 100<100 171> DStem: 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 Ref: 777 N 1 0 0 1 -8 428 Ref: 202 N 1 0 0 1 0 0 EndChar StartChar: uni1EC3 Encoding: 7875 7875 Width: 600 HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 959 53<294 310> VStem: 182 53<882.668 897> 279 52<762 771> 375 53<880 897> Ref: 777 N 1 0 0 1 5 285 Ref: 234 N 1 0 0 1 0 0 EndChar StartChar: uni1EC4 Encoding: 7876 7876 Width: 600 HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 879 69<363 370> 943 69<216 221> VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> DStem: 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 Ref: 732 N 1 0 0 1 -8 356 Ref: 202 N 1 0 0 1 0 0 EndChar StartChar: uni1EC5 Encoding: 7877 7877 Width: 600 HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 736 69<376 383> 800 69<229 234> Ref: 732 N 1 0 0 1 5 213 Ref: 234 N 1 0 0 1 0 0 EndChar StartChar: uni1EC6 Encoding: 7878 7878 Width: 600 HStem: -160 120<303.067 318> 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> VStem: 94 100<101 242 343 482> 254 120<-102 -96> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171> DStem: 304 747 304 836 416 650 455 707 304 747 304 836 416 650 455 707 304 836 304 747 152 707 191 650 304 747 304 836 416 650 455 707 304 836 304 747 152 707 191 650 304 747 304 836 416 650 455 707 304 836 304 747 152 707 191 650 304 747 304 836 416 650 455 707 304 836 304 747 152 707 191 650 304 747 304 836 416 650 455 707 304 836 304 747 152 707 191 650 Ref: 710 N 1 0 0 1 3 140 Ref: 7864 N 1 0 0 1 0 0 EndChar StartChar: uni1EC7 Encoding: 7879 7879 Width: 600 HStem: -176 120<286.067 301> -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> VStem: 237 120<-118 -112> DStem: 291 600 291 689 403 503 442 560 291 600 291 689 403 503 442 560 291 689 291 600 139 560 178 503 291 600 291 689 403 503 442 560 291 689 291 600 139 560 178 503 291 600 291 689 403 503 442 560 291 689 291 600 139 560 178 503 291 600 291 689 403 503 442 560 291 689 291 600 139 560 178 503 291 600 291 689 403 503 442 560 291 689 291 600 139 560 178 503 Ref: 710 N 1 0 0 1 -10 -7 Ref: 7865 N 1 0 0 1 0 0 EndChar StartChar: uni1EC8 Encoding: 7880 7880 Width: 600 HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> 860 53<289 305> VStem: 177 53<783.668 798> 250 100<100 483> 274 52<663 672> 370 53<781 798> Ref: 777 N 1 0 0 1 0 186 Ref: 73 N 1 0 0 1 0 0 EndChar StartChar: uni1EC9 Encoding: 7881 7881 Width: 600 HStem: 0 100<128 250 350 472> 337 100<172 250> 713 53<289 305> VStem: 177 53<636.668 651> 250 100<100 337 337 337> 274 52<516 525> 370 53<634 651> Ref: 777 S 1 0 0 1 0 39 Ref: 305 N 1 0 0 1 0 0 EndChar StartChar: uni1ECA Encoding: 7882 7882 Width: 600 HStem: -160 120<289.067 304> 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> VStem: 240 120<-102 -96> 250 100<100 483> Ref: 729 N 1 0 0 1 0 -694 Ref: 73 N 1 0 0 1 0 0 EndChar StartChar: uni1ECB Encoding: 7883 7883 Width: 600 HStem: -160 120<289.067 304> 0 100<110 249 350 478> 337 100<158 249> 518 105<219 335> VStem: 218 118<519 622> 240 120<-102 -96> 250 100<100 337> Ref: 729 N 1 0 0 1 0 -694 Ref: 105 N 1 0 0 1 0 0 EndChar StartChar: uni1ECC Encoding: 7884 7884 Width: 600 HStem: -174 120<289.067 304> -14 100<251 348.5> 497 100<251 333.5> VStem: 21 100<235.5 348> 240 120<-116 -110> 479 100<234 335> Ref: 729 N 1 0 0 1 0 -708 Ref: 79 N 1 0 0 1 0 0 EndChar StartChar: uni1ECD Encoding: 7885 7885 Width: 600 HStem: -176 120<289.067 304> -16 100<255.5 344.5> 350 100<256.5 345.5> VStem: 42 100<179.5 255> 240 120<-118 -112> 458 100<179.5 254> Ref: 729 N 1 0 0 1 0 -710 Ref: 111 N 1 0 0 1 0 0 EndChar StartChar: uni1ECE Encoding: 7886 7886 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> 860 53<289 305> VStem: 21 100<235.5 348> 177 53<783.668 798> 274 52<663 672> 370 53<781 798> 479 100<234 335> Ref: 777 N 1 0 0 1 0 186 Ref: 79 N 1 0 0 1 0 0 EndChar StartChar: uni1ECF Encoding: 7887 7887 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 713 53<292 308> VStem: 42 100<179.5 255> 180 53<636.668 651> 277 52<516 525> 373 53<634 651> 458 100<179.5 254> Ref: 777 N 1 0 0 1 3 39 Ref: 111 N 1 0 0 1 0 0 EndChar StartChar: uni1ED0 Encoding: 7888 7888 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> VStem: 21 100<235.5 348> 479 100<234 335> DStem: 419 1063 465 1007 286 952 332 895 Ref: 180 N 1 0 0 1 13 383 Ref: 212 N 1 0 0 1 0 0 EndChar StartChar: uni1ED1 Encoding: 7889 7889 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> VStem: 42 100<179.5 255> 458 100<179.5 254> DStem: 419 920 465 864 286 809 332 752 Ref: 180 N 1 0 0 1 13 240 Ref: 244 N 1 0 0 1 0 0 EndChar StartChar: uni1ED2 Encoding: 7890 7890 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> VStem: 21 100<235.5 348> 479 100<234 335> DStem: 135 1007 181 1063 268 895 314 952 Ref: 96 N 1 0 0 1 -13 383 Ref: 212 N 1 0 0 1 0 0 EndChar StartChar: uni1ED3 Encoding: 7891 7891 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> VStem: 42 100<179.5 255> 458 100<179.5 254> DStem: 135 864 181 920 268 752 314 809 Ref: 96 N 1 0 0 1 -13 240 Ref: 244 N 1 0 0 1 0 0 EndChar StartChar: uni1ED4 Encoding: 7892 7892 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> 1102 53<289 305> VStem: 21 100<235.5 348> 177 53<1025.67 1040> 274 52<905 914> 370 53<1023 1040> 479 100<234 335> Ref: 777 N 1 0 0 1 0 428 Ref: 212 N 1 0 0 1 0 0 EndChar StartChar: uni1ED5 Encoding: 7893 7893 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 959 53<289 305> VStem: 42 100<179.5 255> 177 53<882.668 897> 274 52<762 771> 370 53<880 897> 458 100<179.5 254> Ref: 777 N 1 0 0 1 0 285 Ref: 244 N 1 0 0 1 0 0 EndChar StartChar: uni1ED6 Encoding: 7894 7894 Width: 600 HStem: -14 100<251 348.5> 497 100<251 333.5> 879 69<371 378> 943 69<224 229> VStem: 21 100<235.5 348> 479 100<234 335> Ref: 732 N 1 0 0 1 0 356 Ref: 212 N 1 0 0 1 0 0 EndChar StartChar: uni1ED7 Encoding: 7895 7895 Width: 600 HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 736 69<371 378> 800 69<224 229> VStem: 42 100<179.5 255> 458 100<179.5 254> Ref: 732 N 1 0 0 1 0 213 Ref: 244 N 1 0 0 1 0 0 EndChar StartChar: uni1ED8 Encoding: 7896 7896 Width: 600 HStem: -174 120<289.067 304> -14 100<251 348.5> 497 100<251 333.5> VStem: 21 100<235.5 348> 240 120<-116 -110> 479 100<234 335> DStem: 301 747 301 836 413 650 452 707 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 Ref: 710 N 1 0 0 1 -0 140 Ref: 7884 N 1 0 0 1 0 0 EndChar StartChar: uni1ED9 Encoding: 7897 7897 Width: 600 HStem: -176 120<289.067 304> -16 100<255.5 344.5> 350 100<256.5 345.5> VStem: 42 100<179.5 255> 240 120<-118 -112> 458 100<179.5 254> DStem: 303 600 303 689 415 503 454 560 303 600 303 689 415 503 454 560 303 689 303 600 151 560 190 503 303 600 303 689 415 503 454 560 303 689 303 600 151 560 190 503 303 600 303 689 415 503 454 560 303 689 303 600 151 560 190 503 303 600 303 689 415 503 454 560 303 689 303 600 151 560 190 503 303 600 303 689 415 503 454 560 303 689 303 600 151 560 190 503 Ref: 710 N 1 0 0 1 2 -7 Ref: 7885 N 1 0 0 1 0 0 EndChar StartChar: uni1EDA Encoding: 7898 7898 Width: 600 HStem: -14 100<293 309> 497 100<293 309> VStem: 21 100<274 306> 479 100<274 306> 501 100<558 562> DStem: 369.644 824.719 415.644 768.719 236.644 713.719 282.644 656.719 Ref: 180 N 1 0 0 1 -36.3555 144.719 Ref: 416 N 1 0 0 1 0 0 EndChar StartChar: uni1EDB Encoding: 7899 7899 Width: 600 HStem: -16 100<282 314> 350 100<282 314> VStem: 42 100<208 224> 458 100<208 224> 503 100<414 417> DStem: 398.644 671.719 444.644 615.719 265.644 560.719 311.644 503.719 Ref: 180 S 1 0 0 1 -7.35553 -8.28064 Ref: 417 N 1 0 0 1 0 0 EndChar StartChar: uni1EDC Encoding: 7900 7900 Width: 600 HStem: -14 100<293 309> 497 100<293 309> VStem: 21 100<274 306> 479 100<274 306> 501 100<558 562> DStem: 184.644 768.719 230.644 824.719 317.644 656.719 363.644 713.719 Ref: 96 S 1 0 0 1 36.6445 144.719 Ref: 416 N 1 0 0 1 0 0 EndChar StartChar: uni1EDD Encoding: 7901 7901 Width: 600 HStem: -16 100<282 314> 350 100<282 314> VStem: 42 100<208 224> 458 100<208 224> 503 100<414 417> DStem: 172.644 613.719 218.644 669.719 305.644 501.719 351.644 558.719 Ref: 96 S 1 0 0 1 24.6445 -10.2806 Ref: 417 N 1 0 0 1 0 0 EndChar StartChar: uni1EDE Encoding: 7902 7902 Width: 600 HStem: -14 100<293 309> 497 100<293 309> 872.719 53<293.644 309.644> VStem: 21 100<274 306> 181.644 53<796.387 810.719> 278.644 52<675.719 684.719> 374.644 53<793.719 810.719> 479 100<274 306> 501 100<558 562> Ref: 777 S 1 0 0 1 4.64447 198.719 Ref: 416 N 1 0 0 1 0 0 EndChar StartChar: uni1EDF Encoding: 7903 7903 Width: 600 HStem: -16 100<282 314> 350 100<282 314> 719.719 53<298.644 314.644> VStem: 42 100<208 224> 186.644 53<643.387 657.719> 283.644 52<522.719 531.719> 379.644 53<640.719 657.719> 458 100<208 224> 503 100<414 417> Ref: 777 S 1 0 0 1 9.64447 45.7194 Ref: 417 N 1 0 0 1 0 0 EndChar StartChar: uni1EE0 Encoding: 7904 7904 Width: 600 HStem: -14 100<293 309> 497 100<293 309> 664.719 69<363.644 370.644> 728.719 69<216.644 221.644> VStem: 21 100<274 306> 479 100<274 306> 501 100<558 562> Ref: 732 S 1 0 0 1 -7.35553 141.719 Ref: 416 N 1 0 0 1 0 0 EndChar StartChar: uni1EE1 Encoding: 7905 7905 Width: 600 HStem: -16 100<282 314> 350 100<282 314> 511.719 69<366.644 373.644> 575.719 69<219.644 224.644> VStem: 42 100<208 224> 458 100<208 224> 503 100<414 417> Ref: 732 S 1 0 0 1 -4.35553 -11.2806 Ref: 417 N 1 0 0 1 0 0 EndChar StartChar: uni1EE2 Encoding: 7906 7906 Width: 600 HStem: -174 120<289.067 304> -14 100<293 309> 497 100<293 309> VStem: 21 100<274 306> 240 120<-116 -110> 479 100<274 306> 501 100<558 562> Ref: 729 N 1 0 0 1 0 -708 Ref: 416 N 1 0 0 1 0 0 EndChar StartChar: uni1EE3 Encoding: 7907 7907 Width: 600 HStem: -176 120<289.067 304> -16 100<282 314> 350 100<282 314> VStem: 42 100<208 224> 240 120<-118 -112> 458 100<208 224> 503 100<414 417> Ref: 729 N 1 0 0 1 0 -710 Ref: 417 N 1 0 0 1 0 0 EndChar StartChar: uni1EE4 Encoding: 7908 7908 Width: 600 HStem: -174 120<289.067 304> -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> VStem: 71 100<205 483> 240 120<-116 -110> 429 100<196 205 205 483> Ref: 729 N 1 0 0 1 0 -708 Ref: 85 N 1 0 0 1 0 0 EndChar StartChar: uni1EE5 Encoding: 7909 7909 Width: 600 HStem: -173 120<262.067 277> -13 100<253 300.5> 337 100<375 410> VStem: 95 100<156 159 159 338 338 338> 213 120<-115 -109> 410 100<155 337 337 337> Ref: 729 N 1 0 0 1 -27 -707 Ref: 117 N 1 0 0 1 0 0 EndChar StartChar: uni1EE6 Encoding: 7910 7910 Width: 600 HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 860 53<289 305> VStem: 71 100<205 483> 177 53<783.668 798> 274 52<663 672> 370 53<781 798> 429 100<196 205 205 483> Ref: 777 N 1 0 0 1 0 186 Ref: 85 N 1 0 0 1 0 0 EndChar StartChar: uni1EE7 Encoding: 7911 7911 Width: 600 HStem: -13 100<253 300.5> 337 100<375 410> 713 53<283.5 299.5> VStem: 95 100<156 159 159 338 338 338> 171.5 53<636.668 651> 268.5 52<516 525> 364.5 53<634 651> 410 100<155 337 337 337> Ref: 777 N 1 0 0 1 -5.5 39 Ref: 117 N 1 0 0 1 0 0 EndChar StartChar: uni1EE8 Encoding: 7912 7912 Width: 600 HStem: -14 100<282.431 314> 483 100<172 218 378 428> VStem: 10 262<530 535> 71 100<194 483> 429 100<194 483> 569 100<591 594> DStem: 386.645 827.719 432.645 771.719 253.645 716.719 299.645 659.719 Ref: 180 S 1 0 0 1 -19.3555 147.719 Ref: 431 N 1 0 0 1 0 0 EndChar StartChar: uni1EE9 Encoding: 7913 7913 Width: 600 HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 95 349.509 409 510.062 530.885> VStem: 95 100<147 337> 410 100<155 337> 555 100<445 451> DStem: 376.644 694.719 422.644 638.719 243.644 583.719 289.644 526.719 Ref: 180 S 1 0 0 1 -29.3555 14.7194 Ref: 432 N 1 0 0 1 0 0 EndChar StartChar: uni1EEA Encoding: 7914 7914 Width: 600 HStem: -14 100<282.431 314> 483 100<172 218 378 428> VStem: 10 262<530 535> 71 100<194 483> 429 100<194 483> 569 100<591 594> DStem: 174.645 762.719 220.645 818.719 307.645 650.719 353.645 707.719 Ref: 96 S 1 0 0 1 26.6445 138.719 Ref: 431 N 1 0 0 1 0 0 EndChar StartChar: uni1EEB Encoding: 7915 7915 Width: 600 HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 95 349.509 409 510.062 530.885> VStem: 95 100<147 337> 410 100<155 337> 555 100<445 451> DStem: 146.644 622.719 192.644 678.719 279.644 510.719 325.644 567.719 Ref: 96 S 1 0 0 1 -1.35553 -1.28064 Ref: 432 N 1 0 0 1 0 0 EndChar StartChar: uni1EEC Encoding: 7916 7916 Width: 600 HStem: -14 100<282.431 314> 483 100<172 218 378 428> 848.719 53<292.644 308.644> VStem: 10 262<530 535> 71 100<194 483> 180.644 53<772.387 786.719> 277.644 52<651.719 660.719> 373.644 53<769.719 786.719> 429 100<194 483> 569 100<591 594> Ref: 777 S 1 0 0 1 3.64447 174.719 Ref: 431 N 1 0 0 1 0 0 EndChar StartChar: uni1EED Encoding: 7917 7917 Width: 600 HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 95 349.509 409 510.062 530.885> 696.719 53<260.644 276.644> VStem: 95 100<147 337> 148.644 53<620.387 634.719> 245.644 52<499.719 508.719> 341.644 53<617.719 634.719> 410 100<155 337> 555 100<445 451> Ref: 777 S 1 0 0 1 -28.3555 22.7194 Ref: 432 N 1 0 0 1 0 0 EndChar StartChar: uni1EEE Encoding: 7918 7918 Width: 600 HStem: -14 100<282.431 314> 483 100<172 218 378 428> 664.719 69<380.644 387.644> 728.719 69<233.644 238.644> VStem: 10 262<530 535> 71 100<194 483> 429 100<194 483> 569 100<591 594> Ref: 732 S 1 0 0 1 9.64447 141.719 Ref: 431 N 1 0 0 1 0 0 EndChar StartChar: uni1EEF Encoding: 7919 7919 Width: 600 HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 95 349.509 409 510.062 530.885> 528.719 69<368.644 375.644> 592.719 69<221.644 226.644> VStem: 95 100<147 337> 410 100<155 337> 555 100<445 451> Ref: 732 S 1 0 0 1 -2.35553 5.71936 Ref: 432 N 1 0 0 1 0 0 EndChar StartChar: uni1EF0 Encoding: 7920 7920 Width: 600 HStem: -174 120<289.067 304> -14 100<282.431 314> 483 100<172 218 378 428> VStem: 10 262<530 535> 71 100<194 483> 240 120<-116 -110> 429 100<194 483> 569 100<591 594> Ref: 729 N 1 0 0 1 0 -708 Ref: 431 N 1 0 0 1 0 0 EndChar StartChar: uni1EF1 Encoding: 7921 7921 Width: 600 HStem: -173 120<262.067 277> -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 95 349.509 409 510.062 530.885> VStem: 95 100<147 337> 213 120<-115 -109> 410 100<155 337> 555 100<445 451> Ref: 729 N 1 0 0 1 -27 -707 Ref: 432 N 1 0 0 1 0 0 EndChar StartChar: Ygrave Encoding: 7922 7922 Width: 600 HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> VStem: 250 100<100 245> DStem: 136 765 182 821 269 653 315 710 Ref: 96 N 1 0 0 1 -12 141 Ref: 89 N 1 0 0 1 0 0 EndChar StartChar: ygrave Encoding: 7923 7923 Width: 600 HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> DStem: 135 618 181 674 268 506 314 563 Ref: 96 N 1 0 0 1 -13 -6 Ref: 121 N 1 0 0 1 0 0 EndChar StartChar: uni1EF4 Encoding: 7924 7924 Width: 600 HStem: -160 120<289.067 304> 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> VStem: 240 120<-102 -96> 250 100<100 245> Ref: 729 N 1 0 0 1 0 -694 Ref: 89 N 1 0 0 1 0 0 EndChar StartChar: uni1EF5 Encoding: 7925 7925 Width: 600 HStem: -365 120<183.067 198> -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> VStem: 134 120<-307 -301> Ref: 729 N 1 0 0 1 -106 -899 Ref: 121 N 1 0 0 1 0 0 EndChar StartChar: uni1EF6 Encoding: 7926 7926 Width: 600 HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> 860 53<289.5 305.5> VStem: 177.5 53<783.668 798> 250 100<100 245> 274.5 52<663 672> 370.5 53<781 798> Ref: 777 N 1 0 0 1 0.5 186 Ref: 89 N 1 0 0 1 0 0 EndChar StartChar: uni1EF7 Encoding: 7927 7927 Width: 600 HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> 713 53<289 305> VStem: 177 53<636.668 651> 274 52<516 525> 370 53<634 651> Ref: 777 N 1 0 0 1 0 39 Ref: 121 N 1 0 0 1 0 0 EndChar StartChar: uni1EF8 Encoding: 7928 7928 Width: 600 HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> 637 69<371 378> 701 69<224 229> VStem: 250 100<100 245> Ref: 732 N 1 0 0 1 0 114 Ref: 89 N 1 0 0 1 0 0 EndChar StartChar: uni1EF9 Encoding: 7929 7929 Width: 600 HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> 490 69<371 378> 554 69<224 229> Ref: 732 N 1 0 0 1 0 -33 Ref: 121 N 1 0 0 1 0 0 EndChar StartChar: uni2011 Encoding: 8209 8209 Width: 600 Flags: W HStem: 229 100<108 492> Ref: 45 N 1 0 0 1 0 0 EndChar StartChar: endash Encoding: 8211 8211 Width: 600 Flags: HMW HStem: 229 100<108 492> Fore 492 229 m 2 108 229 l 2 83 229 72 231 63 238 c 0 50 248 42 263 42 279 c 0 42 296 51 312 66 322 c 0 75 328 83 329 108 329 c 2 492 329 l 2 518 329 528 327 538 320 c 0 551 310 558 295 558 279 c 0 558 262 549 245 534 236 c 0 526 231 514 229 492 229 c 2 EndSplineSet EndChar StartChar: emdash Encoding: 8212 8212 Width: 600 Flags: HMW HStem: 229 100<37 563> Fore 563 229 m 2 37 229 l 2 12 229 1 231 -8 238 c 0 -21 248 -29 264 -29 279 c 0 -29 296 -20 313 -5 322 c 0 4 328 12 329 37 329 c 2 563 329 l 2 589 329 599 327 608 320 c 0 622 310 629 295 629 279 c 0 629 262 620 245 605 236 c 0 597 231 585 229 563 229 c 2 EndSplineSet EndChar StartChar: afii00208 Encoding: 8213 8213 Width: 600 Flags: W HStem: 229 100<37 563> Ref: 8212 N 1 0 0 1 0 0 EndChar StartChar: quoteleft Encoding: 8216 8216 Width: 600 Flags: HMW HStem: 582 20<249 381 381 381> Fore 381 602 m 1 450 395 l 1 451 390 453 381 453 376 c 0 453 361 438 348 422 348 c 0 409 348 401 354 390 372 c 2 249 602 l 1 381 602 l 1 EndSplineSet Kerns: 65 -87 198 -85 193 -87 196 -87 197 -87 84 -49 86 -46 87 -38 89 -73 EndChar StartChar: quoteright Encoding: 8217 8217 Width: 600 Flags: W Fore 225 602 m 1 357 602 l 1 216 372 l 2 205 354 197 348 184 348 c 0 168 348 153 361 153 376 c 0 153 381 155 390 156 395 c 1 225 602 l 1 EndSplineSet Kerns: 65 -154 198 -153 193 -154 196 -154 197 -154 44 -227 100 -140 111 -143 46 -244 114 -149 115 -150 116 -117 118 -110 119 -105 121 -116 EndChar StartChar: quotesinglbase Encoding: 8218 8218 Width: 600 Flags: W Fore 219 134 m 1 351 134 l 5 210 -134 l 2 202 -150 190 -158 178 -158 c 0 161 -158 147 -145 147 -130 c 0 147 -124 147 -122 150 -111 c 2 219 134 l 1 EndSplineSet EndChar StartChar: quotereversed Encoding: 8219 8219 Width: 600 Flags: W HStem: 582 20<249 381 381 381> Ref: 8216 N 1 0 0 1 0 0 EndChar StartChar: quotedblleft Encoding: 8220 8220 Width: 600 Flags: HMW HStem: 582 20<98 230 230 230 298 430 430 430> Fore 430 602 m 1 499 395 l 1 500 390 502 381 502 376 c 0 502 361 487 348 471 348 c 0 458 348 450 354 439 372 c 2 298 602 l 1 430 602 l 1 230 602 m 1 299 395 l 1 300 390 302 381 302 376 c 0 302 361 287 348 271 348 c 0 258 348 250 354 239 372 c 2 98 602 l 1 230 602 l 1 EndSplineSet Kerns: 65 -62 198 -60 193 -62 196 -62 197 -62 84 -24 86 -22 87 -13 89 -49 EndChar StartChar: quotedblright Encoding: 8221 8221 Width: 600 Flags: HMW HStem: 582 20<159 291 291 291 359 491 491 491> Fore 159 602 m 1 291 602 l 1 150 372 l 2 139 354 131 348 118 348 c 0 102 348 87 361 87 376 c 0 87 381 88 389 90 395 c 2 159 602 l 1 359 602 m 1 491 602 l 1 350 372 l 2 339 354 331 348 318 348 c 0 302 348 287 361 287 376 c 0 287 381 288 389 290 395 c 2 359 602 l 1 EndSplineSet Kerns: 65 -76 198 -75 193 -76 196 -76 197 -76 84 -39 86 -30 87 -26 89 -51 EndChar StartChar: quotedblbase Encoding: 8222 8222 Width: 600 Flags: W Fore 159 134 m 1 291 134 l 1 150 -96 l 2 139 -114 131 -120 118 -120 c 0 102 -120 87 -107 87 -92 c 0 87 -87 88 -79 90 -73 c 2 159 134 l 1 359 134 m 1 491 134 l 1 350 -96 l 2 339 -114 331 -120 318 -120 c 0 302 -120 287 -107 287 -92 c 0 287 -87 288 -79 290 -73 c 2 359 134 l 1 EndSplineSet Kerns: 65 -6 198 -7 84 -90 86 -104 87 -43 89 -78 EndChar StartChar: uni201F Encoding: 8223 8223 Width: 600 Flags: W HStem: 582 20<98 230 230 230 298 430 430 430> Ref: 8220 N 1 0 0 1 0 0 EndChar StartChar: dagger Encoding: 8224 8224 Width: 600 Flags: HMW HStem: 337 100<160 250 350 439> VStem: 250 100<-26 337 437 556> Fore 350 337 m 1 350 -26 l 2 350 -53 348 -61 341 -71 c 0 331 -84 316 -92 300 -92 c 0 283 -92 267 -83 257 -68 c 0 252 -60 250 -49 250 -26 c 2 250 337 l 1 160 337 l 2 134 337 124 339 114 346 c 0 102 356 94 371 94 387 c 0 94 404 103 421 118 430 c 0 127 436 135 437 160 437 c 2 250 437 l 1 250 556 l 2 250 582 252 592 260 601 c 1 269 614 284 622 300 622 c 0 317 622 334 613 343 598 c 0 349 589 350 582 350 556 c 2 350 437 l 1 439 437 l 2 467 437 475 435 485 428 c 0 498 418 506 403 506 387 c 0 506 370 497 354 482 344 c 0 473 339 463 337 439 337 c 2 350 337 l 1 EndSplineSet EndChar StartChar: daggerdbl Encoding: 8225 8225 Width: 600 Flags: HMW HStem: 93 100<160 250 350 439> 337 100<160 250 350 439> VStem: 250 100<-26 93 193 337 437 556> Fore 350 337 m 1 350 193 l 1 439 193 l 2 465 193 475 191 485 184 c 0 498 174 506 159 506 143 c 0 506 126 497 109 482 100 c 0 473 94 464 93 439 93 c 2 350 93 l 1 350 -26 l 2 350 -54 348 -61 341 -71 c 0 331 -84 316 -92 300 -92 c 0 283 -92 267 -83 257 -68 c 0 252 -60 250 -49 250 -26 c 2 250 93 l 1 160 93 l 2 133 93 125 95 114 102 c 1 102 112 94 127 94 143 c 0 94 160 103 177 118 186 c 0 126 191 137 193 160 193 c 2 250 193 l 1 250 337 l 1 160 337 l 2 134 337 124 339 114 346 c 0 102 356 94 371 94 387 c 0 94 404 103 421 118 430 c 0 127 436 135 437 160 437 c 2 250 437 l 1 250 556 l 2 250 582 252 592 260 601 c 1 269 614 284 622 300 622 c 0 317 622 334 613 343 598 c 0 349 589 350 582 350 556 c 2 350 437 l 1 439 437 l 2 467 437 475 435 485 428 c 0 498 418 506 403 506 387 c 0 506 370 497 354 482 344 c 0 473 339 463 337 439 337 c 2 350 337 l 1 EndSplineSet EndChar StartChar: bullet Encoding: 8226 8226 Width: 600 Flags: HMW HStem: 433 20<258 341> Fore 299 453 m 0 383 453 449 387 449 302 c 0 449 221 381 154 299 154 c 0 217 154 150 221 150 304 c 0 150 386 217 453 299 453 c 0 EndSplineSet EndChar StartChar: ellipsis Encoding: 8230 8230 Width: 600 Flags: HMW HStem: -15 20 Fore 109 -15 m 2 91 -15 l 2 55 -15 25 15 25 51 c 0 25 87 55 117 91 117 c 2 109 117 l 2 146 117 175 88 175 51 c 0 175 14 146 -15 109 -15 c 2 309 -15 m 2 291 -15 l 2 255 -15 225 15 225 51 c 0 225 87 255 117 291 117 c 2 309 117 l 2 346 117 375 88 375 51 c 0 375 14 346 -15 309 -15 c 2 509 -15 m 2 491 -15 l 2 455 -15 425 15 425 51 c 0 425 87 455 117 491 117 c 2 509 117 l 2 546 117 575 88 575 51 c 0 575 14 546 -15 509 -15 c 2 EndSplineSet EndChar StartChar: perthousand Encoding: 8240 8240 Width: 600 Flags: W HStem: 0 58<208 224 480 486> 174 58<208 224 480 486> 386 58<106 118> 560 58<106 118> VStem: 0 58<496 512> 98 58<112 118> 174 58<496 512> 272 58<112 118> 368 58<112 118> 542 58<112 118> DStem: 450 436 469 377 85 319 104 259 Fore 469 377 m 2 104 259 l 2 92 255 90 255 85 255 c 0 70 255 56 271 56 288 c 0 56 303 64 312 85 319 c 2 450 436 l 2 462 440 464 440 469 440 c 0 484 440 498 425 498 408 c 0 498 392 490 384 469 377 c 2 116 618 m 0 181 618 232 566 232 501 c 0 232 438 179 386 116 386 c 0 52 386 0 438 0 502 c 0 0 566 52 618 116 618 c 0 116 560 m 0 84 560 58 534 58 502 c 0 58 470 84 444 116 444 c 0 147 444 174 470 174 501 c 0 174 534 148 560 116 560 c 0 214 232 m 0 279 232 330 180 330 115 c 0 330 52 277 0 214 0 c 0 150 0 98 52 98 116 c 0 98 180 150 232 214 232 c 0 214 174 m 0 182 174 156 148 156 116 c 0 156 84 182 58 214 58 c 0 245 58 272 84 272 115 c 0 272 148 246 174 214 174 c 0 484 232 m 0 549 232 600 180 600 115 c 0 600 52 547 0 484 0 c 0 420 0 368 52 368 116 c 0 368 180 420 232 484 232 c 0 484 174 m 0 452 174 426 148 426 116 c 0 426 84 452 58 484 58 c 0 515 58 542 84 542 115 c 0 542 148 516 174 484 174 c 0 EndSplineSet EndChar StartChar: minute Encoding: 8242 8242 Width: 600 Flags: W Fore 219 623 m 1 351 623 l 1 210 355 l 2 202 339 190 331 178 331 c 0 161 331 147 344 147 359 c 0 147 365 147 367 150 378 c 2 219 623 l 1 EndSplineSet EndChar StartChar: second Encoding: 8243 8243 Width: 600 Flags: W Fore 347 623 m 1 479 623 l 1 338 355 l 2 330 339 318 331 306 331 c 0 289 331 275 344 275 359 c 0 275 365 275 367 278 378 c 2 347 623 l 1 155 623 m 1 287 623 l 1 146 355 l 2 138 339 126 331 114 331 c 0 97 331 83 344 83 359 c 0 83 365 83 367 86 378 c 2 155 623 l 1 EndSplineSet EndChar StartChar: uni2034 Encoding: 8244 8244 Width: 600 Flags: W Fore 267 623 m 1 399 623 l 1 258 355 l 2 250 339 238 331 226 331 c 0 209 331 195 344 195 359 c 0 195 365 195 367 198 378 c 2 267 623 l 1 443 623 m 1 575 623 l 1 434 355 l 2 426 339 414 331 402 331 c 0 385 331 371 344 371 359 c 0 371 365 371 367 374 378 c 2 443 623 l 1 91 623 m 1 223 623 l 1 82 355 l 2 74 339 62 331 50 331 c 0 33 331 19 344 19 359 c 0 19 365 19 367 22 378 c 2 91 623 l 1 EndSplineSet EndChar StartChar: uni2035 Encoding: 8245 8245 Width: 600 Flags: W Ref: 8242 N -1 0 0 1 498 0 EndChar StartChar: uni2036 Encoding: 8246 8246 Width: 600 Flags: W Ref: 8243 N -1 0 0 1 562 0 EndChar StartChar: uni2037 Encoding: 8247 8247 Width: 600 Flags: W Ref: 8244 N -1 0 0 1 594 0 EndChar StartChar: guilsinglleft Encoding: 8249 8249 Width: 600 Flags: HMW HStem: 0 20<304.5 318> Fore 175 218 m 1 326 77 l 2 337 67 342 59 342 50 c 0 342 34 327 20 309 20 c 0 300 20 295 22 281 33 c 2 33 218 l 1 281 402 l 2 295 413 300 415 310 415 c 0 327 415 342 401 342 385 c 0 342 376 338 368 326 358 c 1 175 218 l 1 EndSplineSet EndChar StartChar: guilsinglright Encoding: 8250 8250 Width: 600 Flags: HMW HStem: 0 20<286.5 300> Fore 430 217 m 1 279 358 l 2 268 368 263 376 263 385 c 0 263 401 278 415 296 415 c 0 305 415 310 413 324 402 c 2 571 217 l 1 324 33 l 2 310 22 305 20 295 20 c 0 278 20 263 34 263 50 c 0 263 59 267 67 279 77 c 1 430 217 l 1 EndSplineSet Kerns: 65 -37 198 -34 193 -37 196 -37 197 -37 84 -71 86 -72 87 -29 89 -92 EndChar StartChar: exclamdbl Encoding: 8252 8252 Width: 600 Flags: W HStem: -15 132<159 191 415 436> 179 459<166 186 416 436> VStem: 95 161<545 561> 100 150<49 53> 345 161<545 561> 350 150<49 53> Fore 504 525 m 1 475 228 l 2 472 197 454 179 426 179 c 0 398 179 379 198 376 228 c 2 347 525 l 1 346 537 345 551 345 558 c 0 345 604 379 638 426 638 c 0 472 638 506 604 506 558 c 0 506 552 505 538 504 525 c 1 434 -15 m 2 417 -15 l 2 380 -15 350 15 350 51 c 0 350 87 380 117 417 117 c 2 434 117 l 2 471 117 500 88 500 51 c 0 500 14 471 -15 434 -15 c 2 254 525 m 1 225 228 l 2 222 197 204 179 176 179 c 0 148 179 129 198 126 228 c 2 97 525 l 1 96 537 95 551 95 558 c 0 95 604 129 638 176 638 c 0 222 638 256 604 256 558 c 0 256 552 255 538 254 525 c 1 184 -15 m 2 167 -15 l 2 130 -15 100 15 100 51 c 0 100 87 130 117 167 117 c 2 184 117 l 2 221 117 250 88 250 51 c 0 250 14 221 -15 184 -15 c 2 EndSplineSet MinimumDistance: x13,-1 EndChar StartChar: fraction Encoding: 8260 8260 Width: 600 Flags: W DStem: 489 483 543 398 58 204 112 119 Fore 543 398 m 2 112 119 l 2 94 107 81 102 70 102 c 0 45 102 21 127 21 154 c 0 21 175 29 185 58 204 c 2 489 483 l 2 510 497 518 500 531 500 c 0 557 500 580 476 580 449 c 0 580 428 572 417 543 398 c 2 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni2045 Encoding: 8261 8261 Width: 600 Flags: W VStem: 248 100<-25 153 312.913 494> Fore 348 151 m 2 348 -15 l 2 348 -42 356 -50 384 -52 c 0 413 -54 433 -75 433 -103 c 0 433 -133 411 -153 378 -153 c 0 308 -153 248 -93 248 -22 c 2 248 142 l 2 248 194 253 211 277 240 c 1 254 268 248 285 248 328 c 2 248 492 l 2 248 563 308 623 377 623 c 0 411 623 433 603 433 573 c 0 433 545 413 524 384 522 c 0 356 521 348 512 348 485 c 2 348 328 l 2 348 301 354 293 380 290 c 0 412 287 429 269 429 240 c 0 429 210 412 193 380 189 c 0 354 186 348 179 348 151 c 2 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni2046 Encoding: 8262 8262 Width: 600 Flags: W VStem: 252 100<-25 151 311 494> Fore 352 492 m 2 352 328 l 2 352 276 347 259 323 230 c 1 346 202 352 185 352 142 c 2 352 -22 l 2 352 -93 292 -153 223 -153 c 0 189 -153 167 -133 167 -103 c 0 167 -75 187 -54 216 -52 c 0 244 -51 252 -42 252 -15 c 2 252 142 l 2 252 169 246 177 220 180 c 0 188 183 171 201 171 230 c 0 171 260 188 277 220 281 c 0 246 284 252 291 252 319 c 2 252 485 l 2 252 512 244 520 216 522 c 0 187 524 167 545 167 573 c 0 167 603 189 623 222 623 c 0 292 623 352 563 352 492 c 2 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni2048 Encoding: 8264 8264 Width: 600 Flags: W HStem: -15 20 498 100<190 241> VStem: 317 100<392.5 439> Ref: 63 N 1 0 0 1 -100 0 Ref: 33 N 1 0 0 1 225 0 EndChar StartChar: uni2049 Encoding: 8265 8265 Width: 600 Flags: W HStem: -15 20 498 100<390 441> VStem: 517 100<392.5 439> Ref: 63 N 1 0 0 1 100 0 Ref: 33 N 1 0 0 1 -225 0 EndChar StartChar: uni204B Encoding: 8267 8267 Width: 600 Flags: W HStem: -174 78<103 139 337 416> 505 78<105 139 139 139 215 259 259 259> VStem: 139 76<-96 505> 259 78<-96 185 185 185 266 500 500 500> 445 113<361 405> Ref: 182 N -1 0 0 1 607 0 EndChar StartChar: uni2064 Encoding: 8292 8292 Width: 600 Flags: W EndChar StartChar: zerosuperior Encoding: 8304 8304 Width: 600 Flags: W HStem: 238 67<296 302> 570 67<296 302> VStem: 168 67<398 478> 365 67<398 478> Fore 432 466 m 2 432 409 l 2 432 353 415 304 385 272 c 0 364 250 335 238 300 238 c 0 265 238 236 250 215 272 c 0 185 304 168 353 168 409 c 2 168 466 l 2 168 522 185 571 215 603 c 0 236 625 265 637 300 637 c 0 335 637 364 625 385 603 c 0 415 571 432 522 432 466 c 2 235 471 m 2 235 404 l 2 235 343 260 305 300 305 c 0 340 305 365 343 365 404 c 2 365 471 l 2 365 532 340 570 300 570 c 0 260 570 235 532 235 471 c 2 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni2071 Encoding: 8305 8305 Width: 600 EndChar StartChar: uni2072 Encoding: 8306 8306 Width: 600 EndChar StartChar: uni2073 Encoding: 8307 8307 Width: 600 EndChar StartChar: foursuperior Encoding: 8308 8308 Width: 600 Flags: W HStem: 247 67<274.013 305> 330 67<228 305> VStem: 143 267<359 366> 244 166<279 283> 306 67<314 330 398 525> DStem: 289 627 306 526 143 385 227 397 Fore 373 627 m 1 373 397 l 1 396 396 410 384 410 364 c 0 410 344 397 331 373 330 c 1 373 314 l 1 396 313 410 301 410 281 c 0 410 259 394 247 366 247 c 2 287 247 l 2 259 247 244 259 244 281 c 0 244 303 258 314 287 314 c 2 306 314 l 1 306 330 l 1 143 330 l 1 143 385 l 1 289 627 l 1 373 627 l 1 306 397 m 1 306 526 l 1 227 397 l 1 306 397 l 1 EndSplineSet MinimumDistance: x0,-1 y13,11 x11,13 x11,12 x10,7 x10,9 EndChar StartChar: fivesuperior Encoding: 8309 8309 Width: 600 Flags: W HStem: 235 67<260 292> 439 67<292 308> 557 67<249 372> VStem: 181 67<497 557> 181 224<587 592> 364 67<363 379> Fore 248 557 m 1 248 496 l 1 270 502 284 506 302 506 c 0 376 506 431 446 431 368 c 0 431 332 419 300 397 277 c 0 370 247 335 235 278 235 c 0 204 235 148 261 148 296 c 0 148 312 160 334 177 334 c 0 185 334 192 333 201 325 c 0 219 310 242 302 277 302 c 0 335 302 364 325 364 367 c 0 364 407 342 439 301 439 c 0 281 439 254 432 228 418 c 0 220 415 215 413 209 413 c 0 191 413 181 431 181 451 c 2 181 624 l 1 365 624 l 2 381 624 384 625 393 618 c 24 402 610 405 600 405 590 c 0 405 580 400 568 390 562 c 0 386 559 378 557 365 557 c 2 248 557 l 1 EndSplineSet MinimumDistance: x3,-1 EndChar StartChar: sixsuperior Encoding: 8310 8310 Width: 600 Flags: W HStem: 238 67<299 310> 423 67<299 310> 568 69<351 367> VStem: 357 67<351.368 374> Fore 228 448 m 1 257 479 277 490 308 490 c 0 372 490 424 432 424 363 c 0 424 328 413 297 392 274 c 0 370 250 341 238 300 238 c 0 249 238 210 259 187 301 c 0 171 330 159 377 159 421 c 0 159 476 177 523 208 562 c 0 249 612 300 637 356 637 c 0 399 637 427 618 427 594 c 0 427 577 413 560 396 560 c 0 391 560 384 561 375 565 c 0 368 567 365 568 359 568 c 0 302 568 242 523 228 448 c 1 234 375 m 1 243 322 266 305 302 305 c 0 335 305 357 331 357 363 c 0 357 395 334 423 304 423 c 0 278 423 250 405 234 375 c 1 EndSplineSet MinimumDistance: x2,-1 Back 225 445 m 1 254 476 277 488 308 488 c 0 372 488 424 432 424 363 c 0 424 328 413 297 392 274 c 0 370 250 341 238 300 238 c 0 249 238 212 259 189 301 c 0 173 330 162 377 162 421 c 0 162 476 178 522 209 561 c 0 250 611 300 637 356 637 c 0 399 637 427 621 427 597 c 0 427 580 413 566 396 566 c 0 391 566 384 567 375 571 c 0 368 573 365 574 359 574 c 0 295 574 239 520 225 445 c 1 231 375 m 1 240 322 262 299 302 299 c 0 340 299 363 324 363 363 c 0 363 399 337 427 304 427 c 0 278 427 247 405 231 375 c 1 EndSplineSet EndChar StartChar: sevensuperior Encoding: 8311 8311 Width: 600 Flags: W HStem: 560 67<228 359> VStem: 167 265<566 626> DStem: 360 560 432 566 272 297 335 276 Fore 360 560 m 1 228 560 l 1 227 538 217 527 198 527 c 0 188 527 177 532 172 541 c 0 169 547 167 552 167 567 c 2 167 627 l 1 432 627 l 1 432 566 l 1 335 276 l 2 328 254 319 246 303 246 c 0 286 246 268 260 268 276 c 0 268 281 268 286 272 297 c 2 360 560 l 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: eightsuperior Encoding: 8312 8312 Width: 600 Flags: W HStem: 238 67<296 312> 405 68<296 302> 570 67<296 312> VStem: 168 67<347 355> 173 67<521 528> 360 67<521 528> 365 67<347 355> Fore 373 442 m 1 412 418 432 386 432 348 c 0 432 283 379 238 299 238 c 0 221 238 168 283 168 348 c 0 168 386 188 418 227 442 c 1 190 466 173 493 173 525 c 0 173 587 229 637 300 637 c 0 370 637 427 587 427 526 c 0 427 493 410 466 373 442 c 1 300 570 m 0 266 570 240 550 240 523 c 0 240 496 266 473 300 473 c 0 334 473 360 495 360 522 c 0 360 549 334 570 300 570 c 0 300 405 m 0 266 405 235 380 235 353 c 0 235 326 263 305 300 305 c 0 337 305 365 325 365 352 c 0 365 379 334 405 300 405 c 0 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: ninesuperior Encoding: 8313 8313 Width: 600 Flags: W HStem: 238 69<227 243> 385 67<281 292> 570 67<281 292> VStem: 166 67<501 514> Fore 362 427 m 1 333 396 313 385 282 385 c 0 218 385 166 443 166 512 c 0 166 547 177 578 198 601 c 0 220 625 249 637 290 637 c 0 341 637 378 616 401 574 c 0 417 546 428 497 428 454 c 0 428 400 412 353 381 314 c 0 340 264 290 238 234 238 c 0 191 238 163 257 163 281 c 0 163 298 177 315 194 315 c 0 199 315 206 314 215 310 c 0 222 308 225 307 231 307 c 0 288 307 348 352 362 427 c 1 356 500 m 1 347 553 327 570 288 570 c 0 254 570 233 547 233 512 c 0 233 480 255 452 286 452 c 0 310 452 340 470 356 500 c 1 EndSplineSet MinimumDistance: x15,-1 Back 365 430 m 1 336 399 313 387 282 387 c 0 218 387 166 443 166 512 c 0 166 547 177 578 198 601 c 0 220 625 249 637 290 637 c 0 341 637 378 616 401 574 c 0 417 546 428 497 428 454 c 0 428 400 412 353 381 314 c 0 340 264 290 238 234 238 c 0 191 238 163 254 163 278 c 0 163 295 177 309 194 309 c 0 199 309 206 308 215 304 c 0 222 302 225 301 231 301 c 0 295 301 351 355 365 430 c 1 359 500 m 1 350 553 328 576 288 576 c 0 250 576 227 551 227 512 c 0 227 476 253 448 286 448 c 0 312 448 343 470 359 500 c 1 EndSplineSet EndChar StartChar: uni207A Encoding: 8314 8314 Width: 600 Flags: W EndChar StartChar: uni207B Encoding: 8315 8315 Width: 600 Flags: W EndChar StartChar: uni207C Encoding: 8316 8316 Width: 600 Flags: W EndChar StartChar: parenleftsuperior Encoding: 8317 8317 Width: 600 Flags: W EndChar StartChar: parenrightsuperior Encoding: 8318 8318 Width: 600 Flags: W EndChar StartChar: nsuperior Encoding: 8319 8319 Width: 600 Flags: W EndChar StartChar: zeroinferior Encoding: 8320 8320 Width: 600 Flags: W HStem: -174 67<296 302> 158 67<296 302> VStem: 168 67<-14 66> 365 67<-14 66> Ref: 8304 N 1 0 0 1 0 -412 EndChar StartChar: oneinferior Encoding: 8321 8321 Width: 600 Flags: W HStem: -165 67<210 267 334 391> VStem: 267 67<-98 139 139 139> Ref: 185 N 1 0 0 1 0 -412 EndChar StartChar: twoinferior Encoding: 8322 8322 Width: 600 Flags: W HStem: -165 67<253 362> 158 67<281.5 311.5> VStem: 358 67<94 122> Ref: 178 N 1 0 0 1 0 -412 EndChar StartChar: threeinferior Encoding: 8323 8323 Width: 600 Flags: W HStem: -174 67<269 304> 158 67<283 313> VStem: 362 67<114 122> 375 67<-62 -53> Ref: 179 N 1 0 0 1 0 -412 EndChar StartChar: fourinferior Encoding: 8324 8324 Width: 600 Flags: W HStem: -165 67<274.013 305> -82 67<228 305> VStem: 143 267<-53 -46> 244 166<-133 -129> 306 67<-98 -82 -14 113> DStem: 289 215 306 114 143 -27 227 -15 Ref: 8308 N 1 0 0 1 0 -412 EndChar StartChar: fiveinferior Encoding: 8325 8325 Width: 600 Flags: W HStem: -177 67<260 292> 27 67<292 308> 145 67<249 372> VStem: 181 67<85 145> 181 224<175 180> 364 67<-49 -33> Ref: 8309 N 1 0 0 1 0 -412 EndChar StartChar: sixinferior Encoding: 8326 8326 Width: 600 Flags: W HStem: -174 67<299 310> 11 67<299 310> 156 69<351 367> VStem: 357 67<-60.6316 -38> Ref: 8310 N 1 0 0 1 0 -412 EndChar StartChar: seveninferior Encoding: 8327 8327 Width: 600 Flags: W HStem: 148 67<228 359> VStem: 167 265<154 214> DStem: 360 148 432 154 272 -115 335 -136 Ref: 8311 N 1 0 0 1 0 -412 EndChar StartChar: eightinferior Encoding: 8328 8328 Width: 600 Flags: W HStem: -174 67<296 312> -7 68<296 302> 158 67<296 312> VStem: 168 67<-65 -57> 173 67<109 116> 360 67<109 116> 365 67<-65 -57> Ref: 8312 N 1 0 0 1 0 -412 EndChar StartChar: nineinferior Encoding: 8329 8329 Width: 600 Flags: W HStem: -174 69<227 243> -27 67<281 292> 158 67<281 292> VStem: 166 67<89 102> Ref: 8313 N 1 0 0 1 0 -412 EndChar StartChar: franc Encoding: 8355 8355 Width: 600 Flags: W HStem: 0 100<58.7851 93 195 298> 205 56<33 93 195 346> 303 56<33 93 195 346> 483 100<58 93 195 450> VStem: 10 358<224 240 321.868 336> 13 347<48 52> 94 100<100 205 261 303 359 483> 450 100<416 483> Fore 94 359 m 1 94 483 l 1 79 483 l 2 54 483 43 485 34 492 c 0 21 502 13 517 13 533 c 0 13 550 22 567 37 576 c 0 46 582 53 583 79 583 c 2 550 583 l 1 550 432 l 2 550 405 548 397 541 387 c 0 531 374 516 366 500 366 c 0 483 366 467 375 457 390 c 0 452 398 450 409 450 432 c 2 450 483 l 1 194 483 l 1 194 359 l 1 340 359 l 2 358 359 368 349 368 331 c 0 368 313 358 303 340 303 c 2 194 303 l 1 194 261 l 1 341 261 l 2 359 261 368 251 368 233 c 0 368 215 358 205 341 205 c 2 194 205 l 1 194 100 l 1 294 100 l 2 321 100 330 98 340 91 c 0 352 81 360 66 360 50 c 0 360 33 351 16 336 7 c 0 329 3 314 0 294 0 c 2 79 0 l 2 56 0 42 3 34 10 c 0 21 19 13 35 13 50 c 0 13 67 22 84 37 93 c 0 46 99 55 100 79 100 c 2 94 100 l 1 94 205 l 1 37 205 l 2 20 205 10 215 10 233 c 0 10 251 19 261 37 261 c 2 94 261 l 1 94 303 l 1 37 303 l 2 20 303 10 313 10 331 c 0 10 349 19 359 37 359 c 2 94 359 l 1 EndSplineSet MinimumDistance: x7,-1 x37,40 x37,38 x20,23 x20,21 x15,18 x15,16 x0,43 x0,45 EndChar StartChar: lira Encoding: 8356 8356 Width: 600 Flags: W HStem: 0 100<248 450> 205 56<54 161 269 362> 303 56<54 129 265 362> 498 100<289 305> VStem: 33 348<224 240 321.868 336> 55 495<51 90> 126 100<431 445> Fore 241.622 359 m 1 353 359 l 2 371 359 381 349 381 331 c 0 381 313 371 303 353 303 c 2 257.159 303 l 1 260.982 288.799 264.229 275.267 266.502 261 c 1 354 261 l 2 372 261 381 251 381 233 c 0 381 215 371 205 354 205 c 2 269.865 205 l 1 268.893 166.78 262.546 138.407 247 100 c 1 450 100 l 1 454 130 471 146 499 146 c 0 530 146 550 124 550 90 c 0 550 32 512 0 442 0 c 2 121 0 l 2 98 0 85 3 76 10 c 0 63 19 55 35 55 51 c 0 55 78 70 93 105 100 c 0 130 105 141 113 150 132 c 0 160.653 152.487 166.606 177.004 168.408 205 c 1 60 205 l 2 43 205 33 215 33 233 c 0 33 251 42 261 60 261 c 2 164.994 261 l 1 162.242 275.12 158.379 289.297 154.415 303 c 1 60 303 l 2 43 303 33 313 33 331 c 0 33 349 42 359 60 359 c 2 138.818 359 l 1 131.661 386.112 126 407.602 126 432 c 0 126 529 198 598 299 598 c 0 377 598 457 546 457 495 c 0 457 467 435 444 408 444 c 0 389 444 384 447 361 472 c 0 345 490 325 498 298 498 c 0 257 498 226 472 226 437 c 0 226 419.043 233.171 390.166 241.622 359 c 1 EndSplineSet MinimumDistance: x36,-1 EndChar StartChar: afii57636 Encoding: 8362 8362 Width: 600 Flags: W HStem: 0 100<273 414> 380 100<121 247> VStem: 22 100<47 380> 174 100<100 241> 326 100<223 303> 478 100<144 439> Fore 478 145 m 1 478 430 l 2 478 458 500 480 528 480 c 0 556 480 578 458 578 430 c 2 578 145 l 1 580 114 570 64 532 35 c 1 494 3 449 -1 414 0 c 2 174 0 l 1 174 234 l 2 174 262 196 284 224 284 c 0 252 284 274 262 274 234 c 2 274 100 l 1 414 100 l 2 448 101 454 102 467 112 c 1 480 126 476 116 478 145 c 1 426 303 m 1 426 234 l 2 426 206 404 184 376 184 c 0 348 184 326 206 326 234 c 2 326 303 l 1 324 342 327 340 306 360 c 1 283 378 271 379 224 380 c 2 122 380 l 1 122 50 l 2 122 22 100 0 72 0 c 0 44 0 22 22 22 50 c 2 22 480 l 1 224 480 l 2 272 481 325 476 370 437 c 1 417 400 428 344 426 303 c 1 EndSplineSet MinimumDistance: x3,-1 y21,24 y21,22 y11,8 y11,10 EndChar StartChar: Euro Encoding: 8364 8364 Width: 600 Flags: W HStem: -14 100<309 343> 205 56<22.3275 58 175 343> 303 56<22.3275 58 174 372> 367 216<469.41 484> 497 100<304 326> VStem: 4 364<226 242> 4 392<322 338> 59 110<261 303> Fore 173 359 m 5 368 359 l 6 386 359 396 349 396 331 c 4 396 313 386 303 368 303 c 6 169 303 l 5 169 261 l 5 341 261 l 6 359 261 368 251 368 233 c 4 368 215 358 205 341 205 c 6 174 205 l 5 190 130 247 86 329 86 c 0 367 86 404 95 426 109 c 0 436 115 436 115 461 143 c 0 471 154 481 159 492 159 c 0 517 159 538 136 538 109 c 0 538 86 521 60 490 36 c 0 451 5 389 -14 325 -14 c 0 187 -14 84 72 62 205 c 5 31 205 l 6 14 205 4 215 4 233 c 4 4 251 13 261 31 261 c 6 59 261 l 5 59 303 l 5 31 303 l 6 14 303 4 313 4 331 c 4 4 349 13 359 31 359 c 6 62 359 l 5 78 498 179 597 305 597 c 0 351 597 382 589 432 563 c 2 441 559 l 1 453 576 463 583 479 583 c 0 495 583 509 574 518 559 c 0 523 550 524 542 524 517 c 2 524 433 l 2 524 408 522 397 516 388 c 0 507 375 493 367 479 367 c 0 453 367 440 382 434 420 c 0 431 444 421 457 395 473 c 0 371 488 338 497 309 497 c 0 240 497 188 444 173 359 c 5 EndSplineSet MinimumDistance: x1,-1 x22,25 x22,23 x21,18 x21,20 x5,8 x5,6 x4,1 x4,3 EndChar StartChar: uni2112 Encoding: 8466 8466 Width: 600 Flags: W HStem: 0 100<248 450> 498 100<295 311> VStem: 55 495<51 90> 126 100<431 445> 169 101<208 240> Fore 143 343 m 8 133.998 378.108 126 403 126 432 c 0 126 529 198 598 299 598 c 0 377 598 457 546 457 495 c 0 457 467 435 444 408 444 c 0 389 444 384 447 361 472 c 0 345 490 325 498 298 498 c 0 257 498 226 472 226 437 c 0 226 416 235.807 380.066 246 343 c 16 258.915 296.035 270 264.563 270 216 c 0 270 172 264 142 247 100 c 1 450 100 l 1 454 130 471 146 499 146 c 0 530 146 550 124 550 90 c 0 550 32 512 0 442 0 c 2 121 0 l 2 98 0 85 3 76 10 c 0 63 19 55 35 55 51 c 0 55 78 70 93 105 100 c 0 130 105 141 113 150 132 c 0 163 157 169 188 169 224 c 0 169 263.555 152.08 307.587 143 343 c 8 EndSplineSet MinimumDistance: x9,-1 EndChar StartChar: afii61352 Encoding: 8470 8470 Width: 600 Flags: W HStem: 0 100<94 99> 168 80<476.863 587.709> 266.303 44.5892<518.907 543.449> 421.539 43.7635<518.907 543.777> 483 100<66 107 440 562> VStem: -14 100<112 144> 108 100<112 326> 339 100<249 483> 339 272<528 535> 450.842 34.687<351.353 381.079> 577.155 34.687<350.94 380.666> DStem: 208 327 208 583 340 0 339 248 Fore 545 583 m 2 571 583 578 582 587 576 c 0 602 567 611 550 611 533 c 0 611 517 603 502 590 492 c 0 581 485 570 483 545 483 c 2 439 483 l 1 439 0 l 1 340 0 l 1 208 327 l 1 208 127 l 1 208 29 170 0 95 0 c 8 31 0 -14 40 -14 118 c 1 -14 126 l 2 -14 153 -12 161 -6 171 c 0 4 184 20 192 36 192 c 0 52 192 68 183 78 168 c 0 84 160 86 150 86 127 c 1 86 105 88 100 97 100 c 0 108 100 108 108 108 128 c 1 108 483 l 1 82 483 l 2 57 483 46 485 37 492 c 0 24 502 16 517 16 533 c 0 16 550 25 567 40 576 c 0 49 582 56 583 82 583 c 2 208 583 l 1 339 248 l 1 339 583 l 1 545 583 l 2 EndSplineSet MinimumDistance: x7,5 y5,7 y5,6 Ref: 175 N 0.454286 0 0 1 396 -378 Ref: 730 N 0.654472 0 0 0.825726 335 -135 Back 113 80 m 2 112.923 46 96 41 82 41 c 0 68 41 51 54 51 80 c 2 51 99 l 2 51 118 43 127 31 127 c 0 17 127 9 117 9 99 c 2 9 76 l 2 9 26 50 0 80 0 c 0 124 0 155 24 155 76 c 2 155 474 l 1 346 0 l 1 398 0 l 1 398 522 l 1 558 522 l 2 576 522 585 529 585 543 c 0 585 556 576 563 558 563 c 2 320 563 l 2 301 563 292 556 292 543 c 0 292 529 301 522 320 522 c 2 357 522 l 1 357 89 l 1 165 563 l 1 59 563 l 2 41 563 32 556 32 543 c 0 32 529 41 522 59 522 c 2 113 522 l 1 113 80 l 2 EndSplineSet EndChar StartChar: trademark Encoding: 8482 8482 Width: 600 Flags: HMW HStem: 220 73<52 75 148 170 496 511> 434 20<443 443> 510 73<40 75 40 40 148 183 148 148> VStem: -33 73<461 510> 75 73<293 510> 183 74<461 510 510 510> 302 73<293 431> 511 73<293 429 429 429> Fore 148 510 m 1 148 293 l 1 170 293 l 2 201 293 217 281 217 257 c 0 217 233 200 220 170 220 c 2 52 220 l 2 23 220 6 233 6 257 c 0 6 281 22 293 52 293 c 2 75 293 l 1 75 510 l 1 40 510 l 1 40 461 l 2 40 431 27 415 3 415 c 0 -20 415 -33 431 -33 461 c 2 -33 583 l 1 257 583 l 1 257 461 l 2 257 431 244 415 220 415 c 0 196 415 183 431 183 461 c 2 183 510 l 1 148 510 l 1 375 431 m 1 375 293 l 1 406 293 422 281 422 257 c 0 422 233 406 220 375 220 c 2 312 220 l 2 282 220 266 233 266 257 c 0 266 277 279 291 302 293 c 1 302 511 l 1 283 514 271 528 271 547 c 0 271 571 286 583 317 583 c 2 390 583 l 1 443 454 l 1 495 583 l 1 569 583 l 2 599 583 615 571 615 547 c 0 615 528 603 514 584 511 c 1 584 293 l 1 606 291 620 277 620 257 c 0 620 233 604 220 574 220 c 2 511 220 l 2 481 220 464 233 464 257 c 0 464 281 480 293 511 293 c 1 511 429 l 1 455 303 l 1 436 303 l 1 375 431 l 1 EndSplineSet EndChar StartChar: uni2126 Encoding: 8486 8486 Width: 600 Flags: W HStem: 0 100<129 179 421 471> 0 158<77 81 510.788 525> 0 202<253 279 321 349> 483 100<257 344> VStem: 29 100<101 118> 29 251<1 100> 40 100<336 352> 180 100<101 118> 320 100<101 118> 320 251<1 100> 460 100<336 352> 471 100<101 118> Ref: 937 N 1 0 0 1 0 0 EndChar StartChar: uni2127 Encoding: 8487 8487 Width: 600 Flags: W HStem: 0 100<257 344> 381 202<253 279 321 349> 425 158<77 81 510.788 525> 483 100<129 179 421 471> VStem: 29 100<465 482> 29 251<483 582> 40 100<231 247> 180 100<465 482> 320 100<465 482> 320 251<483 582> 460 100<231 247> 471 100<465 482> Ref: 937 N 1 0 0 -1 0 583 EndChar StartChar: uni212A Encoding: 8490 8490 Width: 600 Flags: W HStem: 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5> VStem: 94 100<100 208 334 483> Ref: 75 N 1 0 0 1 0 0 EndChar StartChar: uni212B Encoding: 8491 8491 Width: 600 Flags: W HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 630 54<264 301.5> 818 53<264 302> VStem: -21 53 172 53 Ref: 197 N 1 0 0 1 0 0 EndChar StartChar: onethird Encoding: 8531 8531 Width: 600 Flags: W HStem: -20 67<449 495> 247 67<-2 66 134 193> 312 67<474 504> VStem: 67 67<314 550> 553 67<268 276> 566 67<92 101> DStem: 415 561 473 528 155 110 213 77 Fore 477 226 m 2 502 226 l 2 529 226 553 247 553 270 c 0 553 296 528 312 490 312 c 0 457 312 442 306 423 285 c 0 417 279 408 275 399 275 c 0 381 275 366 291 366 309 c 0 366 346 427 379 493 379 c 0 566 379 620 333 620 271 c 0 620 240 602 211 572 192 c 2 572 192 570 191 569 190 c 1 610 169 633 135 633 97 c 0 633 64 615 29 587 8 c 0 561 -11 526 -20 476 -20 c 0 398 -20 348 1 348 34 c 0 348 53 363 68 381 68 c 0 389 68 393 67 403 60 c 0 418 50 436 47 474 47 c 0 534 47 566 65 566 99 c 0 566 120 548 141 522 153 c 0 510 158 505 159 477 160 c 0 456 162 443 174 443 193 c 0 443 212 458 226 477 226 c 2 134 638 m 1 134 314 l 1 191 314 l 2 220 314 234 303 234 281 c 0 234 259 219 247 191 247 c 2 10 247 l 2 -18 247 -34 259 -34 281 c 0 -34 303 -20 314 10 314 c 2 67 314 l 1 67 551 l 1 19 539 l 2 8 536 5 535 -1 535 c 0 -18 535 -32 551 -32 570 c 0 -32 589 -23 597 2 604 c 2 134 638 l 1 473 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 67 145 84 c 0 145 90 148 99 155 110 c 2 415 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 548 481 541 473 528 c 2 EndSplineSet MinimumDistance: x30,27 x30,29 x23,26 x23,24 EndChar StartChar: twothirds Encoding: 8532 8532 Width: 600 Flags: W HStem: -20 67<449 495> 248 67<55 163> 248 99<190 198> 312 67<474 504> 571 67<80.2939 97> VStem: -50 280<249 315> 159 67<517 530> 553 67<268 276> 566 67<92 101> DStem: 416 561 474 528 155 110 213 77 Fore 54 315 m 1 163 315 l 1 166 336 177 347 196 347 c 0 219 347 230 333 230 304 c 2 230 248 l 1 -50 248 l 1 -50 316 l 1 136 470 159 493 159 521 c 0 159 549 131 571 94 571 c 0 71 571 51 563 38 547 c 0 33 541 32 540 26 521 c 0 22 509 9 501 -4 501 c 0 -23 501 -38 516 -38 534 c 0 -38 554 -22 584 -1 603 c 0 24 625 59 638 95 638 c 0 170 638 226 587 226 518 c 0 226 467 203 440 54 315 c 1 477 226 m 2 502 226 l 2 529 226 553 247 553 270 c 0 553 296 528 312 490 312 c 0 457 312 442 306 423 285 c 0 417 279 408 275 399 275 c 0 381 275 366 291 366 309 c 0 366 346 427 379 493 379 c 0 566 379 620 333 620 271 c 0 620 240 602 211 572 192 c 2 572 192 570 191 569 190 c 1 610 169 633 135 633 97 c 0 633 64 615 29 587 8 c 0 561 -11 526 -20 476 -20 c 0 398 -20 348 1 348 34 c 0 348 53 363 68 381 68 c 0 389 68 393 67 403 60 c 0 418 50 436 47 474 47 c 0 534 47 566 65 566 99 c 0 566 120 548 141 522 153 c 0 510 158 505 159 477 160 c 0 456 162 443 174 443 193 c 0 443 212 458 226 477 226 c 2 474 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 66 145 84 c 0 145 91 147 97 155 110 c 2 416 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 549 480 539 474 528 c 2 EndSplineSet EndChar StartChar: uni2155 Encoding: 8533 8533 Width: 600 Flags: W HStem: -25 67<472 494> 179 67<510 515> 247 67<-2 66 134 193> 297 67<460 578> VStem: 67 67<314 550> 392 67<237 297> 392 224<327 332> 575 67<103 119> DStem: 415 561 473 528 155 110 213 77 Fore 459 297 m 1 459 236 l 1 481 242 495 246 513 246 c 0 587 246 642 186 642 108 c 0 642 72 630 40 608 17 c 0 581 -13 546 -25 489 -25 c 0 415 -25 359 1 359 36 c 0 359 52 373 71 390 71 c 0 398 71 403 70 412 62 c 0 430 47 448 42 488 42 c 0 546 42 575 65 575 107 c 0 575 147 553 179 512 179 c 0 492 179 465 172 439 158 c 0 431 155 426 153 420 153 c 0 402 153 392 171 392 191 c 2 392 364 l 1 576 364 l 2 592 364 595 365 604 358 c 24 613 350 616 340 616 330 c 0 616 320 611 308 601 302 c 0 597 299 589 297 576 297 c 2 459 297 l 1 134 638 m 1 134 314 l 1 191 314 l 2 220 314 234 303 234 281 c 0 234 259 219 247 191 247 c 2 10 247 l 2 -18 247 -34 259 -34 281 c 0 -34 303 -20 314 10 314 c 2 67 314 l 1 67 551 l 1 19 539 l 2 8 536 5 535 -1 535 c 0 -18 535 -32 551 -32 570 c 0 -32 589 -23 597 2 604 c 2 134 638 l 1 473 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 67 145 84 c 0 145 90 148 99 155 110 c 2 415 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 548 481 541 473 528 c 2 EndSplineSet MinimumDistance: x29,26 x29,28 x22,25 x22,23 EndChar StartChar: uni2156 Encoding: 8534 8534 Width: 600 Flags: W HStem: -25 67<472 494> 179 67<510 515> 248 67<55 163> 248 99<190 198> 297 67<460 578> 571 67<80.2939 97> VStem: -50 280<249 315> 159 67<517 530> 392 67<237 297> 392 224<327 332> 575 67<103 119> DStem: 415 561 473 528 155 110 213 77 Fore 54 315 m 1 163 315 l 1 166 336 177 347 196 347 c 0 219 347 230 333 230 304 c 2 230 248 l 1 -50 248 l 1 -50 316 l 1 136 470 159 493 159 521 c 0 159 549 131 571 94 571 c 0 71 571 51 563 38 547 c 0 33 541 32 540 26 521 c 0 22 509 9 501 -4 501 c 0 -23 501 -38 516 -38 534 c 0 -38 554 -22 584 -1 603 c 0 24 625 59 638 95 638 c 0 170 638 226 587 226 518 c 0 226 467 203 440 54 315 c 1 459 297 m 1 459 236 l 1 481 242 495 246 513 246 c 0 587 246 642 186 642 108 c 0 642 72 630 40 608 17 c 0 581 -13 546 -25 489 -25 c 0 415 -25 359 1 359 36 c 0 359 52 373 71 390 71 c 0 398 71 403 70 412 62 c 0 430 47 448 42 488 42 c 0 546 42 575 65 575 107 c 0 575 147 553 179 512 179 c 0 492 179 465 172 439 158 c 0 431 155 426 153 420 153 c 0 402 153 392 171 392 191 c 2 392 364 l 1 576 364 l 2 592 364 595 365 604 358 c 24 613 350 616 340 616 330 c 0 616 320 611 308 601 302 c 0 597 299 589 297 576 297 c 2 459 297 l 1 473 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 67 145 84 c 0 145 90 148 99 155 110 c 2 415 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 548 481 541 473 528 c 2 EndSplineSet EndChar StartChar: uni2157 Encoding: 8535 8535 Width: 600 Flags: W HStem: -25 67<469 501> 179 67<501 517> 238 67<69 104> 297 67<460 581> 570 67<83 113> VStem: 162 67<527 535> 175 67<354 365> 392 67<237 297> 392 224<325 332> 575 67<103 119> DStem: 415 561 473 528 155 110 213 77 Fore 86 484 m 2 111 484 l 2 138 484 162 505 162 528 c 0 162 554 137 570 99 570 c 0 66 570 51 564 32 543 c 0 26 537 17 533 8 533 c 0 -10 533 -25 549 -25 567 c 0 -25 604 36 637 102 637 c 0 175 637 229 591 229 529 c 0 229 498 211 469 181 450 c 2 181 450 179 449 178 448 c 1 219 427 242 393 242 355 c 0 242 322 224 287 196 266 c 0 170 247 135 238 85 238 c 0 7 238 -43 259 -43 292 c 0 -43 311 -28 326 -10 326 c 0 -2 326 2 325 12 318 c 0 27 308 45 305 83 305 c 0 143 305 175 323 175 357 c 0 175 378 157 399 131 411 c 0 119 416 114 417 86 418 c 0 65 420 52 432 52 451 c 0 52 470 67 484 86 484 c 2 459 297 m 1 459 236 l 1 481 242 495 246 513 246 c 0 587 246 642 186 642 108 c 0 642 72 630 40 608 17 c 0 581 -13 546 -25 489 -25 c 0 415 -25 359 1 359 36 c 0 359 52 373 71 390 71 c 0 398 71 403 70 412 62 c 0 430 47 448 42 488 42 c 0 546 42 575 65 575 107 c 0 575 147 553 179 512 179 c 0 492 179 465 172 439 158 c 0 431 155 426 153 420 153 c 0 402 153 392 171 392 191 c 2 392 364 l 1 576 364 l 2 592 364 595 365 604 358 c 24 613 350 616 340 616 330 c 0 616 320 611 308 601 302 c 0 597 299 589 297 576 297 c 2 459 297 l 1 473 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 67 145 84 c 0 145 90 148 99 155 110 c 2 415 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 548 481 541 473 528 c 2 EndSplineSet EndChar StartChar: uni2158 Encoding: 8536 8536 Width: 600 Flags: W HStem: -25 67<472 495> 179 67<497.955 515> 247 67<98.013 129> 247 380<130 197> 297 67<460 578> 330 67<52 129> VStem: -33 267<357 366> 68 166<279 283> 130 67<314 330 398 525> 392 67<237 297> 392 224<327 332> 575 67<103 119> DStem: 113 627 130 526 -33 385 51 397 415 561 473 528 155 110 213 77 Fore 197 627 m 1 197 397 l 1 220 396 234 384 234 364 c 0 234 344 221 331 197 330 c 1 197 314 l 1 220 313 234 301 234 281 c 0 234 259 218 247 190 247 c 2 111 247 l 2 83 247 68 259 68 281 c 0 68 303 82 314 111 314 c 2 130 314 l 1 130 330 l 1 -33 330 l 1 -33 385 l 1 113 627 l 1 197 627 l 1 130 397 m 1 130 526 l 1 51 397 l 1 130 397 l 1 459 297 m 1 459 236 l 1 481 242 495 246 513 246 c 0 587 246 642 186 642 108 c 0 642 72 630 40 608 17 c 0 581 -13 546 -25 489 -25 c 0 415 -25 359 1 359 36 c 0 359 52 373 71 390 71 c 0 398 71 403 70 412 62 c 0 430 47 448 42 488 42 c 0 546 42 575 65 575 107 c 0 575 147 553 179 512 179 c 0 492 179 465 172 439 158 c 0 431 155 426 153 420 153 c 0 402 153 392 171 392 191 c 2 392 364 l 1 576 364 l 2 592 364 595 365 604 358 c 24 613 350 616 340 616 330 c 0 616 320 611 308 601 302 c 0 597 299 589 297 576 297 c 2 459 297 l 1 473 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 67 145 84 c 0 145 90 148 99 155 110 c 2 415 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 548 481 541 473 528 c 2 EndSplineSet MinimumDistance: y13,11 x11,13 x11,12 x10,7 x10,9 EndChar StartChar: uni2159 Encoding: 8537 8537 Width: 600 Flags: W HStem: -12 67<472 486> 173 67<472 486> 247 67<-2 66 134 193> 318 69<526 542> VStem: 67 67<314 550> 533 67<109 124> DStem: 415 561 473 528 155 110 213 77 Fore 404 198 m 1 433 229 453 240 484 240 c 0 548 240 600 182 600 113 c 0 600 78 589 47 568 24 c 0 546 0 517 -12 476 -12 c 0 425 -12 386 9 363 51 c 0 347 80 335 127 335 171 c 0 335 226 353 273 384 312 c 0 425 362 476 387 532 387 c 0 575 387 603 368 603 344 c 0 603 327 589 310 572 310 c 0 567 310 560 311 551 315 c 0 544 317 541 318 535 318 c 0 478 318 418 273 404 198 c 1 410 125 m 1 419 72 442 55 478 55 c 0 511 55 533 81 533 113 c 0 533 145 510 173 480 173 c 0 454 173 426 155 410 125 c 1 134 638 m 1 134 314 l 1 191 314 l 2 220 314 234 303 234 281 c 0 234 259 219 247 191 247 c 2 10 247 l 2 -18 247 -34 259 -34 281 c 0 -34 303 -20 314 10 314 c 2 67 314 l 1 67 551 l 1 19 539 l 2 8 536 5 535 -1 535 c 0 -18 535 -32 551 -32 570 c 0 -32 589 -23 597 2 604 c 2 134 638 l 1 473 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 67 145 84 c 0 145 90 148 99 155 110 c 2 415 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 548 481 541 473 528 c 2 EndSplineSet MinimumDistance: x25,22 x25,24 x18,21 x18,19 EndChar StartChar: uni215A Encoding: 8538 8538 Width: 600 Flags: W HStem: -12 67<472 486> 173 67<472 486> 235 67<76 108> 318 69<524 540> 439 67<108 124> 557 67<65 188> VStem: -3 67<497 557> -3 224<586 596> 180 67<356 372> 533 67<109 124> DStem: 415 561 473 528 155 110 213 77 Fore 64 557 m 1 64 496 l 1 86 502 100 506 118 506 c 0 192 506 247 446 247 368 c 0 247 332 235 300 213 277 c 0 186 247 151 235 94 235 c 0 20 235 -36 261 -36 296 c 0 -36 312 -22 331 -5 331 c 0 3 331 8 330 17 322 c 0 35 307 53 302 93 302 c 0 151 302 180 325 180 367 c 0 180 407 158 439 117 439 c 0 97 439 70 432 44 418 c 0 36 415 31 413 25 413 c 0 7 413 -3 431 -3 451 c 2 -3 624 l 1 181 624 l 2 197 624 200 625 209 618 c 24 218 610 221 600 221 590 c 0 221 580 216 568 206 562 c 0 202 559 194 557 181 557 c 2 64 557 l 1 404 198 m 1 433 229 453 240 484 240 c 0 548 240 600 182 600 113 c 0 600 78 589 47 568 24 c 0 546 0 517 -12 476 -12 c 0 425 -12 386 9 363 51 c 0 347 80 335 127 335 171 c 0 335 226 353 273 384 312 c 0 425 362 476 387 532 387 c 0 575 387 603 368 603 344 c 0 603 327 589 310 572 310 c 0 567 310 560 311 551 315 c 0 544 317 541 318 535 318 c 0 478 318 418 273 404 198 c 1 410 125 m 1 419 72 442 55 478 55 c 0 511 55 533 81 533 113 c 0 533 145 510 173 480 173 c 0 454 173 426 155 410 125 c 1 473 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 67 145 84 c 0 145 90 148 99 155 110 c 2 415 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 548 481 541 473 528 c 2 EndSplineSet EndChar StartChar: oneeighth Encoding: 8539 8539 Width: 600 Flags: W HStem: -17 67<478 494> 150 68<483 494> 247 67<-2 66 134 193> 315 67<478 494> VStem: 67 67<314 550> 358 67<92 100> 363 67<266 273> 550 67<266 273> 555 67<92 100> DStem: 415 561 473 528 155 110 213 77 Fore 563 187 m 1 602 163 622 131 622 93 c 0 622 28 569 -17 489 -17 c 0 411 -17 358 28 358 93 c 0 358 131 378 163 417 187 c 1 380 211 363 238 363 270 c 0 363 332 419 382 490 382 c 0 560 382 617 332 617 271 c 0 617 238 600 211 563 187 c 1 490 315 m 0 456 315 430 295 430 268 c 0 430 241 456 218 490 218 c 0 524 218 550 240 550 267 c 0 550 294 524 315 490 315 c 0 490 150 m 0 456 150 425 125 425 98 c 0 425 71 453 50 490 50 c 0 527 50 555 70 555 97 c 0 555 124 524 150 490 150 c 0 134 638 m 1 134 314 l 1 191 314 l 2 220 314 234 303 234 281 c 0 234 259 219 247 191 247 c 2 10 247 l 2 -18 247 -34 259 -34 281 c 0 -34 303 -20 314 10 314 c 2 67 314 l 1 67 551 l 1 19 539 l 2 8 536 5 535 -1 535 c 0 -18 535 -32 551 -32 570 c 0 -32 589 -23 597 2 604 c 2 134 638 l 1 473 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 67 145 84 c 0 145 90 148 99 155 110 c 6 415 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 548 481 541 473 528 c 2 EndSplineSet MinimumDistance: x24,21 x24,23 x17,20 x17,18 EndChar StartChar: threeeighths Encoding: 8540 8540 Width: 600 Flags: W HStem: -17 67<483 501> 150 68<483 501> 238 67<69 104> 315 67<483 501> 570 67<83 113> VStem: 162 67<527 534> 175 67<351 359> 358 67<92 100> 363 67<265 273> 550 67<265 273> 555 67<92 100> DStem: 415 561 473 528 155 110 213 77 Fore 86 484 m 2 111 484 l 2 138 484 162 505 162 528 c 0 162 554 137 570 99 570 c 0 66 570 51 564 32 543 c 0 26 537 17 533 8 533 c 0 -10 533 -25 549 -25 567 c 0 -25 604 36 637 102 637 c 0 175 637 229 591 229 529 c 0 229 498 211 469 181 450 c 2 181 450 179 449 178 448 c 1 219 427 242 393 242 355 c 0 242 322 224 287 196 266 c 0 170 247 135 238 85 238 c 0 7 238 -43 259 -43 292 c 0 -43 311 -28 326 -10 326 c 0 -2 326 2 325 12 318 c 0 27 308 45 305 83 305 c 0 143 305 175 323 175 357 c 0 175 378 157 399 131 411 c 0 119 416 114 417 86 418 c 0 65 420 52 432 52 451 c 0 52 470 67 484 86 484 c 2 563 187 m 1 602 163 622 131 622 93 c 0 622 28 569 -17 489 -17 c 0 411 -17 358 28 358 93 c 0 358 131 378 163 417 187 c 1 380 211 363 238 363 270 c 0 363 332 419 382 490 382 c 0 560 382 617 332 617 271 c 0 617 238 600 211 563 187 c 1 490 315 m 0 456 315 430 295 430 268 c 0 430 241 456 218 490 218 c 0 524 218 550 240 550 267 c 0 550 294 524 315 490 315 c 0 490 150 m 0 456 150 425 125 425 98 c 0 425 71 453 50 490 50 c 0 527 50 555 70 555 97 c 0 555 124 524 150 490 150 c 0 473 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 67 145 84 c 0 145 90 148 99 155 110 c 6 415 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 548 481 541 473 528 c 2 EndSplineSet EndChar StartChar: fiveeighths Encoding: 8541 8541 Width: 600 Flags: W HStem: -17 67<483 492> 150 68<483 492> 235 67<76 108> 315 67<483 492> 439 67<108 124> 557 67<65 188> VStem: -3 67<497 557> -3 224<586 592> 180 67<354.145 381> 358 67<92 100> 363 67<266 276> 550 67<266 276> 555 67<92 100> DStem: 415 561 473 528 155 110 213 77 Fore 64 557 m 1 64 496 l 1 86 502 100 506 118 506 c 0 192 506 247 446 247 368 c 0 247 332 235 300 213 277 c 0 186 247 151 235 94 235 c 0 20 235 -36 261 -36 296 c 0 -36 312 -22 331 -5 331 c 0 3 331 8 330 17 322 c 0 35 307 53 302 93 302 c 0 151 302 180 325 180 367 c 0 180 407 158 439 117 439 c 0 97 439 70 432 44 418 c 0 36 415 31 413 25 413 c 0 7 413 -3 431 -3 451 c 2 -3 624 l 1 181 624 l 2 197 624 200 625 209 618 c 24 218 610 221 600 221 590 c 0 221 580 216 568 206 562 c 0 202 559 194 557 181 557 c 2 64 557 l 1 563 187 m 1 602 163 622 131 622 93 c 0 622 28 569 -17 489 -17 c 0 411 -17 358 28 358 93 c 0 358 131 378 163 417 187 c 1 380 211 363 238 363 270 c 0 363 332 419 382 490 382 c 0 560 382 617 332 617 271 c 0 617 238 600 211 563 187 c 1 490 315 m 0 456 315 430 295 430 268 c 0 430 241 456 218 490 218 c 0 524 218 550 240 550 267 c 0 550 294 524 315 490 315 c 0 490 150 m 0 456 150 425 125 425 98 c 0 425 71 453 50 490 50 c 0 527 50 555 70 555 97 c 0 555 124 524 150 490 150 c 0 473 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 67 145 84 c 0 145 90 148 99 155 110 c 2 415 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 548 481 541 473 528 c 2 EndSplineSet EndChar StartChar: seveneighths Encoding: 8542 8542 Width: 600 Flags: W HStem: -17 67<483 503> 150 68<483 492> 315 67<483 492> 560 67<68 199> VStem: 7 265<566 626> 358 67<92 100> 363 67<266 276> 550 67<266 276> 555 67<92 100> DStem: 200 560 272 566 112 297 175 276 415 561 473 528 155 110 213 77 Fore 200 560 m 1 68 560 l 1 67 538 57 527 38 527 c 0 28 527 17 532 12 541 c 0 9 547 7 552 7 567 c 2 7 627 l 1 272 627 l 1 272 566 l 1 175 276 l 2 168 254 159 246 143 246 c 0 126 246 108 260 108 276 c 0 108 281 108 286 112 297 c 2 200 560 l 1 563 187 m 1 602 163 622 131 622 93 c 0 622 28 569 -17 489 -17 c 0 411 -17 358 28 358 93 c 0 358 131 378 163 417 187 c 1 380 211 363 238 363 270 c 0 363 332 419 382 490 382 c 0 560 382 617 332 617 271 c 0 617 238 600 211 563 187 c 1 490 315 m 0 456 315 430 295 430 268 c 0 430 241 456 218 490 218 c 0 524 218 550 240 550 267 c 0 550 294 524 315 490 315 c 0 490 150 m 0 456 150 425 125 425 98 c 0 425 71 453 50 490 50 c 0 527 50 555 70 555 97 c 0 555 124 524 150 490 150 c 0 473 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 67 145 84 c 0 145 90 148 99 155 110 c 6 415 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 548 481 541 473 528 c 2 EndSplineSet EndChar StartChar: uni215F Encoding: 8543 8543 Width: 600 Flags: W HStem: 247 67<-2 66 134 193> VStem: 67 67<314 550> DStem: 415 561 473 528 155 110 213 77 Fore 134 638 m 1 134 314 l 1 191 314 l 2 220 314 234 303 234 281 c 0 234 259 219 247 191 247 c 2 10 247 l 2 -18 247 -34 259 -34 281 c 0 -34 303 -20 314 10 314 c 2 67 314 l 1 67 551 l 1 19 539 l 2 8 536 5 535 -1 535 c 0 -18 535 -32 551 -32 570 c 0 -32 589 -23 597 2 604 c 2 134 638 l 1 473 528 m 2 213 77 l 2 202 58 193 51 179 51 c 0 161 51 145 67 145 84 c 0 145 90 148 99 155 110 c 6 415 561 l 2 427 581 435 587 450 587 c 0 467 587 484 571 484 555 c 0 484 548 481 541 473 528 c 2 EndSplineSet MinimumDistance: x14,-1 x8,5 x8,7 x1,4 x1,2 EndChar StartChar: arrowleft Encoding: 8592 8592 Width: 600 Flags: W HStem: 237 86<303 528> Fore 302 323 m 1 518 323 l 2 551 323 570 307 570 280 c 0 570 253 551 237 518 237 c 2 302 237 l 1 357 207 l 2 380 195 389 183 389 164 c 0 389 159 387 152 384 145 c 2 383 143 l 2 377 129 361 118 347 118 c 0 339 118 328 121 317 127 c 2 16 280 l 1 317 428 l 2 329 434 339 437 347 437 c 0 361 437 377 426 383 412 c 2 384 410 l 2 387 404 389 397 389 391 c 0 389 372 380 360 357 348 c 2 302 323 l 1 EndSplineSet EndChar StartChar: arrowup Encoding: 8593 8593 Width: 600 Flags: W VStem: 258 86<48 267> Fore 258 268 m 1 232 212 l 2 220 190 208 180 190 180 c 0 184 180 176 182 170 186 c 2 168 186 l 2 154 192 144 208 144 222 c 0 144 230 146 240 152 252 c 2 300 554 l 1 454 252 l 2 460 242 462 230 462 222 c 0 462 208 452 192 438 186 c 2 436 186 l 2 428 182 422 180 416 180 c 0 398 180 386 190 374 212 c 2 344 268 l 1 344 52 l 2 344 18 328 0 300 0 c 0 274 0 258 18 258 52 c 2 258 268 l 1 EndSplineSet MinimumDistance: x14,-1 EndChar StartChar: arrowright Encoding: 8594 8594 Width: 600 Flags: W HStem: 237 86<78 286> DStem: 243 348 283 428 375 280 584 280 Fore 375 280 m 1 243 348 l 2 220 360 211 372 211 391 c 0 211 397 213 404 216 410 c 2 217 412 l 2 223 426 239 437 253 437 c 0 261 437 271 434 283 428 c 2 584 280 l 1 283 127 l 2 272 121 261 118 253 118 c 0 239 118 223 129 217 143 c 2 216 145 l 2 213 152 211 159 211 164 c 0 211 183 220 195 243 207 c 2 375 280 l 1 82 237 m 2 49 237 30 253 30 280 c 0 30 307 49 323 82 323 c 2 475 323 l 2 509 323 528 307 528 280 c 0 528 253 509 237 475 237 c 2 82 237 l 2 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: arrowdown Encoding: 8595 8595 Width: 600 Flags: W VStem: 258 86<287 512> Fore 258 286 m 1 258 502 l 2 258 536 274 554 300 554 c 0 328 554 344 536 344 502 c 2 344 286 l 1 374 342 l 2 386 364 398 374 416 374 c 0 422 374 428 372 436 368 c 2 438 368 l 2 452 362 462 346 462 332 c 0 462 324 460 312 454 302 c 2 300 0 l 1 152 302 l 2 146 314 144 324 144 332 c 0 144 346 154 362 168 368 c 2 170 368 l 2 176 372 184 374 190 374 c 0 208 374 220 364 232 342 c 2 258 286 l 1 EndSplineSet MinimumDistance: x3,-1 EndChar StartChar: partialdiff Encoding: 8706 8706 Width: 600 Flags: HMW HStem: -16 100<282.5 348.5> 303 100<282.5 319.5> 570 20<175 232> VStem: 102 100<162.5 226> 424 100<159.5 224.5> Fore 132 541 m 1 131 547 l 2 129 558 138 574 149 582 c 0 158 588 167 590 183 590 c 0 281 590 363 554 425 484 c 0 485 415 524 311 524 219 c 0 524 75 441 -16 309 -16 c 0 188 -16 102 72 102 195 c 0 102 318 186 403 306 403 c 0 333 403 356 399 375 390 c 1 340 452 268 490 184 491 c 0 167 491 161 492 152 498 c 0 141 505 132 520 132 532 c 2 132 541 l 1 315 303 m 0 250 303 202 257 202 195 c 0 202 130 249 84 316 84 c 0 381 84 424 127 424 192 c 0 424 257 379 303 315 303 c 0 EndSplineSet EndChar StartChar: emptyset Encoding: 8709 8709 Width: 600 Flags: W HStem: -15 100<291 307> 538 100<291 307> VStem: 83 100<239 383> 417 100<239 383> DStem: 416 651 505 610 95 -27 185 -69 Fore 505 610 m 1 185 -69 l 1 170 -103 157 -113 133 -113 c 0 107 -113 83 -90 83 -65 c 0 83 -55 86 -45 95 -27 c 2 416 651 l 1 431 685 444 695 467 695 c 0 494 695 517 672 517 647 c 0 517 636 515 630 505 610 c 1 517 359 m 2 517 264 l 2 517 173 489 92 439 40 c 0 405 4 357 -15 300 -15 c 0 243 -15 195 4 161 40 c 0 111 92 83 173 83 264 c 2 83 359 l 2 83 450 111 531 161 583 c 0 195 619 243 638 300 638 c 0 357 638 405 619 439 583 c 0 489 531 517 450 517 359 c 2 183 366 m 2 183 257 l 2 183 153 229 85 300 85 c 0 371 85 417 153 417 257 c 2 417 366 l 2 417 470 371 538 300 538 c 0 229 538 183 470 183 366 c 2 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: Delta Encoding: 8710 8710 Width: 600 Flags: HMW HStem: 0 100<164 436> 563 20<263 338 338 338> Fore 15 0 m 1 263 583 l 1 338 583 l 1 585 0 l 1 15 0 l 1 164 100 m 1 436 100 l 1 300 421 l 1 164 100 l 1 EndSplineSet EndChar StartChar: gradient Encoding: 8711 8711 Width: 600 Flags: W HStem: 0 20<263 338 338 338> 483 100<164 436> Ref: 8710 N 1 0 0 -1 0 583 EndChar StartChar: summation Encoding: 8721 8721 Width: 600 Flags: HMW HStem: -97 100<157 441> 571 100<165 433 165 165> Fore 433 571 m 1 165 571 l 1 308 332 l 2 316 318 319 310 319 301 c 0 319 292 317 286 309 272 c 2 157 3 l 1 441 3 l 1 445 82 l 1 446 115 462 133 489 133 c 2 491 133 l 2 519 133 534 115 535 81 c 1 537 -44 l 1 538 -81 522 -97 485 -97 c 2 98 -97 l 2 64 -97 45 -81 45 -53 c 2 45 -28 l 2 45 -7 45 -7 55 11 c 2 215 302 l 1 56 562 l 2 45 580 45 581 45 602 c 2 45 627 l 2 45 655 64 671 98 671 c 2 482 671 l 2 518 671 534 656 534 622 c 2 534 617 l 1 530 492 l 1 529 459 514 441 487 441 c 2 483 441 l 2 456 441 441 457 439 490 c 1 433 571 l 1 EndSplineSet EndChar StartChar: minus Encoding: 8722 8722 Width: 600 Flags: HMW HStem: 230 100<108 492> Fore 108 330 m 2 492 330 l 2 519 330 527 328 537 321 c 0 550 311 558 296 558 280 c 0 558 263 549 246 534 237 c 0 526 232 514 230 492 230 c 2 108 230 l 2 84 230 72 232 63 240 c 1 50 249 42 264 42 280 c 0 42 297 51 314 66 323 c 0 75 329 83 330 108 330 c 2 EndSplineSet EndChar StartChar: uni2215 Encoding: 8725 8725 Width: 600 Flags: W DStem: 416 651 505 610 95 -27 185 -69 Ref: 47 N 1 0 0 1 0 0 EndChar StartChar: radical Encoding: 8730 8730 Width: 600 Flags: HMW HStem: 251 86<65 104> 611 86<446 589 446 446> Fore 177 337 m 1 210 216 l 1 377 697 l 1 589 697 l 2 623 697 642 681 642 654 c 0 642 627 623 611 589 611 c 2 446 611 l 1 202 -60 l 1 104 251 l 1 65 251 l 2 31 251 12 267 12 294 c 0 12 321 31 337 65 337 c 2 177 337 l 1 EndSplineSet EndChar StartChar: proportional Encoding: 8733 8733 Width: 600 Flags: W HStem: 124 96<209 219 478 518> 404 96<209 219 478 518> VStem: 51 81<300 316> Fore 132 312 m 0 132 248 165 220 216 220 c 0 267 220 313 312 313 312 c 1 313 312 267 404 217 404 c 0 165 404 132 376 132 312 c 0 516 404 m 2 479 404 l 2 429 404 383 312 383 312 c 1 383 312 429 220 480 220 c 2 516 220 l 2 542.496 220 564 198.496 564 172 c 0 564 145.504 542.496 124 516 124 c 2 484 124 l 2 431 124 388 152 348 212 c 1 308 152 265 124 212 124 c 0 110 124 51 196 51 312 c 0 51 426 110 500 210 500 c 0 265 500 308 470 348 410 c 1 388 470 431 500 486 500 c 2 516 500 l 2 542.496 500 564 478.496 564 452 c 0 564 425.504 542.496 404 516 404 c 2 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: infinity Encoding: 8734 8734 Width: 600 Flags: W HStem: 124 94<161 171 430 440> 404 96<161 171 430 440> VStem: 3 81<300 316> 516 81<300 316> Fore 300 410 m 1 340 470 383 500 438 500 c 0 538 500 597 426 597 312 c 0 597 196 538 124 436 124 c 0 383 124 340 152 300 212 c 1 260 152 217 124 164 124 c 0 62 124 3 196 3 312 c 0 3 426 62 500 162 500 c 0 217 500 260 470 300 410 c 1 516 312 m 0 516 376 483 404 431 404 c 0 381 404 335 312 335 312 c 1 335 312 381 218 432 218 c 0 483 218 516 248 516 312 c 0 84 312 m 0 84 248 117 218 168 218 c 0 219 218 265 312 265 312 c 1 265 312 219 404 169 404 c 0 117 404 84 376 84 312 c 0 EndSplineSet MinimumDistance: x2,-1 Back 300 349 m 1 336 421 379 468 440 468 c 1 530 468 595 398 595 302 c 0 595 206 530 134 440 134 c 1 379 134 336 182 300 252 c 1 264 182 221 134 160 134 c 1 70 134 5 206 5 302 c 0 5 398 70 468 160 468 c 1 221 468 264 421 300 349 c 1 554 302 m 0 554 378 508 428 437 428 c 1 372 428 320 302 320 302 c 1 320 302 372 176 438 176 c 1 508 176 554 226 554 302 c 0 46 302 m 0 46 226 92 176 162 176 c 1 228 176 280 302 280 302 c 1 280 302 228 428 163 428 c 1 92 428 46 378 46 302 c 0 EndSplineSet EndChar StartChar: orthogonal Encoding: 8735 8735 Width: 600 Flags: W HStem: 0 100<200 485> VStem: 100 100<100 385> Fore 200 100 m 1 483 100 l 2 511 100 533 78 533 50 c 0 533 22 511 0 483 0 c 2 100 0 l 1 100 383 l 2 100 411 122 433 150 433 c 0 178 433 200 411 200 383 c 2 200 100 l 1 EndSplineSet MinimumDistance: x1,-1 y0,5 y0,7 x0,3 x0,1 EndChar StartChar: notequal Encoding: 8800 8800 Width: 600 Flags: HMW HStem: 138 100<108 171 335 492> 322 100<108 271 434 492> Fore 434 422 m 1 492 422 l 2 519 422 527 420 537 413 c 0 550 403 558 388 558 372 c 0 558 355 549 338 534 329 c 0 526 324 514 322 492 322 c 2 380 322 l 1 335 238 l 1 492 238 l 2 519 238 527 236 537 229 c 0 550 219 558 204 558 188 c 0 558 171 549 154 534 145 c 0 526 140 514 138 492 138 c 2 281 138 l 1 235 52 l 1 224 33 208 22 189 22 c 0 164 22 141 43 141 66 c 0 141 75 145 89 150 98 c 2 171 138 l 1 108 138 l 2 84 138 72 140 63 148 c 1 50 157 42 173 42 188 c 0 42 205 52 222 66 231 c 0 75 237 83 238 108 238 c 2 225 238 l 1 271 322 l 1 108 322 l 2 84 322 72 324 63 332 c 1 50 341 42 357 42 372 c 0 42 389 52 406 66 415 c 0 75 421 83 422 108 422 c 2 325 422 l 1 363 493 l 2 373 512 392 525 407 525 c 0 433 525 456 502 456 476 c 0 456 466 454 458 448 447 c 2 434 422 l 1 EndSplineSet EndChar StartChar: equivalence Encoding: 8801 8801 Width: 600 Flags: W HStem: 138 100<90 506> 322 100<90 506> VStem: 42 516<186 190 362.2 378> Fore 108 422 m 2 492 422 l 2 519 422 527 420 537 413 c 0 550 403 558 388 558 372 c 0 558 355 549 338 534 329 c 0 526 324 514 322 492 322 c 2 108 322 l 2 84 322 72 324 63 332 c 1 50 341 42 356 42 372 c 0 42 389 51 406 66 415 c 0 75 421 83 422 108 422 c 2 108 238 m 2 492 238 l 2 519 238 527 236 537 229 c 0 550 219 558 204 558 188 c 0 558 171 549 154 534 145 c 0 526 140 514 138 492 138 c 2 108 138 l 2 84 138 72 140 63 148 c 1 50 157 42 172 42 188 c 0 42 205 51 222 66 231 c 0 75 237 83 238 108 238 c 2 EndSplineSet MinimumDistance: x3,-1 EndChar StartChar: lessequal Encoding: 8804 8804 Width: 600 Flags: HMW HStem: 0 86<94 487> 571 20<503.5 514> Fore 212 368 m 1 515 230 l 2 539 219 549 206 549 187 c 0 549 181 547 175 545 168 c 1 544 167 l 1 538 153 521 141 507 141 c 0 500 141 489 144 478 149 c 2 3 369 l 1 478 583 l 2 490 588 500 591 507 591 c 0 521 591 538 579 544 566 c 2 545 564 l 2 548 558 549 551 549 545 c 0 549 526 539 513 515 502 c 2 212 368 l 1 487 0 m 2 94 0 l 2 60 0 41 16 41 43 c 0 41 70 60 86 94 86 c 2 487 86 l 2 520 86 539 70 539 43 c 0 539 16 520 0 487 0 c 2 EndSplineSet EndChar StartChar: greaterequal Encoding: 8805 8805 Width: 600 Flags: HMW HStem: 0 86<97 491> 571 20<70 80.5> Fore 582 369 m 1 106 149 l 2 95 144 84 141 77 141 c 0 63 141 47 152 40 167 c 1 39 168 l 1 36 175 35 181 35 187 c 0 35 206 45 219 69 230 c 2 372 368 l 1 69 502 l 2 45 513 35 526 35 546 c 0 35 552 36 558 39 564 c 2 40 566 l 2 47 580 63 591 77 591 c 0 84 591 94 588 106 583 c 2 582 369 l 1 97 86 m 2 491 86 l 2 524 86 543 70 543 43 c 0 543 16 524 0 491 0 c 2 97 0 l 2 63 0 44 16 44 43 c 0 44 70 63 86 97 86 c 2 EndSplineSet EndChar StartChar: revlogicalnot Encoding: 8976 8976 Width: 600 Flags: W HStem: 345 100<142 399> VStem: 42 100<181 345 345 345> Ref: 172 N -1 0 0 1 507 0 EndChar StartChar: SF100000 Encoding: 9472 9472 Width: 600 Flags: W HStem: 250 100<1 599> VStem: 0 600<251 349> Fore 0 350 m 1 600 350 l 1 600 250 l 1 -0 250 l 1 0 350 l 1 EndSplineSet EndChar StartChar: uni2501 Encoding: 9473 9473 Width: 600 Flags: W HStem: 200 200<1 599> VStem: 0 600<201 399> Fore 0 400 m 1 600 400 l 1 600 200 l 1 0 200 l 1 0 400 l 1 EndSplineSet EndChar StartChar: SF110000 Encoding: 9474 9474 Width: 600 Flags: W HStem: -200 1000<251 349> VStem: 250 100<-199 799> Fore 350 800 m 1 350 -200 l 1 250 -200 l 1 250 800 l 1 350 800 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni2503 Encoding: 9475 9475 Width: 600 Flags: W HStem: -200 1000<201 399> VStem: 200 200<-199 799> Fore 400 800 m 1 400 -200 l 1 200 -200 l 1 200 800 l 1 400 800 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni2504 Encoding: 9476 9476 Width: 600 Flags: W HStem: 250 100<1 99 201 399 501 599> VStem: 0 100<251 349> 200 200<251 349> 500 100<251 349> Fore 500 350 m 1 600 350 l 1 600 250 l 1 500 250 l 1 500 350 l 1 400 250 m 1 200 250 l 1 200 350 l 1 400 350 l 1 400 250 l 1 100 250 m 1 0 250 l 1 0 350 l 1 100 350 l 1 100 250 l 1 EndSplineSet EndChar StartChar: uni2505 Encoding: 9477 9477 Width: 600 Flags: W HStem: 200 200<1 99 201 399 501 599> VStem: 0 100<201 399> 200 200<201 399> 500 100<201 399> Fore 500 400 m 1 600 400 l 1 600 200 l 5 500 200 l 5 500 400 l 1 400 200 m 5 200 200 l 5 200 400 l 1 400 400 l 1 400 200 l 5 100 200 m 5 0 200 l 5 0 400 l 1 100 400 l 1 100 200 l 5 EndSplineSet EndChar StartChar: uni2506 Encoding: 9478 9478 Width: 600 Flags: W HStem: -200 200<251 349> 100 400<251 349> 600 200<251 349> VStem: 250 100<-199 -1 101 499 601 799> Fore 350 500 m 5 350 100 l 5 250 100 l 1 250 500 l 1 350 500 l 5 250 600 m 1 250 800 l 1 350 800 l 5 350 600 l 5 250 600 l 1 350 0 m 5 350 -200 l 5 250 -200 l 1 250 0 l 1 350 0 l 5 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni2507 Encoding: 9479 9479 Width: 600 Flags: W HStem: -200 200<201 399> 100 400<201 399> 600 200<201 399> VStem: 200 200<-199 -1 101 499 601 799> Fore 400 500 m 5 400 100 l 5 200 100 l 1 200 500 l 1 400 500 l 5 200 600 m 1 200 800 l 1 400 800 l 5 400 600 l 5 200 600 l 1 400 0 m 5 400 -200 l 5 200 -200 l 1 200 0 l 1 400 0 l 5 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni2508 Encoding: 9480 9480 Width: 600 Flags: W HStem: 250 100<1 64 136 264 336 464 536 599> VStem: 0 65<251 349> 135 130<251 349> 335 130<251 349> 535 65<251 349> Fore 465 250 m 5 335 250 l 5 335 350 l 1 465 350 l 1 465 250 l 5 535 350 m 1 600 350 l 1 600 250 l 5 535 250 l 5 535 350 l 1 265 250 m 5 135 250 l 5 135 350 l 1 265 350 l 1 265 250 l 5 65 250 m 5 0 250 l 5 0 350 l 1 65 350 l 1 65 250 l 5 EndSplineSet EndChar StartChar: uni2509 Encoding: 9481 9481 Width: 600 Flags: W HStem: 200 200<1 64 136 264 336 464 536 599> VStem: 0 65<201 399> 135 130<201 399> 335 130<201 399> 535 65<201 399> Fore 465 200 m 1 335 200 l 1 335 400 l 1 465 400 l 1 465 200 l 1 535 400 m 1 600 400 l 1 600 200 l 1 535 200 l 1 535 400 l 1 265 200 m 1 135 200 l 1 135 400 l 1 265 400 l 1 265 200 l 1 65 200 m 1 0 200 l 1 0 400 l 1 65 400 l 1 65 200 l 1 EndSplineSet EndChar StartChar: uni250A Encoding: 9482 9482 Width: 600 Flags: W HStem: -200 103<251 349> 30 207<251 349> 364 207<251 349> 697 103<251 349> VStem: 250 100<-199 -98 31 236 365 570 698 799> Fore 350 571 m 1 350 364 l 1 250 364 l 5 250 571 l 5 350 571 l 1 350 237 m 1 350 30 l 1 250 30 l 5 250 237 l 5 350 237 l 1 250 697 m 5 250 800 l 5 350 800 l 1 350 697 l 1 250 697 l 5 350 -97 m 1 350 -200 l 1 250 -200 l 5 250 -97 l 5 350 -97 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni250B Encoding: 9483 9483 Width: 600 Flags: W HStem: -200 103<201 399> 30 207<201 399> 364 207<201 399> 697 103<201 399> VStem: 200 200<-199 -98 31 236 365 570 698 799> Fore 400 571 m 5 400 364 l 5 200 364 l 1 200 571 l 1 400 571 l 5 400 237 m 5 400 30 l 5 200 30 l 1 200 237 l 1 400 237 l 5 200 697 m 1 200 800 l 1 400 800 l 5 400 697 l 5 200 697 l 1 400 -97 m 5 400 -200 l 5 200 -200 l 1 200 -97 l 1 400 -97 l 5 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: SF010000 Encoding: 9484 9484 Width: 600 Flags: W HStem: 250 100<351 599> VStem: 250 100<-199 250> 250 350<251 349> Fore 250 350 m 1 600 350 l 1 600 250 l 1 350 250 l 1 350 -200 l 1 250 -200 l 1 250 350 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 x3,1 x3,2 EndChar StartChar: uni250D Encoding: 9485 9485 Width: 600 Flags: W HStem: 200 200<351 599> VStem: 250 100<-199 200> 250 350<201 399> Fore 250 400 m 1 600 400 l 1 600 200 l 1 350 200 l 1 350 -200 l 1 250 -200 l 1 250 400 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 x3,1 x3,2 EndChar StartChar: uni250E Encoding: 9486 9486 Width: 600 Flags: W HStem: 250 100<401 599> VStem: 200 200<-199 250> 200 400<251 349> Fore 200 350 m 1 600 350 l 1 600 250 l 1 400 250 l 1 400 -200 l 1 200 -200 l 1 200 350 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 x3,1 x3,2 EndChar StartChar: uni250F Encoding: 9487 9487 Width: 600 Flags: W HStem: 200 200<401 599> VStem: 200 200<-199 200> 200 400<201 399> Fore 200 400 m 1 600 400 l 1 600 200 l 1 400 200 l 1 400 -200 l 1 200 -200 l 1 200 400 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 x3,1 x3,2 EndChar StartChar: SF030000 Encoding: 9488 9488 Width: 600 Flags: W HStem: 250 100<1 249> VStem: 250 100<-199 249> Fore 350 350 m 1 350 -200 l 1 250 -200 l 1 250 250 l 1 -0 250 l 1 0 350 l 1 350 350 l 1 EndSplineSet MinimumDistance: x0,-1 y3,1 y3,2 x3,5 x3,4 EndChar StartChar: uni2511 Encoding: 9489 9489 Width: 600 Flags: W HStem: 200 200<1 249> VStem: 250 100<-199 199> Fore 350 400 m 1 350 -200 l 1 250 -200 l 1 250 200 l 1 0 200 l 1 0 400 l 1 350 400 l 1 EndSplineSet MinimumDistance: x0,-1 y3,1 y3,2 x3,5 x3,4 EndChar StartChar: uni2512 Encoding: 9490 9490 Width: 600 Flags: W HStem: 250 100<1 199> VStem: 200 200<-199 249> Fore 400 350 m 1 400 -200 l 1 200 -200 l 1 200 250 l 1 0 250 l 1 0 350 l 1 400 350 l 1 EndSplineSet MinimumDistance: x0,-1 y3,1 y3,2 x3,5 x3,4 EndChar StartChar: uni2513 Encoding: 9491 9491 Width: 600 Flags: W HStem: 200 200<1 199> VStem: 200 200<-199 199> Fore 400 400 m 1 400 -200 l 1 200 -200 l 1 200 200 l 1 0 200 l 1 0 400 l 1 400 400 l 1 EndSplineSet MinimumDistance: x0,-1 y3,1 y3,2 x3,5 x3,4 EndChar StartChar: SF020000 Encoding: 9492 9492 Width: 600 Flags: W HStem: 250 100<350 599> VStem: 250 100<350 799> 250 350<251 349> Fore 250 250 m 1 250 800 l 1 350 800 l 1 350 350 l 1 600 350 l 1 600 250 l 1 250 250 l 1 EndSplineSet MinimumDistance: y3,1 y3,2 x3,5 x3,4 EndChar StartChar: uni2515 Encoding: 9493 9493 Width: 600 Flags: W HStem: 200 200<350 599> VStem: 250 100<400 799> 250 350<201 399> Fore 250 200 m 1 250 800 l 1 350 800 l 1 350 400 l 1 600 400 l 1 600 200 l 1 250 200 l 1 EndSplineSet MinimumDistance: y3,1 y3,2 x3,5 x3,4 EndChar StartChar: uni2516 Encoding: 9494 9494 Width: 600 Flags: W HStem: 250 100<400 599> VStem: 200 200<350 799> 200 400<251 349> Fore 200 250 m 1 200 800 l 1 400 800 l 1 400 350 l 1 600 350 l 1 600 250 l 1 200 250 l 1 EndSplineSet MinimumDistance: y3,1 y3,2 x3,5 x3,4 EndChar StartChar: uni2517 Encoding: 9495 9495 Width: 600 Flags: W HStem: 200 200<400 599> VStem: 200 200<400 799> 200 400<201 399> Fore 200 200 m 1 200 800 l 1 400 800 l 1 400 400 l 1 600 400 l 1 600 200 l 1 200 200 l 1 EndSplineSet MinimumDistance: y3,1 y3,2 x3,5 x3,4 EndChar StartChar: SF040000 Encoding: 9496 9496 Width: 600 Flags: W HStem: 250 100<1 250> VStem: 250 100<351 799> Fore 350 250 m 1 -0 250 l 1 0 350 l 1 250 350 l 1 250 800 l 1 350 800 l 1 350 250 l 1 EndSplineSet MinimumDistance: x0,-1 y3,5 y3,4 x3,1 x3,2 EndChar StartChar: uni2519 Encoding: 9497 9497 Width: 600 Flags: W HStem: 200 200<1 250> VStem: 250 100<401 799> Fore 350 200 m 1 0 200 l 1 0 400 l 1 250 400 l 1 250 800 l 1 350 800 l 1 350 200 l 1 EndSplineSet MinimumDistance: x0,-1 y3,5 y3,4 x3,1 x3,2 EndChar StartChar: uni251A Encoding: 9498 9498 Width: 600 Flags: W HStem: 250 100<1 200> VStem: 200 200<351 799> Fore 400 250 m 1 0 250 l 1 0 350 l 1 200 350 l 1 200 800 l 1 400 800 l 1 400 250 l 1 EndSplineSet MinimumDistance: x0,-1 y3,5 y3,4 x3,1 x3,2 EndChar StartChar: uni251B Encoding: 9499 9499 Width: 600 Flags: W HStem: 200 200<1 200> VStem: 200 200<401 799> Fore 400 200 m 1 0 200 l 1 0 400 l 1 200 400 l 1 200 800 l 1 400 800 l 1 400 200 l 1 EndSplineSet MinimumDistance: x0,-1 y3,5 y3,4 x3,1 x3,2 EndChar StartChar: SF080000 Encoding: 9500 9500 Width: 600 Flags: W HStem: 250 100<350 599> VStem: 250 100<-199 250 350 799> 250 350<251 349> Fore 250 -200 m 1 250 800 l 1 350 800 l 1 350 350 l 1 600 350 l 1 600 250 l 1 350 250 l 1 350 -200 l 1 250 -200 l 1 EndSplineSet MinimumDistance: y6,0 y6,7 y3,1 y3,2 x3,5 x3,4 EndChar StartChar: uni251D Encoding: 9501 9501 Width: 600 Flags: W HStem: 200 200<350 599> VStem: 250 100<-199 200 400 799> 250 350<201 399> Fore 250 -200 m 1 250 800 l 1 350 800 l 1 350 400 l 1 600 400 l 1 600 200 l 1 350 200 l 1 350 -200 l 1 250 -200 l 1 EndSplineSet MinimumDistance: y6,0 y6,7 y3,1 y3,2 x3,5 x3,4 EndChar StartChar: uni251E Encoding: 9502 9502 Width: 600 Flags: W HStem: 250 100<400 599> VStem: 200 200<350 799> 200 400<251 349> 250 100<-199 250> Fore 250 250 m 1 200 250 l 1 200 800 l 1 400 800 l 1 400 350 l 1 600 350 l 1 600 250 l 1 350 250 l 1 350 -200 l 1 250 -200 l 1 250 250 l 1 EndSplineSet MinimumDistance: y7,9 y7,8 y4,2 y4,3 x4,6 x4,5 EndChar StartChar: uni251F Encoding: 9503 9503 Width: 600 Flags: W HStem: 250 100<401 599> VStem: 200 200<-199 250> 200 400<251 349> 250 100<350 799> Fore 250 350 m 1 250 800 l 1 350 800 l 1 350 350 l 1 600 350 l 1 600 250 l 1 400 250 l 1 400 -200 l 1 200 -200 l 1 200 350 l 1 250 350 l 1 EndSplineSet MinimumDistance: y6,8 y6,7 y0,2 y0,1 y8,0 x0,8 x0,9 x6,4 x6,5 EndChar StartChar: uni2520 Encoding: 9504 9504 Width: 600 Flags: W HStem: 250 100<400 599> VStem: 200 200<-199 250 350 799> 200 400<251 349> Fore 400 250 m 1 400 -200 l 1 200 -200 l 1 200 800 l 1 400 800 l 1 400 350 l 1 600 350 l 1 600 250 l 1 400 250 l 1 EndSplineSet MinimumDistance: y5,3 y5,4 y0,2 y0,1 x0,6 x0,7 EndChar StartChar: uni2521 Encoding: 9505 9505 Width: 600 Flags: W HStem: 200 200<400 599> VStem: 200 200<400 799> 200 400<201 399> 250 100<-199 200> Fore 350 200 m 1 350 -200 l 1 250 -200 l 1 250 200 l 1 200 200 l 1 200 800 l 1 400 800 l 1 400 400 l 1 600 400 l 1 600 200 l 1 350 200 l 1 EndSplineSet MinimumDistance: y7,5 y7,6 y0,2 y0,1 y5,3 x3,5 x3,4 x7,9 x7,8 EndChar StartChar: uni2522 Encoding: 9506 9506 Width: 600 Flags: W HStem: 200 200<401 599> VStem: 200 200<-199 200> 200 400<201 399> 250 100<400 799> Fore 350 400 m 1 600 400 l 1 600 200 l 1 400 200 l 1 400 -200 l 1 200 -200 l 1 200 400 l 1 250 400 l 1 250 800 l 1 350 800 l 1 350 400 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 y0,8 y0,9 y5,7 x7,5 x7,6 x3,1 x3,2 EndChar StartChar: uni2523 Encoding: 9507 9507 Width: 600 Flags: W HStem: 200 200<400 599> VStem: 200 200<-199 200 400 799> 200 400<201 399> Fore 200 -200 m 1 200 800 l 1 400 800 l 1 400 400 l 1 600 400 l 1 600 200 l 1 400 200 l 1 400 -200 l 1 200 -200 l 1 EndSplineSet MinimumDistance: y6,0 y6,7 y3,1 y3,2 x3,5 x3,4 EndChar StartChar: SF090000 Encoding: 9508 9508 Width: 600 Flags: W HStem: 250 100<1 250> VStem: 250 100<-199 249 351 799> Fore 350 800 m 1 350 -200 l 1 250 -200 l 1 250 250 l 1 -0 250 l 1 0 350 l 1 250 350 l 1 250 800 l 1 350 800 l 1 EndSplineSet MinimumDistance: x0,-1 y6,0 y6,7 y3,1 y3,2 x3,5 x3,4 EndChar StartChar: uni2525 Encoding: 9509 9509 Width: 600 Flags: W HStem: 200 200<1 250> VStem: 250 100<-199 199 401 799> Fore 350 800 m 1 350 -200 l 1 250 -200 l 1 250 200 l 1 0 200 l 1 0 400 l 1 250 400 l 1 250 800 l 1 350 800 l 1 EndSplineSet MinimumDistance: x0,-1 y6,0 y6,7 y3,1 y3,2 x3,5 x3,4 EndChar StartChar: uni2526 Encoding: 9510 9510 Width: 600 Flags: W HStem: 250 100<1 200> VStem: 200 200<351 799> 250 100<-199 250> Fore 350 250 m 1 350 -200 l 1 250 -200 l 1 250 250 l 1 -0 250 l 1 0 350 l 1 200 350 l 1 200 800 l 1 400 800 l 1 400 250 l 1 350 250 l 1 EndSplineSet MinimumDistance: x8,-1 y6,8 y6,7 y0,2 y0,1 y8,0 x0,8 x0,9 x6,4 x6,5 EndChar StartChar: uni2527 Encoding: 9511 9511 Width: 600 Flags: W HStem: 250 100<1 199> VStem: 200 200<-199 249> 250 100<350 799> Fore 350 350 m 1 400 350 l 1 400 -200 l 1 200 -200 l 1 200 250 l 1 -0 250 l 1 0 350 l 1 250 350 l 1 250 800 l 1 350 800 l 1 350 350 l 1 EndSplineSet MinimumDistance: x1,-1 y4,2 y4,3 y0,8 y0,9 y2,0 x0,2 x0,1 x4,6 x4,5 EndChar StartChar: uni2528 Encoding: 9512 9512 Width: 600 Flags: W HStem: 250 100<1 200> VStem: 200 200<-199 249 351 799> Fore 400 800 m 1 400 -200 l 1 200 -200 l 5 200 250 l 5 -0 250 l 1 0 350 l 1 200 350 l 5 200 800 l 5 400 800 l 1 EndSplineSet MinimumDistance: x0,-1 y6,0 y6,7 y3,1 y3,2 x3,5 x3,4 EndChar StartChar: uni2529 Encoding: 9513 9513 Width: 600 Flags: W HStem: 200 200<1 200> VStem: 200 200<401 799> 250 100<-199 200> Fore 250 200 m 1 0 200 l 1 0 400 l 1 200 400 l 1 200 800 l 1 400 800 l 1 400 200 l 1 350 200 l 1 350 -200 l 1 250 -200 l 1 250 200 l 1 EndSplineSet MinimumDistance: x5,-1 y3,5 y3,4 y0,8 y0,9 y5,7 x7,5 x7,6 x3,1 x3,2 EndChar StartChar: uni252A Encoding: 9514 9514 Width: 600 Flags: W HStem: 200 200<1 199> VStem: 200 200<-199 199> 250 100<400 799> Fore 250 400 m 1 250 800 l 1 350 800 l 1 350 400 l 1 400 400 l 1 400 -200 l 1 200 -200 l 1 200 200 l 1 0 200 l 1 0 400 l 1 250 400 l 1 EndSplineSet MinimumDistance: x4,-1 y7,5 y7,6 y0,2 y0,1 y5,3 x3,5 x3,4 x7,9 x7,8 EndChar StartChar: uni252B Encoding: 9515 9515 Width: 600 Flags: W HStem: 200 200<1 200> VStem: 200 200<-199 199 401 799> Fore 400 800 m 1 400 -200 l 1 200 -200 l 1 200 200 l 1 0 200 l 1 0 400 l 1 200 400 l 1 200 800 l 1 400 800 l 1 EndSplineSet MinimumDistance: x0,-1 y6,0 y6,7 y3,1 y3,2 x3,5 x3,4 EndChar StartChar: SF060000 Encoding: 9516 9516 Width: 600 Flags: W HStem: 250 100<1 249 351 599> VStem: 250 100<-199 250> Fore 0 350 m 1 600 350 l 1 600 250 l 1 350 250 l 1 350 -200 l 1 250 -200 l 1 250 250 l 1 -0 250 l 1 0 350 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 x6,0 x6,7 x3,1 x3,2 EndChar StartChar: uni252D Encoding: 9517 9517 Width: 600 Flags: W HStem: 200 200<1 249> 250 100<350 599> VStem: 250 100<-199 199> Fore 600 350 m 1 600 250 l 1 350 250 l 1 350 -200 l 1 250 -200 l 1 250 200 l 1 0 200 l 1 0 400 l 1 350 400 l 1 350 350 l 1 600 350 l 1 EndSplineSet MinimumDistance: x7,9 y9,7 y9,8 y5,3 y5,4 x5,7 x5,6 x2,0 x2,1 EndChar StartChar: uni252E Encoding: 9518 9518 Width: 600 Flags: W HStem: 200 200<351 599> 250 100<1 250> VStem: 250 100<-199 200> 250 350<201 249 351 399> Fore 0 350 m 1 250 350 l 1 250 400 l 1 600 400 l 1 600 200 l 1 350 200 l 1 350 -200 l 1 250 -200 l 1 250 250 l 1 0 250 l 1 0 350 l 1 EndSplineSet MinimumDistance: y1,3 y1,2 y5,7 y5,6 x5,3 x5,4 x1,9 x1,0 EndChar StartChar: uni252F Encoding: 9519 9519 Width: 600 Flags: W HStem: 200 200<1 249 351 599> VStem: 250 100<-199 200> Fore 0 400 m 1 600 400 l 1 600 200 l 1 350 200 l 1 350 -200 l 1 250 -200 l 1 250 200 l 1 0 200 l 1 0 400 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 x6,0 x6,7 x3,1 x3,2 EndChar StartChar: uni2530 Encoding: 9520 9520 Width: 600 Flags: W HStem: 250 100<1 199 401 599> VStem: 200 200<-199 250> Fore 0 350 m 1 600 350 l 1 600 250 l 1 400 250 l 1 400 -200 l 1 200 -200 l 1 200 250 l 1 -0 250 l 1 0 350 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 x6,0 x6,7 x3,1 x3,2 EndChar StartChar: uni2531 Encoding: 9521 9521 Width: 600 Flags: W HStem: 200 200<1 199> 250 100<400 599> VStem: 200 200<-199 199> Fore 400 250 m 1 400 -200 l 1 200 -200 l 1 200 200 l 1 0 200 l 1 0 400 l 1 400 400 l 1 400 350 l 1 600 350 l 1 600 250 l 1 400 250 l 1 EndSplineSet MinimumDistance: x5,7 y7,5 y7,6 y3,1 y3,2 x3,5 x3,4 x0,8 x0,9 EndChar StartChar: uni2532 Encoding: 9522 9522 Width: 600 Flags: W HStem: 200 200<401 599> 250 100<1 200> VStem: 200 200<-199 200> 200 400<201 249 351 399> Fore 200 250 m 1 0 250 l 1 0 350 l 1 200 350 l 1 200 400 l 1 600 400 l 1 600 200 l 1 400 200 l 1 400 -200 l 1 200 -200 l 1 200 250 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 y7,9 y7,8 x7,5 x7,6 x0,2 x0,1 EndChar StartChar: uni2533 Encoding: 9523 9523 Width: 600 Flags: W HStem: 200 200<1 199 401 599> VStem: 200 200<-199 200> Fore 0 400 m 1 600 400 l 1 600 200 l 1 400 200 l 1 400 -200 l 1 200 -200 l 1 200 200 l 1 0 200 l 1 0 400 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 x6,0 x6,7 x3,1 x3,2 EndChar StartChar: SF070000 Encoding: 9524 9524 Width: 600 Flags: W HStem: 250 100<1 250 350 599> 250 550<251 349> VStem: 250 100<350 799> Fore 600 250 m 1 -0 250 l 1 0 350 l 1 250 350 l 1 250 800 l 1 350 800 l 1 350 350 l 1 600 350 l 1 600 250 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 x6,0 x6,7 x3,1 x3,2 EndChar StartChar: uni2535 Encoding: 9525 9525 Width: 600 Flags: W HStem: 200 200<1 250> 250 100<350 599> VStem: 250 100<401 799> Fore 600 250 m 1 350 250 l 1 350 200 l 1 0 200 l 1 0 400 l 1 250 400 l 1 250 800 l 1 350 800 l 1 350 350 l 1 600 350 l 1 600 250 l 1 EndSplineSet MinimumDistance: x3,1 y1,3 y1,2 y5,7 y5,6 x5,3 x5,4 x1,9 x1,0 EndChar StartChar: uni2536 Encoding: 9526 9526 Width: 600 Flags: W HStem: 200 200<350 599> 250 100<1 250> VStem: 250 100<400 799> 250 350<201 249 351 399> Fore 0 250 m 1 0 350 l 1 250 350 l 1 250 800 l 1 350 800 l 1 350 400 l 1 600 400 l 1 600 200 l 1 250 200 l 1 250 250 l 1 0 250 l 1 EndSplineSet MinimumDistance: y9,7 y9,8 y5,3 y5,4 x5,7 x5,6 x2,0 x2,1 EndChar StartChar: uni2537 Encoding: 9527 9527 Width: 600 Flags: W HStem: 200 200<1 250 350 599> VStem: 250 100<400 799> Fore 600 200 m 1 0 200 l 1 0 400 l 1 250 400 l 1 250 800 l 1 350 800 l 1 350 400 l 1 600 400 l 1 600 200 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 x6,0 x6,7 x3,1 x3,2 EndChar StartChar: uni2538 Encoding: 9528 9528 Width: 600 Flags: W HStem: 250 100<1 200 400 599> 250 550<201 399> VStem: 200 200<350 799> Fore 200 350 m 1 200 800 l 1 400 800 l 1 400 350 l 1 600 350 l 1 600 250 l 1 -0 250 l 1 0 350 l 1 200 350 l 1 EndSplineSet MinimumDistance: y0,2 y0,1 x3,5 x3,4 x0,6 x0,7 EndChar StartChar: uni2539 Encoding: 9529 9529 Width: 600 Flags: W HStem: 200 200<1 200> 250 100<400 599> VStem: 200 200<401 799> Fore 400 350 m 1 600 350 l 1 600 250 l 1 400 250 l 1 400 200 l 1 0 200 l 1 0 400 l 1 200 400 l 1 200 800 l 1 400 800 l 1 400 350 l 1 EndSplineSet MinimumDistance: x5,3 y3,5 y3,4 y7,9 y7,8 x7,5 x7,6 x0,2 x0,1 EndChar StartChar: uni253A Encoding: 9530 9530 Width: 600 Flags: W HStem: 200 200<400 599> 250 100<1 200> VStem: 200 400<201 249 351 399> 200 200<400 799> Fore 200 350 m 1 200 800 l 1 400 800 l 1 400 400 l 1 600 400 l 1 600 200 l 1 200 200 l 1 200 250 l 1 -0 250 l 1 0 350 l 1 200 350 l 1 EndSplineSet MinimumDistance: y3,1 y3,2 x3,5 x3,4 x0,8 x0,9 EndChar StartChar: uni253B Encoding: 9531 9531 Width: 600 Flags: W HStem: 200 200<1 200 400 599> VStem: 200 200<400 799> Fore 600 200 m 1 0 200 l 1 0 400 l 1 200 400 l 1 200 800 l 1 400 800 l 1 400 400 l 1 600 400 l 1 600 200 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 x6,0 x6,7 x3,1 x3,2 EndChar StartChar: SF050000 Encoding: 9532 9532 Width: 600 Flags: W HStem: 250 100<1 250 350 599> VStem: 250 100<-199 250 350 799> Fore 250 250 m 1 -0 250 l 1 0 350 l 1 250 350 l 1 250 800 l 1 350 800 l 1 350 350 l 1 600 350 l 1 600 250 l 1 350 250 l 1 350 -200 l 1 250 -200 l 1 250 250 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x0,2 x0,1 EndChar StartChar: uni253D Encoding: 9533 9533 Width: 600 Flags: W HStem: 200 200<1 250> 250 100<350 599> VStem: 250 100<-199 199 401 799> Fore 250 200 m 5 0 200 l 5 0 400 l 1 250 400 l 1 250 800 l 1 350 800 l 1 350 350 l 1 600 350 l 1 600 250 l 1 350 250 l 1 350 -200 l 1 250 -200 l 1 250 200 l 5 EndSplineSet MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x0,2 x0,1 EndChar StartChar: uni253E Encoding: 9534 9534 Width: 600 Flags: W HStem: 200 200<350 599> 250 100<1 250> VStem: 250 100<-199 200 400 799> 250 350<201 249 351 399> Fore 250 250 m 1 -0 250 l 1 0 350 l 1 250 350 l 1 250 800 l 1 350 800 l 1 350 400 l 1 600 400 l 1 600 200 l 1 350 200 l 1 350 -200 l 1 250 -200 l 1 250 250 l 1 EndSplineSet MinimumDistance: y9,11 y9,10 y6,4 y6,5 x6,8 x6,7 x0,2 x0,1 EndChar StartChar: uni253F Encoding: 9535 9535 Width: 600 Flags: W HStem: 200 200<1 250 350 599> VStem: 0 600<200 400> 250 100<-199 200 400 799> Fore 250 200 m 1 0 200 l 1 0 400 l 1 250 400 l 1 250 800 l 1 350 800 l 1 350 400 l 1 600 400 l 1 600 200 l 1 350 200 l 1 350 -200 l 1 250 -200 l 1 250 200 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x0,2 x0,1 EndChar StartChar: uni2540 Encoding: 9536 9536 Width: 600 Flags: W HStem: 250 100<1 200 400 599> 250 550<201 249 351 399> VStem: 200 200<350 799> 250 100<-199 250> Fore 250 250 m 1 -0 250 l 1 0 350 l 1 200 350 l 1 200 800 l 1 400 800 l 1 400 350 l 1 600 350 l 1 600 250 l 1 350 250 l 1 350 -200 l 1 250 -200 l 1 250 250 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x3,1 x3,2 EndChar StartChar: uni2541 Encoding: 9537 9537 Width: 600 Flags: W HStem: 250 100<1 199 401 599> VStem: 200 200<-199 250> 250 100<350 799> Fore 200 250 m 1 -0 250 l 1 0 350 l 1 250 350 l 1 250 800 l 1 350 800 l 1 350 350 l 1 600 350 l 1 600 250 l 1 400 250 l 1 400 -200 l 1 200 -200 l 1 200 250 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 y0,10 y0,11 x9,7 x9,8 x0,2 x0,1 EndChar StartChar: uni2542 Encoding: 9538 9538 Width: 600 Flags: W HStem: 250 100<1 200 400 599> VStem: 0 600<250 350> 200 200<-199 250 350 799> Fore 200 250 m 1 -0 250 l 1 0 350 l 1 200 350 l 1 200 800 l 1 400 800 l 1 400 350 l 1 600 350 l 1 600 250 l 1 400 250 l 1 400 -200 l 1 200 -200 l 1 200 250 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x0,2 x0,1 EndChar StartChar: uni2543 Encoding: 9539 9539 Width: 600 Flags: W HStem: 200 200<1 200> 250 100<400 599> VStem: 200 200<401 799> 250 100<-199 200> Fore 250 200 m 1 0 200 l 1 0 400 l 1 200 400 l 1 200 800 l 1 400 800 l 1 400 350 l 1 600 350 l 1 600 250 l 1 400 250 l 1 400 200 l 1 350 200 l 1 350 -200 l 1 250 -200 l 1 250 200 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 y0,12 y0,13 x6,8 x6,7 x3,1 x3,2 EndChar StartChar: uni2544 Encoding: 9540 9540 Width: 600 Flags: W HStem: 200 200<400 599> 250 100<1 200> VStem: 200 200<400 799> 200 400<201 249 351 399> 250 100<-199 200> Fore 350 200 m 1 350 -200 l 1 250 -200 l 1 250 200 l 1 200 200 l 1 200 250 l 1 0 250 l 1 0 350 l 1 200 350 l 1 200 800 l 1 400 800 l 1 400 400 l 1 600 400 l 1 600 200 l 1 350 200 l 1 EndSplineSet MinimumDistance: y11,9 y11,10 y0,2 y0,1 x11,13 x11,12 x5,7 x5,6 EndChar StartChar: uni2545 Encoding: 9541 9541 Width: 600 Flags: W HStem: 200 200<1 199> 250 100<400 599> VStem: 200 200<-199 199> 250 100<400 799> Fore 250 400 m 1 250 800 l 1 350 800 l 1 350 400 l 1 400 400 l 1 400 350 l 1 600 350 l 1 600 250 l 1 400 250 l 1 400 -200 l 1 200 -200 l 1 200 200 l 1 0 200 l 1 0 400 l 1 250 400 l 1 EndSplineSet MinimumDistance: y11,9 y11,10 y0,2 y0,1 x11,13 x11,12 x5,7 x5,6 EndChar StartChar: uni2546 Encoding: 9542 9542 Width: 600 Flags: W HStem: 200 200<401 599> 250 100<1 200> VStem: 200 200<-199 200> 200 400<201 249 351 399> 250 100<400 799> Fore 350 400 m 1 600 400 l 1 600 200 l 1 400 200 l 1 400 -200 l 1 200 -200 l 1 200 250 l 1 0 250 l 1 0 350 l 1 200 350 l 1 200 400 l 1 250 400 l 1 250 800 l 1 350 800 l 1 350 400 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 y0,12 y0,13 x6,8 x6,7 x3,1 x3,2 EndChar StartChar: uni2547 Encoding: 9543 9543 Width: 600 Flags: W HStem: 200 200<1 200 400 599> VStem: 200 200<400 799> 250 100<-199 200> Fore 250 200 m 1 0 200 l 1 0 400 l 1 200 400 l 1 200 800 l 1 400 800 l 1 400 400 l 1 600 400 l 1 600 200 l 1 350 200 l 1 350 -200 l 1 250 -200 l 1 250 200 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x3,1 x3,2 EndChar StartChar: uni2548 Encoding: 9544 9544 Width: 600 Flags: W HStem: 200 200<1 199 401 599> VStem: 200 200<-199 200> 250 100<400 799> Fore 250 400 m 1 250 800 l 1 350 800 l 1 350 400 l 1 600 400 l 1 600 200 l 1 400 200 l 1 400 -200 l 1 200 -200 l 1 200 200 l 1 0 200 l 1 0 400 l 1 250 400 l 1 EndSplineSet MinimumDistance: y6,8 y6,7 y0,2 y0,1 x9,11 x9,10 x6,4 x6,5 EndChar StartChar: uni2549 Encoding: 9545 9545 Width: 600 Flags: W HStem: 200 200<1 200> 250 100<400 599> VStem: 0 600<251 349> 200 200<-199 199 401 799> Fore 200 200 m 5 0 200 l 5 0 400 l 1 200 400 l 1 200 800 l 1 400 800 l 1 400 350 l 1 600 350 l 1 600 250 l 1 400 250 l 1 400 -200 l 1 200 -200 l 1 200 200 l 5 EndSplineSet MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x0,2 x0,1 EndChar StartChar: uni254A Encoding: 9546 9546 Width: 600 Flags: W HStem: 200 200<400 599> 250 100<1 200> VStem: 0 600<250 350> 200 200<-199 200 400 799> 200 400<201 249 351 399> Fore 400 200 m 5 400 -200 l 1 200 -200 l 1 200 250 l 1 0 250 l 1 0 350 l 1 200 350 l 1 200 800 l 1 400 800 l 1 400 400 l 1 600 400 l 1 600 200 l 5 400 200 l 5 EndSplineSet MinimumDistance: y9,7 y9,8 y0,2 y0,1 x3,5 x3,4 x0,10 x0,11 EndChar StartChar: uni254B Encoding: 9547 9547 Width: 600 Flags: W HStem: 200 200<1 200 400 599> VStem: 0 600<200 400> 200 200<-199 200 400 799> Fore 200 200 m 1 0 200 l 1 0 400 l 1 200 400 l 1 200 800 l 1 400 800 l 1 400 400 l 1 600 400 l 1 600 200 l 1 400 200 l 1 400 -200 l 1 200 -200 l 1 200 200 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x0,2 x0,1 EndChar StartChar: uni254C Encoding: 9548 9548 Width: 600 Flags: W HStem: 250 100<1 249 351 599> VStem: 0 250<251 349> 350 250<251 349> Fore 600 250 m 5 350 250 l 5 350 350 l 1 600 350 l 1 600 250 l 5 250 250 m 5 0 250 l 5 0 350 l 1 250 350 l 1 250 250 l 5 EndSplineSet EndChar StartChar: uni254D Encoding: 9549 9549 Width: 600 Flags: W HStem: 200 200<1 249 351 599> VStem: 0 250<201 399> 350 250<201 399> Fore 600 200 m 5 350 200 l 5 350 400 l 1 600 400 l 1 600 200 l 5 250 200 m 5 0 200 l 5 0 400 l 1 250 400 l 1 250 200 l 5 EndSplineSet EndChar StartChar: uni254E Encoding: 9550 9550 Width: 600 Flags: W HStem: -200 450<231 369> 350 450<231 369> VStem: 230 140<-199 249 351 799> Fore 370 800 m 5 370 350 l 5 230 350 l 1 230 800 l 1 370 800 l 5 370 250 m 5 370 -200 l 5 230 -200 l 1 230 250 l 1 370 250 l 5 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni254F Encoding: 9551 9551 Width: 600 Flags: W HStem: -200 450<181 419> 350 450<181 419> VStem: 180 240<-199 249 351 799> Fore 420 800 m 5 420 350 l 5 180 350 l 1 180 800 l 1 420 800 l 5 420 250 m 5 420 -200 l 5 180 -200 l 1 180 250 l 1 420 250 l 5 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: SF430000 Encoding: 9552 9552 Width: 600 Flags: W HStem: 150 100<1 599> 350 100<1 599> VStem: 0 600<151 249 351 449> Fore 0 250 m 1 600 250 l 1 600 150 l 1 0 150 l 1 0 250 l 1 0 450 m 1 600 450 l 1 600 350 l 1 0 350 l 1 0 450 l 1 EndSplineSet EndChar StartChar: SF240000 Encoding: 9553 9553 Width: 600 Flags: W HStem: -200 1000<151 249 351 449> VStem: 150 100<-199 799> 350 100<-199 799> Fore 450 800 m 1 450 -200 l 1 350 -200 l 1 350 800 l 1 450 800 l 1 250 800 m 1 250 -200 l 1 150 -200 l 1 150 800 l 1 250 800 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: SF510000 Encoding: 9554 9554 Width: 600 Flags: W HStem: 150 100<351 599> 350 100<351 599> VStem: 250 100<-199 150 250 350> 250 350<151 249 351 449> Fore 350 350 m 1 350 250 l 1 600 250 l 1 600 150 l 1 350 150 l 1 350 -200 l 1 250 -200 l 1 250 450 l 1 600 450 l 1 600 350 l 1 350 350 l 1 EndSplineSet MinimumDistance: y4,6 y4,5 x1,3 x1,2 x0,8 x0,9 EndChar StartChar: SF520000 Encoding: 9555 9555 Width: 600 Flags: W HStem: 250 100<251 349 451 599> VStem: 150 100<-199 249> 350 100<-199 250> Fore 250 250 m 1 250 -200 l 1 150 -200 l 1 150 350 l 1 600 350 l 1 600 250 l 1 450 250 l 1 450 -200 l 1 350 -200 l 1 350 250 l 1 250 250 l 1 EndSplineSet MinimumDistance: y6,8 y6,7 y0,2 y0,1 x6,4 x6,5 EndChar StartChar: SF390000 Encoding: 9556 9556 Width: 600 Flags: W HStem: 150 100<451 599> 350 100<251 599> VStem: 150 100<-199 350> 150 450<351 449> 350 100<-199 150> 350 250<151 249> Fore 250 350 m 1 250 -200 l 1 150 -200 l 1 150 450 l 1 600 450 l 1 600 350 l 1 250 350 l 1 450 150 m 1 450 -200 l 1 350 -200 l 1 350 250 l 1 600 250 l 1 600 150 l 1 450 150 l 1 EndSplineSet MinimumDistance: y0,2 y0,1 y6,8 y6,7 x6,10 x6,11 x0,4 x0,5 EndChar StartChar: SF220000 Encoding: 9557 9557 Width: 600 Flags: W HStem: 150 100<1 249> 350 100<1 249> VStem: 250 100<-199 149 251 349> Fore 250 350 m 1 0 350 l 1 0 450 l 1 350 450 l 1 350 -200 l 1 250 -200 l 1 250 150 l 1 0 150 l 1 0 250 l 1 250 250 l 1 250 350 l 1 EndSplineSet MinimumDistance: x3,-1 y6,4 y6,5 x6,8 x6,7 x0,2 x0,1 EndChar StartChar: SF210000 Encoding: 9558 9558 Width: 600 Flags: W HStem: 250 100<1 149 251 349> VStem: 150 100<-199 249> 350 100<-199 249> Fore 350 250 m 1 250 250 l 1 250 -200 l 1 150 -200 l 1 150 250 l 1 0 250 l 1 0 350 l 1 450 350 l 1 450 -200 l 1 350 -200 l 1 350 250 l 1 EndSplineSet MinimumDistance: x7,-1 y1,3 y1,2 y0,8 y0,9 x4,6 x4,5 EndChar StartChar: SF250000 Encoding: 9559 9559 Width: 600 Flags: W HStem: 150 100<1 149> 350 100<1 349> VStem: 150 100<-199 149> 350 100<-199 349> Fore 350 350 m 1 0 350 l 1 0 450 l 1 450 450 l 1 450 -200 l 1 350 -200 l 1 350 350 l 1 150 150 m 1 0 150 l 1 0 250 l 1 250 250 l 1 250 -200 l 1 150 -200 l 1 150 150 l 1 EndSplineSet MinimumDistance: x3,-1 y0,4 y0,5 y6,10 y6,11 x0,2 x0,1 x6,8 x6,7 EndChar StartChar: SF500000 Encoding: 9560 9560 Width: 600 Flags: W HStem: 150 100<351 599> 350 100<350 599> VStem: 250 100<250 350 450 799> 250 350<151 249 351 449> Fore 350 250 m 1 600 250 l 1 600 150 l 1 250 150 l 1 250 800 l 1 350 800 l 1 350 450 l 1 600 450 l 1 600 350 l 1 350 350 l 1 350 250 l 1 EndSplineSet MinimumDistance: y6,4 y6,5 x6,8 x6,7 x0,2 x0,1 EndChar StartChar: SF490000 Encoding: 9561 9561 Width: 600 Flags: W HStem: 250 100<250 350 450 599> VStem: 150 100<351 799> 350 100<350 799> Fore 250 350 m 1 350 350 l 1 350 800 l 1 450 800 l 1 450 350 l 1 600 350 l 1 600 250 l 1 150 250 l 1 150 800 l 1 250 800 l 1 250 350 l 1 EndSplineSet MinimumDistance: y1,3 y1,2 y0,8 y0,9 x4,6 x4,5 EndChar StartChar: SF380000 Encoding: 9562 9562 Width: 600 Flags: W HStem: 150 100<250 599> 350 100<450 599> VStem: 150 100<250 799> 150 450<151 249> 350 100<450 799> 350 250<351 449> Fore 250 250 m 1 600 250 l 1 600 150 l 1 150 150 l 1 150 800 l 1 250 800 l 1 250 250 l 1 450 450 m 1 600 450 l 1 600 350 l 1 350 350 l 1 350 800 l 1 450 800 l 1 450 450 l 1 EndSplineSet MinimumDistance: y6,10 y6,11 y0,4 y0,5 x6,8 x6,7 x0,2 x0,1 EndChar StartChar: SF280000 Encoding: 9563 9563 Width: 600 Flags: W HStem: 150 100<1 249> 350 100<1 250> VStem: 250 100<251 349 451 799> Fore 250 250 m 1 250 350 l 1 0 350 l 1 0 450 l 1 250 450 l 1 250 800 l 1 350 800 l 1 350 150 l 1 0 150 l 1 0 250 l 1 250 250 l 1 EndSplineSet MinimumDistance: x6,-1 y4,6 y4,5 x1,3 x1,2 x0,8 x0,9 EndChar StartChar: SF270000 Encoding: 9564 9564 Width: 600 Flags: W HStem: 250 100<1 150 250 350> VStem: 150 100<351 799> 350 100<351 799> Fore 350 350 m 1 350 800 l 1 450 800 l 1 450 250 l 1 0 250 l 1 0 350 l 1 150 350 l 1 150 800 l 1 250 800 l 1 250 350 l 1 350 350 l 1 EndSplineSet MinimumDistance: x2,-1 y6,8 y6,7 y0,2 y0,1 x6,4 x6,5 EndChar StartChar: SF260000 Encoding: 9565 9565 Width: 600 Flags: W HStem: 150 100<1 350> 350 100<1 150> VStem: 150 100<451 799> 350 100<251 799> Fore 350 250 m 1 350 800 l 1 450 800 l 1 450 150 l 1 0 150 l 1 0 250 l 1 350 250 l 1 150 450 m 1 150 800 l 1 250 800 l 1 250 350 l 1 0 350 l 1 0 450 l 1 150 450 l 1 EndSplineSet MinimumDistance: x2,-1 y6,8 y6,7 y0,2 y0,1 x0,4 x0,5 x6,10 x6,11 EndChar StartChar: SF360000 Encoding: 9566 9566 Width: 600 Flags: W HStem: 150 100<351 599> 350 100<350 599> VStem: 250 100<-199 150 250 350 450 799> 250 350<151 249 351 449> Fore 350 450 m 1 600 450 l 1 600 350 l 1 350 350 l 1 350 250 l 1 600 250 l 1 600 150 l 1 350 150 l 1 350 -200 l 1 250 -200 l 1 250 800 l 1 350 800 l 1 350 450 l 1 EndSplineSet MinimumDistance: y0,10 y0,11 y7,9 y7,8 x4,6 x4,5 x0,2 x0,1 EndChar StartChar: SF370000 Encoding: 9567 9567 Width: 600 Flags: W HStem: 250 100<450 599> VStem: 150 100<-199 799> 350 100<-199 250 350 799> 350 250<251 349> Fore 150 800 m 1 250 800 l 1 250 -200 l 1 150 -200 l 1 150 800 l 1 450 250 m 1 450 -200 l 1 350 -200 l 1 350 800 l 1 450 800 l 1 450 350 l 1 600 350 l 1 600 250 l 1 450 250 l 1 EndSplineSet MinimumDistance: y9,7 y9,8 y4,6 y4,5 x4,10 x4,11 EndChar StartChar: SF420000 Encoding: 9568 9568 Width: 600 Flags: W HStem: 150 100<451 599> 350 100<450 599> VStem: 150 100<-199 799> 350 100<-199 150 450 799> 350 250<151 249 351 449> Fore 150 800 m 1 250 800 l 1 250 -200 l 1 150 -200 l 1 150 800 l 1 350 250 m 1 600 250 l 1 600 150 l 1 450 150 l 1 450 -200 l 1 350 -200 l 1 350 250 l 1 600 350 m 1 350 350 l 1 350 800 l 1 450 800 l 1 450 450 l 1 600 450 l 1 600 350 l 1 EndSplineSet MinimumDistance: y14,12 y14,13 y7,9 y7,8 x14,10 x14,15 x7,5 x7,6 EndChar StartChar: SF190000 Encoding: 9569 9569 Width: 600 Flags: W HStem: 150 100<1 249> 350 100<1 250> VStem: 250 100<-199 149 251 349 451 799> Fore 250 450 m 1 250 800 l 1 350 800 l 1 350 -200 l 1 250 -200 l 1 250 150 l 1 0 150 l 1 0 250 l 1 250 250 l 1 250 350 l 1 0 350 l 1 0 450 l 1 250 450 l 1 EndSplineSet MinimumDistance: x2,-1 y0,2 y0,1 y5,3 y5,4 x5,7 x5,6 x0,10 x0,11 EndChar StartChar: SF200000 Encoding: 9570 9570 Width: 600 Flags: W HStem: 250 100<1 150> VStem: 150 100<-199 249 351 799> 350 100<-199 799> Fore 450 800 m 1 450 -200 l 1 350 -200 l 1 350 800 l 1 450 800 l 1 150 250 m 1 -0 250 l 1 0 350 l 1 150 350 l 1 150 800 l 1 250 800 l 1 250 -200 l 1 150 -200 l 1 150 250 l 1 EndSplineSet MinimumDistance: x0,-1 y7,9 y7,8 y4,10 y4,11 x4,6 x4,5 EndChar StartChar: SF230000 Encoding: 9571 9571 Width: 600 Flags: W HStem: 150 100<1 149> 350 100<1 150> VStem: 150 100<-199 149 451 799> 350 100<-199 799> Fore 450 800 m 1 450 -200 l 1 350 -200 l 1 350 800 l 1 450 800 l 1 250 250 m 1 250 -200 l 1 150 -200 l 1 150 150 l 1 0 150 l 1 0 250 l 1 250 250 l 1 250 350 m 1 0 350 l 1 0 450 l 1 150 450 l 1 150 800 l 1 250 800 l 1 250 350 l 1 EndSplineSet MinimumDistance: x0,-1 y13,15 y13,14 y7,5 y7,6 x13,11 x13,12 x7,9 x7,8 EndChar StartChar: SF470000 Encoding: 9572 9572 Width: 600 Flags: W HStem: 150 100<1 249 351 599> 350 100<1 599> VStem: 0 600<150 249 351 449> 250 100<-199 150> Fore 0 450 m 1 600 450 l 1 600 350 l 1 0 350 l 1 0 450 l 1 350 150 m 1 350 -200 l 1 250 -200 l 1 250 150 l 1 0 150 l 1 0 250 l 1 600 250 l 1 600 150 l 1 350 150 l 1 EndSplineSet MinimumDistance: y4,6 y4,5 x7,9 x7,8 x4,10 x4,11 EndChar StartChar: SF480000 Encoding: 9573 9573 Width: 600 Flags: W HStem: 250 100<1 149 251 349 451 599> VStem: 150 100<-199 249> 350 100<-199 250> Fore 450 250 m 1 450 -200 l 1 350 -200 l 1 350 250 l 1 250 250 l 1 250 -200 l 1 150 -200 l 1 150 250 l 1 0 250 l 1 0 350 l 1 600 350 l 1 600 250 l 1 450 250 l 1 EndSplineSet MinimumDistance: y4,6 y4,5 y0,2 y0,1 x0,10 x0,11 x7,9 x7,8 EndChar StartChar: SF410000 Encoding: 9574 9574 Width: 600 Flags: W HStem: 150 100<1 149 451 599> 350 100<1 599> VStem: 0 600<351 449> 150 100<-199 149> 350 100<-199 150> 350 250<151 249> Fore 0 450 m 1 600 450 l 1 600 350 l 1 0 350 l 1 0 450 l 1 350 250 m 1 600 250 l 1 600 150 l 1 450 150 l 1 450 -200 l 1 350 -200 l 1 350 250 l 1 250 250 m 1 250 -200 l 1 150 -200 l 1 150 150 l 1 0 150 l 1 0 250 l 1 250 250 l 1 EndSplineSet MinimumDistance: y13,11 y13,12 y7,9 y7,8 x7,5 x7,6 x13,15 x13,14 EndChar StartChar: SF450000 Encoding: 9575 9575 Width: 600 Flags: W HStem: 150 100<1 599> 350 100<1 250 350 599> 350 450<251 349> VStem: 0 600<151 249 351 450> 250 100<450 799> Fore 0 150 m 1 0 250 l 1 600 250 l 1 600 150 l 1 0 150 l 1 350 450 m 1 600 450 l 1 600 350 l 1 0 350 l 1 0 450 l 1 250 450 l 1 250 800 l 1 350 800 l 1 350 450 l 1 EndSplineSet MinimumDistance: y4,10 y4,11 x9,7 x9,8 x4,6 x4,5 EndChar StartChar: SF460000 Encoding: 9576 9576 Width: 600 Flags: W HStem: 250 100<1 150 250 350 450 599> 250 550<151 249 351 449> VStem: 150 100<351 799> 350 100<350 799> Fore 450 350 m 1 600 350 l 1 600 250 l 1 0 250 l 1 0 350 l 1 150 350 l 1 150 800 l 1 250 800 l 1 250 350 l 1 350 350 l 1 350 800 l 1 450 800 l 1 450 350 l 1 EndSplineSet MinimumDistance: y5,7 y5,6 y0,10 y0,11 x0,2 x0,1 x5,3 x5,4 EndChar StartChar: SF400000 Encoding: 9577 9577 Width: 600 Flags: W HStem: 150 100<1 599> 350 100<1 150 450 599> 350 450<151 249 351 449> VStem: 0 600<151 249> 150 100<451 799> 350 100<450 799> 350 250<351 449> Fore 0 150 m 1 0 250 l 1 600 250 l 1 600 150 l 1 0 150 l 1 350 350 m 1 350 800 l 1 450 800 l 1 450 450 l 1 600 450 l 1 600 350 l 1 350 350 l 1 250 350 m 1 0 350 l 1 0 450 l 1 150 450 l 1 150 800 l 1 250 800 l 1 250 350 l 1 EndSplineSet MinimumDistance: y13,15 y13,14 y7,5 y7,6 x7,9 x7,8 x13,11 x13,12 EndChar StartChar: SF540000 Encoding: 9578 9578 Width: 600 Flags: W HStem: 150 100<1 249 351 599> 350 100<1 250 350 599> VStem: 0 600<150 250 350 450> 250 100<-199 150 250 350 450 799> Fore 250 350 m 1 0 350 l 1 0 450 l 1 250 450 l 1 250 800 l 1 350 800 l 1 350 450 l 1 600 450 l 1 600 350 l 1 350 350 l 1 350 250 l 1 600 250 l 1 600 150 l 1 350 150 l 1 350 -200 l 1 250 -200 l 1 250 150 l 1 0 150 l 1 0 250 l 1 250 250 l 1 250 350 l 1 EndSplineSet MinimumDistance: y3,5 y3,4 y13,15 y13,14 x16,18 x16,17 x10,12 x10,11 x6,8 x6,7 x0,2 x0,1 EndChar StartChar: SF530000 Encoding: 9579 9579 Width: 600 Flags: W HStem: 250 100<1 150 450 599> VStem: 150 100<-199 249 351 799> 350 100<-199 250 350 799> 350 250<251 349> Fore 150 250 m 1 -0 250 l 1 0 350 l 1 150 350 l 1 150 800 l 1 250 800 l 1 250 -200 l 1 150 -200 l 1 150 250 l 1 450 250 m 1 450 -200 l 1 350 -200 l 1 350 800 l 1 450 800 l 1 450 350 l 1 600 350 l 1 600 250 l 1 450 250 l 1 EndSplineSet MinimumDistance: y13,11 y13,12 y8,10 y8,9 y3,5 y3,4 y0,6 y0,7 x8,14 x8,15 x0,2 x0,1 EndChar StartChar: SF440000 Encoding: 9580 9580 Width: 600 Flags: W HStem: 150 100<1 149 451 599> 350 100<1 150 450 599> 350 450<151 249 351 449> VStem: 150 100<-199 149 451 799> 350 100<-199 150 450 799> 350 250<151 249 351 449> Fore 350 350 m 1 350 800 l 1 450 800 l 1 450 450 l 1 600 450 l 1 600 350 l 1 350 350 l 1 250 350 m 1 0 350 l 1 0 450 l 1 150 450 l 1 150 800 l 1 250 800 l 1 250 350 l 1 350 250 m 1 600 250 l 1 600 150 l 1 450 150 l 1 450 -200 l 1 350 -200 l 1 350 250 l 1 250 250 m 1 250 -200 l 1 150 -200 l 1 150 150 l 1 0 150 l 1 0 250 l 1 250 250 l 1 EndSplineSet MinimumDistance: y9,11 y9,10 y3,1 y3,2 y21,19 y21,20 y15,17 y15,16 x15,13 x15,14 x3,5 x3,4 x21,23 x21,22 x9,7 x9,8 EndChar StartChar: uni256D Encoding: 9581 9581 Width: 600 Flags: W HStem: 250 100<474 599> VStem: 250 100<-199 120> Fore 500 350 m 2 600 350 l 1 600 250 l 1 500 250 l 2 394 250 350 206 350 100 c 2 350 -200 l 1 250 -200 l 1 250 100 l 2 250 260 340 350 500 350 c 2 EndSplineSet MinimumDistance: y3,6 y3,5 x4,1 x4,2 EndChar StartChar: uni256E Encoding: 9582 9582 Width: 600 Flags: W HStem: 250 100<1 126> VStem: 250 100<-199 120> Ref: 9581 N -1 0 0 1 600 0 EndChar StartChar: uni256F Encoding: 9583 9583 Width: 600 Flags: W HStem: 250 100<1 126> VStem: 250 100<480 799> Ref: 9581 N -1 -0 0 -1 600 600 EndChar StartChar: uni2570 Encoding: 9584 9584 Width: 600 Flags: W HStem: 250 100<474 599> VStem: 250 100<480 799> Ref: 9581 N 1 0 -0 -1 0 600 EndChar StartChar: uni2571 Encoding: 9585 9585 Width: 600 Flags: W DStem: 557 826 643 774 -43 -174 43 -226 Fore -43 -174 m 1 557 826 l 1 643 774 l 1 43 -226 l 1 -43 -174 l 1 EndSplineSet EndChar StartChar: uni2572 Encoding: 9586 9586 Width: 600 Flags: W DStem: -43 774 43 826 557 -226 643 -174 Ref: 9585 N -1 0 0 1 600 0 EndChar StartChar: uni2573 Encoding: 9587 9587 Width: 600 Flags: W DStem: -43 774 43 826 241 300 300 398 241 300 300 202 -43 -174 43 -226 300 202 359 300 557 -226 643 -174 557 826 643 774 300 398 359 300 Fore 359 300 m 1 643 -174 l 1 557 -226 l 1 300 202 l 1 43 -226 l 1 -43 -174 l 1 241 300 l 1 -43 774 l 1 43 826 l 1 300 398 l 1 557 826 l 1 643 774 l 1 359 300 l 1 EndSplineSet EndChar StartChar: uni2574 Encoding: 9588 9588 Width: 600 Flags: W HStem: 250 100<1 299> VStem: 0 300<251 349> Fore 0 350 m 1 300 350 l 1 300 250 l 1 0 250 l 1 0 350 l 1 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni2575 Encoding: 9589 9589 Width: 600 Flags: W HStem: 300 500<251 349> VStem: 250 100<301 799> Fore 350 800 m 1 350 300 l 1 250 300 l 1 250 800 l 1 350 800 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni2576 Encoding: 9590 9590 Width: 600 Flags: W HStem: 250 100<301 599> VStem: 300 300<251 349> Ref: 9588 N 1 0 0 1 300 0 EndChar StartChar: uni2577 Encoding: 9591 9591 Width: 600 Flags: W HStem: -200 500<251 349> VStem: 250 100<-199 299> Ref: 9589 N 1 0 0 1 0 -500 EndChar StartChar: uni2578 Encoding: 9592 9592 Width: 600 Flags: W HStem: 200 200<1 299> VStem: 0 300<201 399> Fore 0 400 m 1 300 400 l 1 300 200 l 1 0 200 l 1 0 400 l 1 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni2579 Encoding: 9593 9593 Width: 600 Flags: W HStem: 300 500<201 399> VStem: 200 200<301 799> Fore 400 800 m 1 400 300 l 5 200 300 l 5 200 800 l 1 400 800 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni257A Encoding: 9594 9594 Width: 600 Flags: W HStem: 200 200<301 599> VStem: 300 300<201 399> Ref: 9592 N 1 0 0 1 300 0 EndChar StartChar: uni257B Encoding: 9595 9595 Width: 600 Flags: W HStem: -200 500<201 399> VStem: 200 200<-199 299> Ref: 9593 N 1 0 0 1 0 -500 EndChar StartChar: uni257C Encoding: 9596 9596 Width: 600 Flags: W HStem: 200 200<300 599> 250 100<1 300> Fore 300 250 m 1 0 250 l 1 0 350 l 1 300 350 l 1 300 400 l 1 600 400 l 1 600 200 l 1 300 200 l 1 300 250 l 1 EndSplineSet MinimumDistance: x5,3 y3,5 y3,4 x6,0 y0,6 y0,7 EndChar StartChar: uni257D Encoding: 9597 9597 Width: 600 Flags: W VStem: 200 200<-199 300> 250 100<300 799> Fore 250 300 m 1 250 800 l 1 350 800 l 1 350 300 l 1 400 300 l 1 400 -200 l 1 200 -200 l 1 200 300 l 1 250 300 l 1 EndSplineSet MinimumDistance: x4,-1 y5,3 x3,5 x3,4 y6,0 x0,6 x0,7 EndChar StartChar: uni257E Encoding: 9598 9598 Width: 600 Flags: W HStem: 200 200<1 300> 250 100<300 599> Ref: 9596 N -1 0 0 1 600 0 EndChar StartChar: uni257F Encoding: 9599 9599 Width: 600 Flags: W VStem: 200 200<300 799> 250 100<-199 300> Ref: 9597 N 1 0 0 -1 0 600 EndChar StartChar: upblock Encoding: 9600 9600 Width: 600 Flags: W HStem: 300 500<1 599> VStem: 0 600<301 799> Fore 0 800 m 25 600 800 l 25 600 300 l 29 0 300 l 29 0 800 l 25 EndSplineSet EndChar StartChar: uni2581 Encoding: 9601 9601 Width: 600 Flags: W HStem: -200 125<1 599> VStem: 0 600<-199 -76> Fore 0 -75 m 29 600 -75 l 29 600 -200 l 25 0 -200 l 25 0 -75 l 29 EndSplineSet EndChar StartChar: uni2582 Encoding: 9602 9602 Width: 600 Flags: W HStem: -200 250<1 599> VStem: 0 600<-199 49> Fore 0 50 m 29 600 50 l 29 600 -200 l 25 0 -200 l 25 0 50 l 29 EndSplineSet EndChar StartChar: uni2583 Encoding: 9603 9603 Width: 600 Flags: W HStem: -200 375<1 599> VStem: 0 600<-199 174> Fore 0 175 m 29 600 175 l 29 600 -200 l 25 0 -200 l 25 0 175 l 29 EndSplineSet EndChar StartChar: dnblock Encoding: 9604 9604 Width: 600 Flags: W HStem: -200 500<1 599> VStem: 0 600<-199 299> Fore 0 300 m 25 600 300 l 25 600 -200 l 29 0 -200 l 29 0 300 l 25 EndSplineSet EndChar StartChar: uni2585 Encoding: 9605 9605 Width: 600 Flags: W HStem: -200 625<1 599> VStem: 0 600<-199 424> Fore 0 425 m 29 600 425 l 29 600 -200 l 25 0 -200 l 25 0 425 l 29 EndSplineSet EndChar StartChar: uni2586 Encoding: 9606 9606 Width: 600 Flags: W HStem: -200 750<1 599> VStem: 0 600<-199 549> Fore 0 550 m 29 600 550 l 29 600 -200 l 25 0 -200 l 25 0 550 l 29 EndSplineSet EndChar StartChar: uni2587 Encoding: 9607 9607 Width: 600 Flags: W HStem: -200 875<1 599> VStem: 0 600<-199 674> Fore 0 675 m 29 600 675 l 29 600 -200 l 25 0 -200 l 25 0 675 l 29 EndSplineSet EndChar StartChar: block Encoding: 9608 9608 Width: 600 Flags: W HStem: -200 1000<1 599> VStem: 0 600<-199 799> Fore 0 800 m 25 600 800 l 25 600 -200 l 25 0 -200 l 25 0 800 l 25 EndSplineSet EndChar StartChar: uni2589 Encoding: 9609 9609 Width: 600 Flags: W HStem: -200 1000<1 524> VStem: 0 525<-199 799> Fore 0 800 m 25 525 800 l 25 525 -200 l 29 0 -200 l 29 0 800 l 25 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni258A Encoding: 9610 9610 Width: 600 Flags: W HStem: -200 1000<1 449> VStem: 0 450<-199 799> Fore 0 800 m 25 450 800 l 25 450 -200 l 29 0 -200 l 29 0 800 l 25 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni258B Encoding: 9611 9611 Width: 600 Flags: W HStem: -200 1000<1 374> VStem: 0 375<-199 799> Fore 0 800 m 25 375 800 l 25 375 -200 l 29 0 -200 l 29 0 800 l 25 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: lfblock Encoding: 9612 9612 Width: 600 Flags: W HStem: -200 1000<1 299> VStem: 0 300<-199 799> Fore 0 800 m 25 300 800 l 25 300 -200 l 29 0 -200 l 29 0 800 l 25 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni258D Encoding: 9613 9613 Width: 600 Flags: W HStem: -200 1000<1 224> VStem: 0 225<-199 799> Fore 0 800 m 25 225 800 l 25 225 -200 l 29 0 -200 l 29 0 800 l 25 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni258E Encoding: 9614 9614 Width: 600 Flags: W HStem: -200 1000<1 149> VStem: 0 150<-199 799> Fore 0 800 m 25 150 800 l 25 150 -200 l 29 0 -200 l 29 0 800 l 25 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni258F Encoding: 9615 9615 Width: 600 Flags: W HStem: -200 1000<1 74> VStem: 0 75<-199 799> Fore 0 800 m 25 75 800 l 25 75 -200 l 29 0 -200 l 29 0 800 l 25 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: rtblock Encoding: 9616 9616 Width: 600 Flags: W HStem: -200 1000<301 599> VStem: 300 300<-199 799> Fore 300 800 m 25 600 800 l 25 600 -200 l 29 300 -200 l 29 300 800 l 25 EndSplineSet EndChar StartChar: ltshade Encoding: 9617 9617 Width: 600 Flags: W HStem: -200 50<1 49 201 249 401 449> -100 50<101 149 301 349 501 549> 0 50<1 49 201 249 401 449> 100 50<101 149 301 349 501 549> 200 50<1 49 201 249 401 449> 300 50<101 149 301 349 501 549> 400 50<1 49 201 249 401 449> 500 50<101 149 301 349 501 549> 600 50<1 49 201 249 401 449> 700 50<101 149 301 349 501 549> VStem: 0 50<-199 -151 1 49 201 249 401 449 601 649> 100 50<-99 -51 101 149 301 349 501 549 701 749> 200 50<-199 -151 1 49 201 249 401 449 601 649> 300 50<-99 -51 101 149 301 349 501 549 701 749> 400 50<-199 -151 1 49 201 249 401 449 601 649> 500 50<-99 -51 101 149 301 349 501 549 701 749> Fore 400 50 m 25 450 50 l 25 450 0 l 25 400 0 l 25 400 50 l 25 200 50 m 25 250 50 l 25 250 0 l 25 200 0 l 25 200 50 l 25 0 50 m 25 50 50 l 25 50 0 l 25 0 0 l 25 0 50 l 25 500 150 m 25 550 150 l 25 550 100 l 25 500 100 l 25 500 150 l 25 300 150 m 25 350 150 l 25 350 100 l 25 300 100 l 25 300 150 l 25 100 150 m 25 150 150 l 25 150 100 l 25 100 100 l 25 100 150 l 25 400 -150 m 25 450 -150 l 25 450 -200 l 25 400 -200 l 25 400 -150 l 25 200 -150 m 25 250 -150 l 25 250 -200 l 25 200 -200 l 25 200 -150 l 25 0 -150 m 25 50 -150 l 25 50 -200 l 25 0 -200 l 25 0 -150 l 25 500 -50 m 25 550 -50 l 25 550 -100 l 25 500 -100 l 25 500 -50 l 25 300 -50 m 25 350 -50 l 25 350 -100 l 25 300 -100 l 25 300 -50 l 25 100 -50 m 25 150 -50 l 25 150 -100 l 25 100 -100 l 25 100 -50 l 25 400 250 m 25 450 250 l 25 450 200 l 25 400 200 l 25 400 250 l 25 200 250 m 25 250 250 l 25 250 200 l 25 200 200 l 25 200 250 l 25 0 250 m 25 50 250 l 25 50 200 l 25 0 200 l 25 0 250 l 25 500 350 m 25 550 350 l 25 550 300 l 25 500 300 l 25 500 350 l 25 300 350 m 25 350 350 l 25 350 300 l 25 300 300 l 25 300 350 l 25 100 350 m 25 150 350 l 25 150 300 l 25 100 300 l 25 100 350 l 25 400 450 m 25 450 450 l 25 450 400 l 25 400 400 l 25 400 450 l 25 200 450 m 25 250 450 l 25 250 400 l 25 200 400 l 25 200 450 l 25 0 450 m 25 50 450 l 25 50 400 l 25 0 400 l 25 0 450 l 25 500 550 m 25 550 550 l 25 550 500 l 25 500 500 l 25 500 550 l 25 300 550 m 25 350 550 l 25 350 500 l 25 300 500 l 25 300 550 l 25 100 550 m 25 150 550 l 25 150 500 l 25 100 500 l 25 100 550 l 25 400 650 m 25 450 650 l 25 450 600 l 25 400 600 l 25 400 650 l 25 200 650 m 25 250 650 l 25 250 600 l 25 200 600 l 25 200 650 l 25 0 650 m 25 50 650 l 25 50 600 l 25 0 600 l 25 0 650 l 25 500 750 m 25 550 750 l 25 550 700 l 25 500 700 l 25 500 750 l 25 300 750 m 25 350 750 l 25 350 700 l 25 300 700 l 25 300 750 l 25 100 750 m 25 150 750 l 25 150 700 l 25 100 700 l 25 100 750 l 25 EndSplineSet MinimumDistance: x13,-1 EndChar StartChar: shade Encoding: 9618 9618 Width: 600 Flags: W HStem: -200 50<1 49 101 149 201 249 301 349 401 449 501 549> -100 50<51 99 151 199 251 299 351 399 451 499 551 599> 0 50<1 49 101 149 201 249 301 349 401 449 501 549> 100 50<51 99 151 199 251 299 351 399 451 499 551 599> 200 50<1 49 101 149 201 249 301 349 401 449 501 549> 300 50<51 99 151 199 251 299 351 399 451 499 551 599> 400 50<1 49 101 149 201 249 301 349 401 449 501 549> 500 50<51 99 151 199 251 299 351 399 451 499 551 599> 600 50<1 49 101 149 201 249 301 349 401 449 501 549> 700 50<51 99 151 199 251 299 351 399 451 499 551 599> VStem: 0 50<-199 -151 1 49 201 249 401 449 601 649> 50 50<-99 -51 101 149 301 349 501 549 701 749> 100 50<-199 -151 1 49 201 249 401 449 601 649> 150 50<-99 -51 101 149 301 349 501 549 701 749> 200 50<-199 -151 1 49 201 249 401 449 601 649> 250 50<-99 -51 101 149 301 349 501 549 701 749> 300 50<-199 -151 1 49 201 249 401 449 601 649> 350 50<-99 -51 101 149 301 349 501 549 701 749> 400 50<-199 -151 1 49 201 249 401 449 601 649> 450 50<-99 -51 101 149 301 349 501 549 701 749> 500 50<-199 -151 1 49 201 249 401 449 601 649> 550 50<-99 -51 101 149 301 349 501 549 701 749> Fore 400 50 m 25 450 50 l 25 450 0 l 25 400 0 l 25 400 50 l 25 300 50 m 25 350 50 l 25 350 0 l 25 300 0 l 25 300 50 l 25 200 50 m 25 250 50 l 25 250 0 l 25 200 0 l 25 200 50 l 25 100 50 m 25 150 50 l 25 150 0 l 25 100 0 l 25 100 50 l 25 0 50 m 25 50 50 l 25 50 0 l 25 0 0 l 25 0 50 l 25 500 50 m 25 550 50 l 25 550 0 l 25 500 0 l 25 500 50 l 25 450 150 m 25 500 150 l 25 500 100 l 25 450 100 l 25 450 150 l 25 350 150 m 25 400 150 l 25 400 100 l 25 350 100 l 25 350 150 l 25 250 150 m 25 300 150 l 25 300 100 l 25 250 100 l 25 250 150 l 25 150 150 m 25 200 150 l 25 200 100 l 25 150 100 l 25 150 150 l 25 50 150 m 25 100 150 l 25 100 100 l 25 50 100 l 25 50 150 l 25 550 150 m 25 600 150 l 25 600 100 l 25 550 100 l 25 550 150 l 25 400 -150 m 25 450 -150 l 25 450 -200 l 25 400 -200 l 25 400 -150 l 25 300 -150 m 25 350 -150 l 25 350 -200 l 25 300 -200 l 25 300 -150 l 25 200 -150 m 25 250 -150 l 25 250 -200 l 25 200 -200 l 25 200 -150 l 25 100 -150 m 25 150 -150 l 25 150 -200 l 25 100 -200 l 25 100 -150 l 25 0 -150 m 25 50 -150 l 25 50 -200 l 25 0 -200 l 25 0 -150 l 25 500 -150 m 25 550 -150 l 25 550 -200 l 25 500 -200 l 25 500 -150 l 25 450 -50 m 25 500 -50 l 25 500 -100 l 25 450 -100 l 25 450 -50 l 25 350 -50 m 25 400 -50 l 25 400 -100 l 25 350 -100 l 25 350 -50 l 25 250 -50 m 25 300 -50 l 25 300 -100 l 25 250 -100 l 25 250 -50 l 25 150 -50 m 25 200 -50 l 25 200 -100 l 25 150 -100 l 25 150 -50 l 25 50 -50 m 25 100 -50 l 25 100 -100 l 25 50 -100 l 25 50 -50 l 25 550 -50 m 25 600 -50 l 25 600 -100 l 25 550 -100 l 25 550 -50 l 25 400 250 m 25 450 250 l 25 450 200 l 25 400 200 l 25 400 250 l 25 300 250 m 25 350 250 l 25 350 200 l 25 300 200 l 25 300 250 l 25 200 250 m 25 250 250 l 25 250 200 l 25 200 200 l 25 200 250 l 25 100 250 m 25 150 250 l 25 150 200 l 25 100 200 l 25 100 250 l 25 0 250 m 25 50 250 l 25 50 200 l 25 0 200 l 25 0 250 l 25 500 250 m 25 550 250 l 25 550 200 l 25 500 200 l 25 500 250 l 25 450 350 m 25 500 350 l 25 500 300 l 25 450 300 l 25 450 350 l 25 350 350 m 25 400 350 l 25 400 300 l 25 350 300 l 25 350 350 l 25 250 350 m 25 300 350 l 25 300 300 l 25 250 300 l 25 250 350 l 25 150 350 m 25 200 350 l 25 200 300 l 25 150 300 l 25 150 350 l 25 50 350 m 25 100 350 l 25 100 300 l 25 50 300 l 25 50 350 l 25 550 350 m 25 600 350 l 25 600 300 l 25 550 300 l 25 550 350 l 25 400 450 m 25 450 450 l 25 450 400 l 25 400 400 l 25 400 450 l 25 300 450 m 25 350 450 l 25 350 400 l 25 300 400 l 25 300 450 l 25 200 450 m 25 250 450 l 25 250 400 l 25 200 400 l 25 200 450 l 25 100 450 m 25 150 450 l 25 150 400 l 25 100 400 l 25 100 450 l 25 0 450 m 25 50 450 l 25 50 400 l 25 0 400 l 25 0 450 l 25 500 450 m 25 550 450 l 25 550 400 l 25 500 400 l 25 500 450 l 25 450 550 m 25 500 550 l 25 500 500 l 25 450 500 l 25 450 550 l 25 350 550 m 25 400 550 l 25 400 500 l 25 350 500 l 25 350 550 l 25 250 550 m 25 300 550 l 25 300 500 l 25 250 500 l 25 250 550 l 25 150 550 m 25 200 550 l 25 200 500 l 25 150 500 l 25 150 550 l 25 50 550 m 25 100 550 l 25 100 500 l 25 50 500 l 25 50 550 l 25 550 550 m 25 600 550 l 25 600 500 l 25 550 500 l 25 550 550 l 25 400 650 m 25 450 650 l 25 450 600 l 25 400 600 l 25 400 650 l 25 300 650 m 25 350 650 l 25 350 600 l 25 300 600 l 25 300 650 l 25 200 650 m 25 250 650 l 25 250 600 l 25 200 600 l 25 200 650 l 25 100 650 m 25 150 650 l 25 150 600 l 25 100 600 l 25 100 650 l 25 0 650 m 25 50 650 l 25 50 600 l 25 0 600 l 25 0 650 l 25 500 650 m 25 550 650 l 25 550 600 l 25 500 600 l 25 500 650 l 25 450 750 m 25 500 750 l 25 500 700 l 25 450 700 l 25 450 750 l 25 350 750 m 25 400 750 l 25 400 700 l 25 350 700 l 25 350 750 l 25 250 750 m 25 300 750 l 25 300 700 l 25 250 700 l 25 250 750 l 25 150 750 m 25 200 750 l 25 200 700 l 25 150 700 l 25 150 750 l 25 50 750 m 25 100 750 l 25 100 700 l 25 50 700 l 25 50 750 l 25 550 750 m 25 600 750 l 25 600 700 l 25 550 700 l 25 550 750 l 25 EndSplineSet EndChar StartChar: dkshade Encoding: 9619 9619 Width: 600 Flags: W HStem: -200 50<1 49 100 149 200 249 300 349 400 449 500 549> -150 50<50 100 150 200 250 300 350 400 450 500 550 599> -100 50<1 50 100 150 200 250 300 350 400 450 500 550> -50 50<50 100 150 200 250 300 350 400 450 500 550 599> 0 50<1 50 100 150 200 250 300 350 400 450 500 550> 50 50<50 100 150 200 250 300 350 400 450 500 550 599> 100 50<1 50 100 150 200 250 300 350 400 450 500 550> 150 50<50 100 150 200 250 300 350 400 450 500 550 599> 200 50<1 50 100 150 200 250 300 350 400 450 500 550> 250 50<50 100 150 200 250 300 350 400 450 500 550 599> 300 50<1 50 100 150 200 250 300 350 400 450 500 550> 350 50<50 100 150 200 250 300 350 400 450 500 550 599> 400 50<1 50 100 150 200 250 300 350 400 450 500 550> 450 50<50 100 150 200 250 300 350 400 450 500 550 599> 500 50<1 50 100 150 200 250 300 350 400 450 500 550> 550 50<50 100 150 200 250 300 350 400 450 500 550 599> 600 50<1 50 100 150 200 250 300 350 400 450 500 550> 650 50<50 100 150 200 250 300 350 400 450 500 550 599> 700 50<1 50 100 150 200 250 300 350 400 450 500 550> 750 50<51 100 151 200 251 300 351 400 451 500 551 599> VStem: 0 50<-199 -151 -100 -51 0 49 100 149 200 249 300 349 400 449 500 549 600 649 700 749> 50 50<-150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750 799> 100 50<-199 -150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750> 150 50<-150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750 799> 200 50<-199 -150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750> 250 50<-150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750 799> 300 50<-199 -150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750> 350 50<-150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750 799> 400 50<-199 -150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750> 450 50<-150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750 799> 500 50<-199 -150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750> 550 50<-149 -100 -49 0 51 100 151 200 251 300 351 400 451 500 551 600 651 700 751 799> Fore 400 50 m 25 450 50 l 25 450 0 l 25 400 0 l 25 400 50 l 25 300 50 m 25 350 50 l 25 350 0 l 25 300 0 l 25 300 50 l 25 200 50 m 25 250 50 l 25 250 0 l 25 200 0 l 25 200 50 l 25 100 50 m 25 150 50 l 25 150 0 l 25 100 0 l 25 100 50 l 25 0 50 m 25 50 50 l 25 50 0 l 25 0 0 l 25 0 50 l 25 500 50 m 25 550 50 l 25 550 0 l 25 500 0 l 25 500 50 l 25 450 0 m 25 500 0 l 25 500 -50 l 25 450 -50 l 25 450 0 l 25 350 0 m 25 400 0 l 25 400 -50 l 25 350 -50 l 25 350 0 l 25 250 0 m 25 300 0 l 25 300 -50 l 25 250 -50 l 25 250 0 l 25 150 0 m 25 200 0 l 25 200 -50 l 25 150 -50 l 25 150 0 l 25 50 0 m 25 100 0 l 25 100 -50 l 25 50 -50 l 25 50 0 l 25 550 0 m 25 600 0 l 25 600 -50 l 25 550 -50 l 25 550 0 l 25 450 -100 m 25 500 -100 l 25 500 -150 l 25 450 -150 l 25 450 -100 l 25 350 -100 m 25 400 -100 l 25 400 -150 l 25 350 -150 l 25 350 -100 l 25 250 -100 m 25 300 -100 l 25 300 -150 l 25 250 -150 l 25 250 -100 l 25 150 -100 m 25 200 -100 l 25 200 -150 l 25 150 -150 l 25 150 -100 l 25 50 -100 m 25 100 -100 l 25 100 -150 l 25 50 -150 l 25 50 -100 l 25 550 -100 m 25 600 -100 l 25 600 -150 l 25 550 -150 l 25 550 -100 l 25 400 -50 m 25 450 -50 l 25 450 -100 l 25 400 -100 l 25 400 -50 l 25 300 -50 m 25 350 -50 l 25 350 -100 l 25 300 -100 l 25 300 -50 l 25 200 -50 m 25 250 -50 l 25 250 -100 l 25 200 -100 l 25 200 -50 l 25 100 -50 m 25 150 -50 l 25 150 -100 l 25 100 -100 l 25 100 -50 l 25 0 -50 m 25 50 -50 l 25 50 -100 l 25 0 -100 l 25 0 -50 l 25 500 -50 m 25 550 -50 l 25 550 -100 l 25 500 -100 l 25 500 -50 l 25 400 -150 m 25 450 -150 l 25 450 -200 l 25 400 -200 l 25 400 -150 l 25 300 -150 m 25 350 -150 l 25 350 -200 l 25 300 -200 l 25 300 -150 l 25 200 -150 m 25 250 -150 l 25 250 -200 l 25 200 -200 l 25 200 -150 l 25 100 -150 m 25 150 -150 l 25 150 -200 l 25 100 -200 l 25 100 -150 l 25 0 -150 m 25 50 -150 l 25 50 -200 l 25 0 -200 l 25 0 -150 l 25 500 -150 m 25 550 -150 l 25 550 -200 l 25 500 -200 l 25 500 -150 l 25 450 100 m 25 500 100 l 25 500 50 l 25 450 50 l 25 450 100 l 25 350 100 m 25 400 100 l 25 400 50 l 25 350 50 l 25 350 100 l 25 250 100 m 25 300 100 l 25 300 50 l 25 250 50 l 25 250 100 l 25 150 100 m 25 200 100 l 25 200 50 l 25 150 50 l 25 150 100 l 25 50 100 m 25 100 100 l 25 100 50 l 25 50 50 l 25 50 100 l 25 550 100 m 25 600 100 l 25 600 50 l 25 550 50 l 25 550 100 l 25 400 150 m 25 450 150 l 25 450 100 l 25 400 100 l 25 400 150 l 25 300 150 m 25 350 150 l 25 350 100 l 25 300 100 l 25 300 150 l 25 200 150 m 25 250 150 l 25 250 100 l 25 200 100 l 25 200 150 l 25 100 150 m 25 150 150 l 25 150 100 l 25 100 100 l 25 100 150 l 25 0 150 m 25 50 150 l 25 50 100 l 25 0 100 l 25 0 150 l 25 500 150 m 25 550 150 l 25 550 100 l 25 500 100 l 25 500 150 l 25 450 200 m 25 500 200 l 25 500 150 l 25 450 150 l 25 450 200 l 25 350 200 m 25 400 200 l 25 400 150 l 25 350 150 l 25 350 200 l 25 250 200 m 25 300 200 l 25 300 150 l 25 250 150 l 25 250 200 l 25 150 200 m 25 200 200 l 25 200 150 l 25 150 150 l 25 150 200 l 25 50 200 m 25 100 200 l 25 100 150 l 25 50 150 l 25 50 200 l 25 550 200 m 25 600 200 l 25 600 150 l 25 550 150 l 25 550 200 l 25 400 250 m 25 450 250 l 25 450 200 l 25 400 200 l 25 400 250 l 25 300 250 m 25 350 250 l 25 350 200 l 25 300 200 l 25 300 250 l 25 200 250 m 25 250 250 l 25 250 200 l 25 200 200 l 25 200 250 l 25 100 250 m 25 150 250 l 25 150 200 l 25 100 200 l 25 100 250 l 25 0 250 m 25 50 250 l 25 50 200 l 25 0 200 l 25 0 250 l 25 500 250 m 25 550 250 l 25 550 200 l 25 500 200 l 25 500 250 l 25 450 300 m 25 500 300 l 25 500 250 l 25 450 250 l 25 450 300 l 25 350 300 m 25 400 300 l 25 400 250 l 25 350 250 l 25 350 300 l 25 250 300 m 25 300 300 l 25 300 250 l 25 250 250 l 25 250 300 l 25 150 300 m 25 200 300 l 25 200 250 l 25 150 250 l 25 150 300 l 25 50 300 m 25 100 300 l 25 100 250 l 25 50 250 l 25 50 300 l 25 550 300 m 25 600 300 l 25 600 250 l 25 550 250 l 25 550 300 l 25 400 350 m 25 450 350 l 25 450 300 l 25 400 300 l 25 400 350 l 25 300 350 m 25 350 350 l 25 350 300 l 25 300 300 l 25 300 350 l 25 200 350 m 25 250 350 l 25 250 300 l 25 200 300 l 25 200 350 l 25 100 350 m 25 150 350 l 25 150 300 l 25 100 300 l 25 100 350 l 25 0 350 m 25 50 350 l 25 50 300 l 25 0 300 l 25 0 350 l 25 500 350 m 25 550 350 l 25 550 300 l 25 500 300 l 25 500 350 l 25 450 400 m 25 500 400 l 25 500 350 l 25 450 350 l 25 450 400 l 25 350 400 m 25 400 400 l 25 400 350 l 25 350 350 l 25 350 400 l 25 250 400 m 25 300 400 l 25 300 350 l 25 250 350 l 25 250 400 l 25 150 400 m 25 200 400 l 25 200 350 l 25 150 350 l 25 150 400 l 25 50 400 m 25 100 400 l 25 100 350 l 25 50 350 l 25 50 400 l 25 550 400 m 25 600 400 l 25 600 350 l 25 550 350 l 25 550 400 l 25 400 450 m 25 450 450 l 25 450 400 l 25 400 400 l 25 400 450 l 25 300 450 m 25 350 450 l 25 350 400 l 25 300 400 l 25 300 450 l 25 200 450 m 25 250 450 l 25 250 400 l 25 200 400 l 25 200 450 l 25 100 450 m 25 150 450 l 25 150 400 l 25 100 400 l 25 100 450 l 25 0 450 m 25 50 450 l 25 50 400 l 25 0 400 l 25 0 450 l 25 500 450 m 25 550 450 l 25 550 400 l 25 500 400 l 25 500 450 l 25 450 500 m 25 500 500 l 25 500 450 l 25 450 450 l 25 450 500 l 25 350 500 m 25 400 500 l 25 400 450 l 25 350 450 l 25 350 500 l 25 250 500 m 25 300 500 l 25 300 450 l 25 250 450 l 25 250 500 l 25 150 500 m 25 200 500 l 25 200 450 l 25 150 450 l 25 150 500 l 25 50 500 m 25 100 500 l 25 100 450 l 25 50 450 l 25 50 500 l 25 550 500 m 25 600 500 l 25 600 450 l 25 550 450 l 25 550 500 l 25 400 550 m 25 450 550 l 25 450 500 l 25 400 500 l 25 400 550 l 25 300 550 m 25 350 550 l 25 350 500 l 25 300 500 l 25 300 550 l 25 200 550 m 25 250 550 l 25 250 500 l 25 200 500 l 25 200 550 l 25 100 550 m 25 150 550 l 25 150 500 l 25 100 500 l 25 100 550 l 25 0 550 m 25 50 550 l 25 50 500 l 25 0 500 l 25 0 550 l 25 500 550 m 25 550 550 l 25 550 500 l 25 500 500 l 25 500 550 l 25 450 600 m 25 500 600 l 25 500 550 l 25 450 550 l 25 450 600 l 25 350 600 m 25 400 600 l 25 400 550 l 25 350 550 l 25 350 600 l 25 250 600 m 25 300 600 l 25 300 550 l 25 250 550 l 25 250 600 l 25 150 600 m 25 200 600 l 25 200 550 l 25 150 550 l 25 150 600 l 25 50 600 m 25 100 600 l 25 100 550 l 25 50 550 l 25 50 600 l 25 550 600 m 25 600 600 l 25 600 550 l 25 550 550 l 25 550 600 l 25 400 650 m 25 450 650 l 25 450 600 l 25 400 600 l 25 400 650 l 25 300 650 m 25 350 650 l 25 350 600 l 25 300 600 l 25 300 650 l 25 200 650 m 25 250 650 l 25 250 600 l 25 200 600 l 25 200 650 l 25 100 650 m 25 150 650 l 25 150 600 l 25 100 600 l 25 100 650 l 25 0 650 m 25 50 650 l 25 50 600 l 25 0 600 l 25 0 650 l 25 500 650 m 25 550 650 l 25 550 600 l 25 500 600 l 25 500 650 l 25 450 700 m 25 500 700 l 25 500 650 l 25 450 650 l 25 450 700 l 25 350 700 m 25 400 700 l 25 400 650 l 25 350 650 l 25 350 700 l 25 250 700 m 25 300 700 l 25 300 650 l 25 250 650 l 25 250 700 l 25 150 700 m 25 200 700 l 25 200 650 l 25 150 650 l 25 150 700 l 25 50 700 m 25 100 700 l 25 100 650 l 25 50 650 l 25 50 700 l 25 550 700 m 25 600 700 l 25 600 650 l 25 550 650 l 25 550 700 l 25 400 750 m 25 450 750 l 25 450 700 l 25 400 700 l 25 400 750 l 25 300 750 m 25 350 750 l 25 350 700 l 25 300 700 l 25 300 750 l 25 200 750 m 25 250 750 l 25 250 700 l 25 200 700 l 25 200 750 l 25 100 750 m 25 150 750 l 25 150 700 l 25 100 700 l 25 100 750 l 25 0 750 m 25 50 750 l 25 50 700 l 25 0 700 l 25 0 750 l 25 500 750 m 25 550 750 l 25 550 700 l 25 500 700 l 25 500 750 l 25 450 800 m 25 500 800 l 25 500 750 l 25 450 750 l 25 450 800 l 25 350 800 m 25 400 800 l 25 400 750 l 25 350 750 l 25 350 800 l 25 250 800 m 25 300 800 l 25 300 750 l 25 250 750 l 25 250 800 l 25 150 800 m 25 200 800 l 25 200 750 l 25 150 750 l 25 150 800 l 25 50 800 m 25 100 800 l 25 100 750 l 25 50 750 l 25 50 800 l 25 550 800 m 25 600 800 l 25 600 750 l 25 550 750 l 25 550 800 l 25 EndSplineSet EndChar StartChar: uni2594 Encoding: 9620 9620 Width: 600 Flags: W HStem: 675 125<1 599> VStem: 0 600<676 799> Fore 0 800 m 25 600 800 l 25 600 675 l 25 0 675 l 25 0 800 l 25 EndSplineSet EndChar StartChar: uni2595 Encoding: 9621 9621 Width: 600 Flags: W HStem: -200 1000<526 599> VStem: 525 75<-199 799> Fore 525 800 m 25 600 800 l 25 600 -200 l 25 525 -200 l 25 525 800 l 25 EndSplineSet EndChar StartChar: filledbox Encoding: 9632 9632 Width: 600 Flags: W HStem: 0 500<51 549> VStem: 50 500<1 499> Fore 50 0 m 25 50 500 l 25 550 500 l 25 550 0 l 25 50 0 l 25 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: H22073 Encoding: 9633 9633 Width: 600 Flags: W HStem: 0 88<139 461> 412 88<139 461> VStem: 50 88<89 411> 462 88<89 411> Fore 138 88 m 25 462 88 l 25 462 412 l 25 138 412 l 25 138 88 l 25 50 0 m 25 50 500 l 25 550 500 l 25 550 0 l 25 50 0 l 25 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: uni25A3 Encoding: 9635 9635 Width: 600 Flags: W HStem: 0 88<139 461> 156 188<207 393> 412 88<139 461> VStem: 50 88<89 411> 206 188<157 343> 462 88<89 411> Fore 206 156 m 25 206 344 l 25 394 344 l 25 394 156 l 25 206 156 l 25 138 88 m 25 462 88 l 25 462 412 l 25 138 412 l 25 138 88 l 25 50 0 m 25 50 500 l 25 550 500 l 25 550 0 l 25 50 0 l 25 EndSplineSet MinimumDistance: x10,-1 EndChar StartChar: uni25A4 Encoding: 9636 9636 Width: 600 Flags: W HStem: 0 88<139 461> 139 88<139 461> 275 88<139 461> 412 88<139 461> VStem: 50 88<89 138 228 274 364 411> 462 88<89 138 228 274 364 411> Fore 50 0 m 25 50 500 l 25 550 500 l 25 550 0 l 25 50 0 l 25 138 275 m 1 138 227 l 1 462 227 l 1 462 275 l 1 138 275 l 1 138 363 m 1 462 363 l 1 462 412 l 9 138 412 l 17 138 363 l 1 138 139 m 1 138 88 l 9 462 88 l 17 462 139 l 1 138 139 l 1 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: uni25A5 Encoding: 9637 9637 Width: 600 Flags: W HStem: 0 88<139 186 276 322 412 461> 412 88<139 186 276 322 412 461> VStem: 50 88<89 411> 187 88<89 411> 323 88<89 411> 462 88<89 411> Fore 550 0 m 25 50 0 l 25 50 500 l 25 550 500 l 25 550 0 l 25 275 88 m 1 323 88 l 1 323 412 l 1 275 412 l 1 275 88 l 1 187 88 m 1 187 412 l 1 138 412 l 9 138 88 l 17 187 88 l 1 411 88 m 1 462 88 l 9 462 412 l 17 411 412 l 1 411 88 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni25A6 Encoding: 9638 9638 Width: 600 Flags: W HStem: 0 88<139 186 276 324 414 461> 139 88<139 186 276 324 414 461> 275 88<139 186 276 324 414 461> 412 88<139 186 276 324 414 461> VStem: 50 88<89 138 228 274 364 411> 187 88<89 138 228 274 364 411> 325 88<89 138 228 274 364 411> 462 88<89 138 228 274 364 411> Fore 50 0 m 25 50 500 l 25 550 500 l 25 550 0 l 25 50 0 l 25 187 139 m 1 138 139 l 1 138 88 l 1 187 88 l 1 187 139 l 1 187 412 m 1 138 412 l 1 138 363 l 1 187 363 l 1 187 412 l 1 187 275 m 1 138 275 l 1 138 227 l 1 187 227 l 1 187 275 l 1 325 275 m 1 275 275 l 1 275 227 l 1 325 227 l 1 325 275 l 1 325 412 m 1 275 412 l 1 275 363 l 1 325 363 l 1 325 412 l 1 325 139 m 1 275 139 l 1 275 88 l 1 325 88 l 1 325 139 l 1 413 275 m 1 413 227 l 1 462 227 l 1 462 275 l 1 413 275 l 1 413 412 m 1 413 363 l 1 462 363 l 1 462 412 l 1 413 412 l 1 413 139 m 1 413 88 l 1 462 88 l 1 462 139 l 1 413 139 l 1 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: uni25A7 Encoding: 9639 9639 Width: 600 Flags: W HStem: 0 88<139 263 388 461> 412 88<139 212 337 461> VStem: 50 88<89 213 338 411> 462 88<89 162 287 411> DStem: 138 214 138 338 264 88 388 88 212 412 336 412 462 162 462 286 Fore 50 0 m 25 50 500 l 25 550 500 l 25 550 0 l 25 50 0 l 25 138 214 m 1 138 88 l 1 264 88 l 1 138 214 l 1 138 338 m 1 388 88 l 1 462 88 l 1 462 162 l 1 212 412 l 1 138 412 l 1 138 338 l 1 336 412 m 1 462 286 l 1 462 412 l 1 336 412 l 1 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: uni25A8 Encoding: 9640 9640 Width: 600 Flags: W HStem: 0 88<139 212 337 461> 412 88<139 263 388 461> VStem: 462 88<89 162 89 213 287 411 338 411> DStem: 264 412 388 412 138 286 138 162 462 338 462 214 212 88 336 88 Ref: 9639 N -1 0 0 1 600 0 EndChar StartChar: uni25A9 Encoding: 9641 9641 Width: 600 Flags: W HStem: 0 88<139 212 388 461> 412 88<139 212 388 461> VStem: 50 88<89 162 338 411> 462 88<89 162 338 411> DStem: 164 188 226 250 238 114 300 176 238 386 300 324 164 312 226 250 300 324 362 386 374 250 436 312 374 250 436 188 300 176 362 114 Fore 50 0 m 25 50 500 l 25 550 500 l 25 550 0 l 25 50 0 l 25 238 114 m 1 164 188 l 1 138 162 l 1 138 88 l 1 212 88 l 1 238 114 l 1 138 338 m 1 164 312 l 1 238 386 l 1 212 412 l 1 138 412 l 1 138 338 l 1 388 88 m 1 462 88 l 1 462 162 l 1 436 188 l 1 362 114 l 1 388 88 l 1 300 176 m 1 374 250 l 1 300 324 l 1 226 250 l 1 300 176 l 1 436 312 m 1 462 338 l 1 462 412 l 1 388 412 l 1 362 386 l 1 436 312 l 1 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: H18543 Encoding: 9642 9642 Width: 600 Flags: W HStem: 0 250<176 424> VStem: 175 250<1 249> Fore 175 0 m 25 175 250 l 25 425 250 l 25 425 0 l 25 175 0 l 25 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: H18551 Encoding: 9643 9643 Width: 600 Flags: W HStem: 0 78<254 346> 172 78<254 346> VStem: 175 78<79 171> 347 78<79 171> Fore 253 78 m 25 347 78 l 25 347 172 l 25 253 172 l 25 253 78 l 25 175 0 m 25 175 250 l 25 425 250 l 25 425 0 l 25 175 0 l 25 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: filledrect Encoding: 9644 9644 Width: 600 Flags: W HStem: 0 300<51 549> VStem: 50 500<1 299> Fore 50 0 m 25 50 300 l 25 550 300 l 25 550 0 l 25 50 0 l 25 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: uni25AD Encoding: 9645 9645 Width: 600 Flags: W HStem: 0 88<135 461> 212 88<135 461> VStem: 50 84<89 211> 462 88<89 211> Fore 134 88 m 25 462 88 l 25 462 212 l 25 134 212 l 25 134 88 l 25 50 0 m 25 50 300 l 25 550 300 l 25 550 0 l 25 50 0 l 25 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: uni25AE Encoding: 9646 9646 Width: 600 Flags: W HStem: 0 500<151 449> VStem: 150 300<1 499> Fore 450 0 m 25 150 0 l 25 150 500 l 25 450 500 l 25 450 0 l 25 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni25AF Encoding: 9647 9647 Width: 600 Flags: W HStem: 0 84<239 361> 412 88<239 361> VStem: 150 88<85 411> 362 88<85 411> Fore 362 84 m 25 362 412 l 25 238 412 l 25 238 84 l 25 362 84 l 25 450 0 m 25 150 0 l 25 150 500 l 25 450 500 l 25 450 0 l 25 EndSplineSet MinimumDistance: x4,-1 EndChar StartChar: uni25B0 Encoding: 9648 9648 Width: 600 Flags: W HStem: 0 300<75 525> Fore 25 0 m 9 75 300 l 25 575 300 l 25 525 0 l 17 25 0 l 9 EndSplineSet EndChar StartChar: uni25B1 Encoding: 9649 9649 Width: 600 Flags: W HStem: 0 88<125 452> 212 88<144 471> DStem: 75 300 144 212 25 0 124 88 472 212 575 300 452 88 525 0 Fore 124 88 m 25 452 88 l 25 472 212 l 25 144 212 l 25 124 88 l 25 25 0 m 25 75 300 l 25 575 300 l 25 525 0 l 25 25 0 l 25 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: triagup Encoding: 9650 9650 Width: 600 Flags: W HStem: 0 21G<35 565> Fore 565 0 m 1 35 0 l 1 301 454 l 1 565 0 l 1 EndSplineSet EndChar StartChar: uni25B3 Encoding: 9651 9651 Width: 600 Flags: W HStem: 0 88<190 410> DStem: 300 278 301 454 411 88 565 0 301 454 300 278 35 0 189 88 Fore 411 88 m 1 300 278 l 1 189 88 l 1 411 88 l 1 565 0 m 1 35 0 l 1 301 454 l 1 565 0 l 1 EndSplineSet MinimumDistance: x3,-1 EndChar StartChar: uni25B4 Encoding: 9652 9652 Width: 600 Flags: W HStem: 0 21G<168 432> Fore 432 0 m 1 168 0 l 1 300 226 l 1 432 0 l 1 EndSplineSet EndChar StartChar: uni25B5 Encoding: 9653 9653 Width: 600 Flags: W HStem: 0 60<274 326> Fore 327 60 m 1 300 106 l 1 273 60 l 1 327 60 l 1 432 0 m 1 168 0 l 1 300 226 l 1 432 0 l 1 EndSplineSet EndChar StartChar: uni25B6 Encoding: 9654 9654 Width: 600 Flags: W Fore 543 265 m 1 84 0 l 1 84 530 l 1 543 265 l 1 EndSplineSet EndChar StartChar: uni25B7 Encoding: 9655 9655 Width: 600 Flags: W VStem: 84 89<155 375> DStem: 173 376 84 530 366 265 543 265 366 265 543 265 173 154 84 0 Fore 366 265 m 1 173 376 l 1 173 154 l 1 366 265 l 1 543 265 m 1 84 0 l 1 84 530 l 1 543 265 l 1 EndSplineSet MinimumDistance: x3,-1 EndChar StartChar: uni25B8 Encoding: 9656 9656 Width: 600 Flags: W Fore 428 133 m 1 199 0 l 1 199 266 l 1 428 133 l 1 EndSplineSet EndChar StartChar: uni25B9 Encoding: 9657 9657 Width: 600 Flags: W VStem: 199 61<107 159> Fore 307 133 m 1 260 160 l 1 260 106 l 1 307 133 l 1 428 133 m 1 199 0 l 1 199 266 l 1 428 133 l 1 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: triagrt Encoding: 9658 9658 Width: 600 Flags: W Fore 506 133 m 1 121 0 l 1 121 266 l 1 506 133 l 1 EndSplineSet EndChar StartChar: triagdn Encoding: 9660 9660 Width: 600 Flags: W HStem: 433 21<35 565> Ref: 9650 N 1 0 0 -1 0 454 EndChar StartChar: uni25BD Encoding: 9661 9661 Width: 600 Flags: W HStem: 366 88<190 410> DStem: 35 454 189 366 301 0 300 176 411 366 565 454 300 176 301 0 Ref: 9651 N 1 0 0 -1 0 454 EndChar StartChar: uni25BE Encoding: 9662 9662 Width: 600 Flags: W HStem: 205 21<168 432> Ref: 9652 N 1 0 0 -1 0 226 EndChar StartChar: uni25BF Encoding: 9663 9663 Width: 600 Flags: W HStem: 166 60<274 326> Ref: 9653 N 1 0 0 -1 0 226 EndChar StartChar: uni25C0 Encoding: 9664 9664 Width: 600 Flags: W Ref: 9654 S -1 0 0 1 627 0 EndChar StartChar: uni25C1 Encoding: 9665 9665 Width: 600 Flags: W VStem: 454 89<155 375> DStem: 84 265 261 265 543 0 454 154 543 530 454 376 84 265 261 265 Ref: 9655 N -1 0 0 1 627 0 EndChar StartChar: uni25C2 Encoding: 9666 9666 Width: 600 Flags: W Ref: 9656 N -1 0 0 1 627 0 EndChar StartChar: uni25C3 Encoding: 9667 9667 Width: 600 Flags: W VStem: 367 61<107 159> Ref: 9657 N -1 0 0 1 627 0 EndChar StartChar: triaglf Encoding: 9668 9668 Width: 600 Flags: W Fore 94 133 m 1 479 266 l 1 479 0 l 5 94 133 l 1 EndSplineSet EndChar StartChar: uni25C5 Encoding: 9669 9669 Width: 600 Flags: W EndChar StartChar: uni25C6 Encoding: 9670 9670 Width: 600 Flags: W Fore 300 0 m 25 35 265 l 25 300 530 l 25 565 265 l 25 300 0 l 25 EndSplineSet EndChar StartChar: uni25C7 Encoding: 9671 9671 Width: 600 Flags: W DStem: 35 265 160 265 300 0 300 125 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 440 265 565 265 300 125 300 0 Fore 300 125 m 25 440 265 l 25 300 405 l 25 160 265 l 25 300 125 l 25 300 0 m 25 35 265 l 25 300 530 l 25 565 265 l 25 300 0 l 25 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: uni25C9 Encoding: 9673 9673 Width: 600 Flags: W HStem: -2 84<289 305> 168 196<289 305> 448 84<289 321> VStem: 33 84<254 286> 202 196<254 270> 483 84<254 270> Fore 302 364 m 4 354 364 398 319 398 266 c 4 398 212 354 168 300 168 c 4 246 168 202 212 202 267 c 4 202 321 246 364 302 364 c 4 303 532 m 0 448 532 567 411 567 265 c 0 567 118 447 -2 300 -2 c 0 152 -2 33 118 33 267 c 0 33 415 155 532 303 532 c 0 303 448 m 0 199 448 117 367 117 267 c 0 117 164 198 82 300 82 c 0 401 82 483 164 483 265 c 0 483 365 400 448 303 448 c 0 EndSplineSet MinimumDistance: x5,-1 EndChar StartChar: lozenge Encoding: 9674 9674 Width: 600 Flags: HMW HStem: -19 20 573 20<299 299> Fore 299 593 m 1 529 288 l 1 299 -19 l 1 72 289 l 1 299 593 l 1 299 468 m 1 177 288 l 1 300 109 l 1 423 288 l 1 299 468 l 1 EndSplineSet EndChar StartChar: circle Encoding: 9675 9675 Width: 600 Flags: W HStem: -2 84<289 305> 448 84<289 321> VStem: 33 84<254 286> 483 84<254 270> Fore 303 532 m 0 448 532 567 411 567 265 c 0 567 118 447 -2 300 -2 c 0 152 -2 33 118 33 267 c 0 33 415 155 532 303 532 c 0 303 448 m 0 199 448 117 367 117 267 c 0 117 164 198 82 300 82 c 0 401 82 483 164 483 265 c 0 483 365 400 448 303 448 c 0 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni25CD Encoding: 9677 9677 Width: 600 Flags: W HStem: -2 84<289 305> 448 84<289 305> VStem: 33 84<254 270> 184 88<124 406> 328 88<125 405> 483 84<254 270> Fore 303 532 m 0 448 532 567 411 567 265 c 0 567 118 447 -2 300 -2 c 0 152 -2 33 118 33 267 c 0 33 415 155 532 303 532 c 0 184 123 m 1 184 407 l 1 143 373 117 323 117 267 c 0 117 209 143 157 184 123 c 1 272 84 m 1 281 83 290 82 300 82 c 0 310 82 319 83 328 84 c 1 328 446 l 1 320 447 311 448 303 448 c 0 292 448 282 447 272 446 c 1 272 84 l 1 416 406 m 1 416 124 l 1 457 157 483 208 483 265 c 0 483 321 457 373 416 406 c 1 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: H18533 Encoding: 9679 9679 Width: 600 Flags: W HStem: -2 534<289 321> VStem: 33 534<254 286> Fore 303 532 m 0 448 532 567 411 567 265 c 0 567 118 447 -2 300 -2 c 0 152 -2 33 118 33 267 c 0 33 415 155 532 303 532 c 0 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni25D0 Encoding: 9680 9680 Width: 600 Flags: W HStem: -2 84<300.125 319.182> 448 84<300 321> VStem: 33 267<254 286> 483 84<254 270> Fore 303 532 m 0 448 532 567 411 567 265 c 0 567 118 447 -2 300 -2 c 0 152 -2 33 118 33 267 c 0 33 415 155 532 303 532 c 0 300 448 m 1 300 82 l 1 401 82 483 164 483 265 c 0 483 365 400 448 303 448 c 2 303 448 301 448 300 448 c 1 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni25D1 Encoding: 9681 9681 Width: 600 Flags: W HStem: -2 84<280.818 299.875> 448 84<279 300> VStem: 33 84<254 270> 300 267<254 286> Ref: 9680 N -1 0 0 1 600 0 EndChar StartChar: uni25D2 Encoding: 9682 9682 Width: 600 Flags: W Ref: 9680 N 0 -1 1 0 35 565 EndChar StartChar: uni25D3 Encoding: 9683 9683 Width: 600 Flags: W Ref: 9680 N 0 1 -1 0 565 -35 EndChar StartChar: uni25D4 Encoding: 9684 9684 Width: 600 Flags: W HStem: -2 84<289 305> 266 266<296 305> 447.997 84.0029<289 295> VStem: 33 84<254 270> 296 271<266 286> 482.997 83.6996<254 265> Fore 297 532 m 0 445 532 567 415 567 267 c 0 567 118 448 -2 300 -2 c 0 153 -2 33 118 33 265 c 0 33 411 152 532 297 532 c 0 482.997 266 m 1 296 266 l 1 296 447.997 l 1 199.431 447.429 117 364.656 117 265 c 0 117 164 199 82 300 82 c 0 401.67 82 482.476 163.47 482.997 266 c 1 EndSplineSet EndChar StartChar: uni25D5 Encoding: 9685 9685 Width: 600 Flags: W HStem: -2 270<289 299> 448 83.6497<289 299> VStem: 33.0074 83.9926<268.125 285.399> 300 266.97<268 288.272> Fore 303 532 m 0 448 532 567 411 567 265 c 0 567 118 447 -2 300 -2 c 0 152 -2 33 118 33 267 c 0 33 415 155 532 303 532 c 0 117 268 m 1 300 268 l 1 300 448 l 1 198 446 118 367 117 268 c 1 EndSplineSet EndChar StartChar: uni25D6 Encoding: 9686 9686 Width: 600 Flags: W HStem: 0 530<291 299> VStem: 35 265<256 288> Fore 300 0 m 0 152 0 35 119 35 267 c 0 35 413 151 530 300 530 c 1 300 0 l 0 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni25D7 Encoding: 9687 9687 Width: 600 Flags: W HStem: 0 530<303 311> VStem: 302 265<256 288> Ref: 9686 N -1 0 0 1 602 0 EndChar StartChar: invbullet Encoding: 9688 9688 Width: 600 Flags: W HStem: -200 368<288 304> 364 436<288 304> VStem: 0 202<264 280> 0 600<-199 168 364 799> 398 202<251.911 269> Fore 0 800 m 25 600 800 l 25 600 -200 l 25 0 -200 l 25 0 800 l 25 302 364 m 0 246 364 202 321 202 267 c 0 202 212 246 168 300 168 c 0 354 168 398 212 398 266 c 0 398 319 354 364 302 364 c 0 EndSplineSet EndChar StartChar: invcircle Encoding: 9689 9689 Width: 600 Flags: W HStem: 0 31<288 320> 115 366<288 305> 565 35<288 320> VStem: 0 33<288 320> 117 366<288 304> 567 33<288 320> Fore 0 0 m 25 0 600 l 25 600 600 l 25 600 0 l 25 0 0 l 25 303 565 m 0 155 565 33 448 33 300 c 0 33 151 152 31 300 31 c 0 447 31 567 151 567 298 c 0 567 444 448 565 303 565 c 0 303 481 m 0 400 481 483 398 483 298 c 0 483 197 401 115 300 115 c 0 198 115 117 197 117 300 c 0 117 400 199 481 303 481 c 0 EndSplineSet EndChar StartChar: uni25E2 Encoding: 9698 9698 Width: 600 Flags: W HStem: 0 21G<50 550> Fore 550 500 m 25 550 0 l 25 50 0 l 25 550 500 l 25 EndSplineSet EndChar StartChar: uni25E3 Encoding: 9699 9699 Width: 600 Flags: W HStem: 0 21<50 550> Ref: 9698 N -1 0 0 1 600 0 EndChar StartChar: uni25E4 Encoding: 9700 9700 Width: 600 Flags: W HStem: 479 21<50 550> Ref: 9698 N -1 0 0 -1 600 500 EndChar StartChar: uni25E5 Encoding: 9701 9701 Width: 600 Flags: W HStem: 479 21<50 550> Ref: 9698 N 1 0 0 -1 0 500 EndChar StartChar: openbullet Encoding: 9702 9702 Width: 600 Flags: W HStem: 138 60<288.385 304> 334 60<299 302 302.063 313.722> VStem: 172 60<265 269> 368 60<254.539 269> Fore 302 394 m 0 372 393 428 336 428 266 c 0 428 195 371 138 300 138 c 0 229 138 172 196 172 267 c 0 172 338 230 394 302 394 c 0 302 334 m 0 262 334 232 304 232 267 c 0 232 228 263 198 300 198 c 0 337 198 368 229 368 266 c 0 368 302 336 335 302 334 c 0 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni25E7 Encoding: 9703 9703 Width: 600 Flags: W HStem: 0 88<301 461> 412 88<301 461> VStem: 50 250<89 411> 462 88<89 411> Fore 300 88 m 25 462 88 l 25 462 412 l 25 300 412 l 25 300 88 l 25 50 0 m 25 50 500 l 25 550 500 l 25 550 0 l 25 50 0 l 25 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: uni25E8 Encoding: 9704 9704 Width: 600 Flags: W HStem: 412 88<139 299 139 299> VStem: 50 88<89 411> 300 250<89 411> Ref: 9703 N -1 0 0 -1 600 500 EndChar StartChar: uni25E9 Encoding: 9705 9705 Width: 600 Flags: W HStem: 0 88<139 461> VStem: 462 88<89 411> Fore 138 88 m 25 462 88 l 25 462 412 l 25 138 88 l 25 50 0 m 25 50 500 l 25 550 500 l 25 550 0 l 25 50 0 l 25 EndSplineSet MinimumDistance: x5,-1 EndChar StartChar: uni25EA Encoding: 9706 9706 Width: 600 Flags: W HStem: 412 88<139 461> VStem: 50 88<89 411> Ref: 9705 N -1 0 0 -1 600 500 EndChar StartChar: uni25EB Encoding: 9707 9707 Width: 600 Flags: W HStem: 0 88<139 255 345 461> 412 88<139 255 345 461> VStem: 50 88<89 411> 256 88<89 411> 462 88<89 411> Fore 50 0 m 25 50 500 l 25 550 500 l 25 550 0 l 25 50 0 l 25 256 412 m 1 138 412 l 9 138 88 l 17 256 88 l 1 256 412 l 1 344 412 m 1 344 88 l 1 462 88 l 9 462 412 l 17 344 412 l 1 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: uni25EC Encoding: 9708 9708 Width: 600 Flags: W HStem: 0 88<190 410> 110 88<299 307> VStem: 256 88<144.75 160> DStem: 300 278 301 454 411 88 565 0 301 454 300 278 35 0 189 88 Fore 301 198 m 0 324 198 344 177 344 154 c 0 344 130 324 110 300 110 c 0 276 110 256 130 256 154 c 0 256 179 276 198 301 198 c 0 411 88 m 1 300 278 l 1 189 88 l 1 411 88 l 1 565 0 m 1 35 0 l 1 301 454 l 1 565 0 l 1 EndSplineSet MinimumDistance: x7,-1 EndChar StartChar: uni25ED Encoding: 9709 9709 Width: 600 Flags: W HStem: 0 88<301 410> DStem: 300 278 301 454 411 88 565 0 Fore 411 88 m 1 300 278 l 1 300 88 l 1 411 88 l 1 565 0 m 1 35 0 l 1 301 454 l 1 565 0 l 1 EndSplineSet MinimumDistance: x3,-1 EndChar StartChar: uni25EE Encoding: 9710 9710 Width: 600 Flags: W HStem: 0 88<190 299> DStem: 299 454 300 278 35 0 189 88 Ref: 9709 N -1 0 0 1 600 0 EndChar StartChar: uni25F0 Encoding: 9712 9712 Width: 600 Flags: W HStem: 0 88<139 461> 206 88<139 255> 412 88<139 255 345 461> VStem: 50 88<89 206 295 411> 256 88<295 411> 462 88<89 411> Fore 50 0 m 25 50 500 l 25 550 500 l 25 550 0 l 25 50 0 l 25 344 412 m 1 344 206 l 1 138 206 l 1 138 88 l 9 462 88 l 25 462 412 l 17 344 412 l 1 256 412 m 1 138 412 l 1 138 294 l 1 256 294 l 1 256 412 l 1 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: uni25F1 Encoding: 9713 9713 Width: 600 Flags: W HStem: 412 88<139 255 139 255 139 461 345 461> VStem: 50 88<89 205 294 411> 256 88<89 205> 462 88<89 411> Ref: 9712 N 1 0 0 -1 0 500 EndChar StartChar: uni25F2 Encoding: 9714 9714 Width: 600 Flags: W HStem: 412 88<139 255 139 461 345 461 345 461> VStem: 462 88<89 411 89 205 89 205 294 411> Ref: 9712 N -1 -0 0 -1 600 500 EndChar StartChar: uni25F3 Encoding: 9715 9715 Width: 600 Flags: W HStem: 0 88<139 461> 206 88<345 461> 412 88<139 255 345 461> VStem: 462 88<89 411 89 206 295 411 295 411> Ref: 9712 N -1 0 0 1 600 0 EndChar StartChar: uni25F4 Encoding: 9716 9716 Width: 600 Flags: W HStem: -2 84<289 305> 224 88<124 255> 224 308<289 321> VStem: 256 88<313 441> 483 84<254 270> Fore 303 532 m 0 448 532 567 411 567 265 c 0 567 118 447 -2 300 -2 c 0 152 -2 33 118 33 267 c 0 33 415 155 532 303 532 c 0 123 312 m 1 256 312 l 1 256 442 l 1 190 426 139 376 123 312 c 1 122 224 m 1 141 142 213 82 300 82 c 0 401 82 483 164 483 265 c 0 483 351 422 424 344 443 c 1 344 224 l 1 122 224 l 1 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni25F5 Encoding: 9717 9717 Width: 600 Flags: W HStem: -2 308<289 321> 218 88<124 255> 448 84<289 305> VStem: 256 88<89 217> 483 84<260 276> Ref: 9716 N 1 0 0 -1 0 530 EndChar StartChar: uni25F6 Encoding: 9718 9718 Width: 600 Flags: W HStem: -2 308<279 311> 218 88<345 476> 448 84<295 311> VStem: 33 84<260 276> 256 88<89 217> Ref: 9716 N -1 -0 0 -1 600 530 EndChar StartChar: uni25F7 Encoding: 9719 9719 Width: 600 Flags: W HStem: -2 84<295 311> 224 88<345 476> 224 308<279 311> VStem: 33 84<254 270> 256 88<313 441> Ref: 9716 N -1 0 0 1 600 0 EndChar StartChar: uni2607 Encoding: 9735 9735 Width: 600 Flags: W HStem: 0 89<248 264> 0 220<384 386 386.031 396.715> VStem: 342 88<152 179> DStem: 88 281 212 281 279.57 88.709 342 151 354 547 417 485 88 281 212 281 Fore 279.57 88.709 m 1 88 281 l 1 354 547 l 2 371 564 400 564 417 547 c 0 434 530 434 502 417 485 c 2 212 281 l 1 342 151 l 1 342 177 l 2 342 201 362 220 386 220 c 0 410 221 430 201 430 176 c 2 430 0 l 1 255 0 l 2 229 0 209 20 210 45 c 0 210 69 230.002 89.2725 254 89 c 2 279.57 88.709 l 1 EndSplineSet MinimumDistance: x9,-1 EndChar StartChar: uni2608 Encoding: 9736 9736 Width: 600 Flags: W HStem: 0 89<371 387> 0 220<499 508 508.031 518.715> 484 88<171 412> VStem: 83 88<14.6074 483> 464 88<152 179> DStem: 210 281 334 281 401.57 88.709 464 151 413 484 539 485 210 281 334 281 Fore 561 528 m 0 561 510.883 549.97 495.97 539 485 c 2 334 281 l 1 464 151 l 1 464 177 l 2 464 201 484 220 508 220 c 0 532 221 552 201 552 176 c 2 552 0 l 1 377 0 l 2 351 0 331 20 332 45 c 0 332 69 352.002 89.2725 376 89 c 2 401.57 88.709 l 1 210 281 l 1 413 484 l 1 171 484 l 1 171 24 l 2 171 -0.288086 151.288 -20 127 -20 c 0 102.712 -20 83 -0.288086 83 24 c 2 83 572 l 1 517 572 l 2 541.288 572 561 552.288 561 528 c 0 EndSplineSet MinimumDistance: x6,-1 y14,17 y14,15 EndChar StartChar: uni2609 Encoding: 9737 9737 Width: 600 Flags: W HStem: -2 84<289 305> 216.02 99.96<299 305> 448 84<289 321> VStem: 33 84<254 286> 250.02 99.96<264 270> 483 84<254 270> Fore 301.02 315.98 m 4 327.54 315.98 349.98 293.03 349.98 266 c 4 349.98 238.46 327.54 216.02 300 216.02 c 4 272.46 216.02 250.02 238.46 250.02 266.51 c 4 250.02 294.05 272.46 315.98 301.02 315.98 c 4 303 532 m 0 448 532 567 411 567 265 c 0 567 118 447 -2 300 -2 c 0 152 -2 33 118 33 267 c 0 33 415 155 532 303 532 c 0 303 448 m 0 199 448 117 367 117 267 c 0 117 164 198 82 300 82 c 0 401 82 483 164 483 265 c 0 483 365 400 448 303 448 c 0 EndSplineSet MinimumDistance: x5,-1 EndChar StartChar: uni2630 Encoding: 9776 9776 Width: 600 Flags: W HStem: 0 100<51 549> 200 100<51 549> 400 100<51 549> VStem: 50 500<1 99 201 299 401 499> Fore 50 0 m 25 50 100 l 25 550 100 l 25 550 0 l 25 50 0 l 25 50 200 m 25 50 300 l 25 550 300 l 25 550 200 l 25 50 200 l 25 50 400 m 25 50 500 l 25 550 500 l 25 550 400 l 25 50 400 l 25 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: uni2631 Encoding: 9777 9777 Width: 600 Flags: W HStem: 0 100<51 549> 200 100<51 549> 400 100<51 249 351 549> VStem: 50 200<401 499> 350 200<401 499> Fore 350 400 m 5 350 500 l 1 550 500 l 9 550 400 l 17 350 400 l 5 250 500 m 1 250 400 l 1 50 400 l 9 50 500 l 17 250 500 l 1 50 0 m 25 50 100 l 25 550 100 l 25 550 0 l 25 50 0 l 25 50 200 m 25 50 300 l 25 550 300 l 25 550 200 l 25 50 200 l 25 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: uni2632 Encoding: 9778 9778 Width: 600 Flags: W HStem: 0 100<51 549> 200 100<51 249 351 549> 400 100<51 549> VStem: 50 200<201 299> 350 200<201 299> Fore 50 0 m 25 50 100 l 25 550 100 l 25 550 0 l 25 50 0 l 25 350 200 m 1 350 300 l 1 550 300 l 9 550 200 l 17 350 200 l 1 250 300 m 1 250 200 l 1 50 200 l 9 50 300 l 17 250 300 l 1 50 400 m 25 50 500 l 25 550 500 l 25 550 400 l 25 50 400 l 25 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: uni2633 Encoding: 9779 9779 Width: 600 Flags: W HStem: 0 100<51 549> 200 100<51 249 351 549> 400 100<51 249 351 549> VStem: 50 200<201 299 401 499> 350 200<201 299 401 499> Fore 350 400 m 1 350 500 l 1 550 500 l 9 550 400 l 17 350 400 l 1 250 500 m 1 250 400 l 1 50 400 l 9 50 500 l 17 250 500 l 1 350 200 m 1 350 300 l 1 550 300 l 9 550 200 l 17 350 200 l 1 250 300 m 1 250 200 l 1 50 200 l 9 50 300 l 17 250 300 l 1 50 0 m 25 50 100 l 25 550 100 l 25 550 0 l 25 50 0 l 25 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: uni2634 Encoding: 9780 9780 Width: 600 Flags: W HStem: 0 100<51 249 351 549> 200 100<51 549> 400 100<51 549> VStem: 50 200<1 99> 350 200<1 99> Fore 250 100 m 1 250 0 l 1 50 0 l 9 50 100 l 17 250 100 l 1 350 0 m 1 350 100 l 1 550 100 l 9 550 0 l 17 350 0 l 1 550 500 m 25 550 400 l 25 50 400 l 25 50 500 l 25 550 500 l 25 550 300 m 25 550 200 l 25 50 200 l 25 50 300 l 25 550 300 l 25 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: uni2635 Encoding: 9781 9781 Width: 600 Flags: W HStem: 0 100<51 249 351 549> 200 100<51 549> 400 100<51 249 351 549> VStem: 50 200<1 99 401 499> 350 200<1 99 401 499> Fore 350 400 m 1 350 500 l 1 550 500 l 9 550 400 l 17 350 400 l 1 250 500 m 1 250 400 l 1 50 400 l 9 50 500 l 17 250 500 l 1 350 0 m 1 350 100 l 1 550 100 l 9 550 0 l 17 350 0 l 1 250 100 m 1 250 0 l 1 50 0 l 9 50 100 l 17 250 100 l 1 50 200 m 25 50 300 l 25 550 300 l 25 550 200 l 25 50 200 l 25 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: uni2636 Encoding: 9782 9782 Width: 600 Flags: W HStem: 0 100<51 249 351 549> 200 100<51 249 351 549> 400 100<51 549> VStem: 50 200<1 99 201 299> 350 200<1 99 201 299> Fore 350 100 m 1 550 100 l 9 550 0 l 17 350 0 l 1 350 100 l 1 250 0 m 1 50 0 l 9 50 100 l 17 250 100 l 1 250 0 l 1 350 300 m 1 550 300 l 9 550 200 l 17 350 200 l 1 350 300 l 1 250 200 m 1 50 200 l 9 50 300 l 17 250 300 l 1 250 200 l 1 50 500 m 25 550 500 l 25 550 400 l 25 50 400 l 25 50 500 l 25 EndSplineSet MinimumDistance: x1,-1 EndChar StartChar: uni2637 Encoding: 9783 9783 Width: 600 Flags: W HStem: 0 100<51 249 351 549> 200 100<51 249 351 549> 400 100<51 249 351 549> VStem: 50 200<1 99 201 299 401 499> 350 200<1 99 201 299 401 499> Fore 350 400 m 1 350 500 l 1 550 500 l 9 550 400 l 17 350 400 l 1 250 500 m 1 250 400 l 1 50 400 l 9 50 500 l 17 250 500 l 1 350 200 m 1 350 300 l 1 550 300 l 9 550 200 l 17 350 200 l 1 250 300 m 1 250 200 l 1 50 200 l 9 50 300 l 17 250 300 l 1 350 0 m 1 350 100 l 1 550 100 l 9 550 0 l 17 350 0 l 1 250 100 m 1 250 0 l 1 50 0 l 9 50 100 l 17 250 100 l 1 EndSplineSet MinimumDistance: x2,-1 EndChar StartChar: uni2639 Encoding: 9785 9785 Width: 600 Flags: W HStem: -2 84<289 305> 230 51<289 305> 284.04 99.96<217 225 377 385> 448 84<289 321> VStem: 33 84<254 286> 169 99.96<333 336> 329 99.96<333 336> 483 84<254 283> Fore 380 384 m 0 406.52 384 428.96 361.05 428.96 334.02 c 0 428.96 306.48 406.52 284.04 378.98 284.04 c 0 351.44 284.04 329 306.48 329 334.53 c 0 329 362.07 351.44 384 380 384 c 0 220 384 m 0 246.52 384 268.96 361.05 268.96 334.02 c 0 268.96 306.48 246.52 284.04 218.98 284.04 c 0 191.44 284.04 169 306.48 169 334.53 c 0 169 362.07 191.44 384 220 384 c 0 194.25 143 m 0 179.25 143 168.75 154.25 168.75 171.5 c 0 168.75 228.5 231 281 300 281 c 0 369 281 431.25 228.5 431.25 171.5 c 0 431.25 154.25 420.75 143 405.75 143 c 0 390.75 143 385.5 149.75 380.25 173 c 0 372.75 207.5 341.25 230 300 230 c 0 258.75 230 227.25 207.5 219.75 173 c 0 214.5 149.75 209.25 143 194.25 143 c 0 303 532 m 0 448 532 567 411 567 265 c 0 567 118 447 -2 300 -2 c 0 152 -2 33 118 33 267 c 0 33 415 155 532 303 532 c 0 303 448 m 0 199 448 117 367 117 267 c 0 117 164 198 82 300 82 c 0 401 82 483 164 483 265 c 0 483 365 400 448 303 448 c 0 EndSplineSet MinimumDistance: x17,-1 EndChar StartChar: smileface Encoding: 9786 9786 Width: 600 Flags: W HStem: -2 84<289 305> 111 51<289 305> 284.04 99.96<217 225 377 385> 448 84<289 321> VStem: 33 84<248 286> 169 99.96<333 336> 329 99.96<333 336> 483 84<248 283> Fore 380 384 m 0 406.52 384 428.96 361.05 428.96 334.02 c 0 428.96 306.48 406.52 284.04 378.98 284.04 c 0 351.44 284.04 329 306.48 329 334.53 c 0 329 362.07 351.44 384 380 384 c 0 220 384 m 0 246.52 384 268.96 361.05 268.96 334.02 c 0 268.96 306.48 246.52 284.04 218.98 284.04 c 0 191.44 284.04 169 306.48 169 334.53 c 0 169 362.07 191.44 384 220 384 c 0 194.25 249 m 0 209.25 249 214.5 242.25 219.75 219 c 0 227.25 184.5 258.75 162 300 162 c 0 341.25 162 372.75 184.5 380.25 219 c 0 385.5 242.25 390.75 249 405.75 249 c 0 420.75 249 431.25 237.75 431.25 220.5 c 0 431.25 163.5 369 111 300 111 c 0 231 111 168.75 163.5 168.75 220.5 c 0 168.75 237.75 179.25 249 194.25 249 c 0 303 532 m 0 448 532 567 411 567 265 c 0 567 118 447 -2 300 -2 c 0 152 -2 33 118 33 267 c 0 33 415 155 532 303 532 c 0 303 448 m 0 199 448 117 367 117 267 c 0 117 164 198 82 300 82 c 0 401 82 483 164 483 265 c 0 483 365 400 448 303 448 c 0 EndSplineSet MinimumDistance: x17,-1 EndChar StartChar: invsmileface Encoding: 9787 9787 Width: 600 Flags: W HStem: -2 96<289 305> 158 374<289 305> VStem: 269 60<333 337> 464 103<231 265> Fore 380 384 m 0 351 384 329 362 329 335 c 0 329 306 351 284 379 284 c 0 407 284 429 306 429 334 c 0 429 361 407 384 380 384 c 0 220 384 m 0 191 384 169 362 169 335 c 0 169 306 191 284 219 284 c 0 247 284 269 306 269 334 c 0 269 361 247 384 220 384 c 0 168 266 m 0 149 266 136 252 136 231 c 0 136 159 214 94 300 94 c 0 386 94 464 159 464 231 c 0 464 252 451 266 432 266 c 0 413 266 407 258 400 229 c 0 391 186 352 158 300 158 c 0 248 158 209 186 200 229 c 0 193 258 187 266 168 266 c 0 303 532 m 0 448 532 567 411 567 265 c 0 567 118 447 -2 300 -2 c 0 152 -2 33 118 33 267 c 0 33 415 155 532 303 532 c 0 EndSplineSet MinimumDistance: x17,-1 EndChar StartChar: uni2669 Encoding: 9833 9833 Width: 600 Flags: W HStem: -17 168<208 224> VStem: 248 84<150 543> Fore 248 149 m 1 248 541 l 1 248 564 267 583 290 583 c 0 313 583 332 564 332 541 c 1 332 70 l 2 332 14 278 -17 222 -17 c 24 166 -17 112 14 112 70 c 16 112 127 167 151 222 151 c 16 231 151 239 150 248 149 c 1 EndSplineSet MinimumDistance: x3,-1 EndChar StartChar: musicalnote Encoding: 9834 9834 Width: 600 Flags: W HStem: -17 168<208 224> VStem: 248 84<150 350 486 543> 438 84<182.921 192> Fore 248 149 m 1 248 541 l 2 248 564 267 583 290 583 c 0 313 583 332 564 332 541 c 2 332 486 l 1 350 375 506 452 522 192 c 1 522 169 503 150 480 150 c 0 457 150 438 169 438 192 c 1 449 313 388 314 332 351 c 1 332 70 l 2 332 14 278 -17 222 -17 c 24 166 -17 112 14 112 70 c 16 112 127 167 151 222 151 c 16 231 151 239 150 248 149 c 1 EndSplineSet MinimumDistance: x5,-1 Back 270 123.644 m 1 270 556 l 1 310 556 l 1 310 517.398 l 1 317.811 338.186 489.957 433.37 498 188 c 1 458 188 l 1 464.095 343.982 310 496.939 310 401.968 c 2 310 64 l 10 310 20.4756 265.524 0 222 0 c 24 178.476 0 134.939 20.4853 134 64 c 24 133.029 108.968 177.021 134 222 134 c 16 238.92 134 255.7 130.458 270 123.644 c 1 EndSplineSet EndChar StartChar: musicalnotedbl Encoding: 9835 9835 Width: 600 Flags: W HStem: -17 168<400 416> 111 168<144 160> VStem: 184 84<278 441> 440 84<150 367> DStem: 268 442 184 570 440 367 524 422 Fore 524 422 m 1 524 70 l 2 524 14 470 -17 414 -17 c 24 358 -17 304 14 304 70 c 16 304 127 359 151 414 151 c 16 423 151 431 150 440 149 c 1 440 367 l 1 268 442 l 1 268 198 l 2 268 142 214 111 158 111 c 24 102 111 48 142 48 198 c 16 48 255 103 279 158 279 c 16 167 279 175 278 184 277 c 1 184 570 l 1 524 422 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: uni266C Encoding: 9836 9836 Width: 600 Flags: W HStem: -17 168<400 416> 111 168<144 160> VStem: 184 84<278 297 389 441> 440 84<150 223 315 367> DStem: 268 442 184 570 440 367 524 422 Fore 524 422 m 1 524 70 l 2 524 14 470 -17 414 -17 c 24 358 -17 304 14 304 70 c 16 304 127 359 151 414 151 c 16 423 151 431 150 440 149 c 1 440 223 l 1 268 298 l 1 268 198 l 2 268 142 214 111 158 111 c 24 102 111 48 142 48 198 c 16 48 255 103 279 158 279 c 16 167 279 175 278 184 277 c 1 184 570 l 1 524 422 l 1 268 389 m 1 440 314 l 1 440 367 l 1 268 442 l 1 268 389 l 1 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: dotlessj Encoding: 63166 63166 Width: 600 Flags: W HStem: -205 100<165 309> 337 100<165 387> VStem: 388 100<-29 337> Fore 388 337 m 1 186 337 l 2 161 337 150 339 141 347 c 1 128 356 120 372 120 387 c 0 120 404 129 421 144 430 c 0 153 436 160 437 186 437 c 2 488 437 l 1 488 -20 l 2 488 -125 406 -205 297 -205 c 2 183 -205 l 2 158 -205 147 -203 138 -195 c 1 125 -186 117 -170 117 -155 c 0 117 -138 127 -121 141 -112 c 0 150 -106 158 -105 183 -105 c 2 294 -105 l 2 351 -105 388 -72 388 -20 c 2 388 337 l 1 EndSplineSet MinimumDistance: x6,-1 EndChar StartChar: commaaccent Encoding: 63171 63171 Width: 600 Flags: W DStem: 277 -85 338 -126 195 -211 256 -252 Fore 338 -126 m 2 256 -252 l 2 243 -272 234 -278 220 -278 c 0 200 -278 183 -262 183 -243 c 0 183 -234 187 -223 195 -211 c 2 277 -85 l 2 290 -65 299 -59 315 -59 c 0 335 -59 351 -76 351 -96 c 0 351 -103 346 -114 338 -126 c 2 EndSplineSet MinimumDistance: x0,-1 EndChar StartChar: ff Encoding: 64256 64256 Width: 600 Flags: W HStem: 0 100<34 95 196 242 370 421 522 562> 337 100<33.6442 95 196 242 370 421 522 562> 524 99<227 242 553 562> VStem: -10 304<384 389> 95 100<100 337 437 480> 316 304<384 389> 421 100<100 337 437 480> Fore 195 337 m 1 195 100 l 1 228 100 l 2 255 100 263 98 273 91 c 0 286 81 294 66 294 50 c 0 294 33 285 17 270 7 c 0 263 3 248 0 228 0 c 2 53 0 l 2 29 0 16 3 7 10 c 0 -6 19 -14 34 -14 50 c 0 -14 67 -5 84 10 93 c 0 19 99 26 100 53 100 c 2 95 100 l 1 95 337 l 1 57 337 l 2 31 337 21 339 11 347 c 0 -2 356 -10 371 -10 387 c 0 -10 404 -1 421 14 430 c 0 23 436 30 437 57 437 c 2 95 437 l 1 95 476 l 2 95 558 155 623 231 623 c 0 267 623 310 612 330 599 c 0 344 590 352 575 352 559 c 0 352 531 330 508 303 508 c 0 294 508 290 509 273 515 c 0 257 521 244 524 234 524 c 0 213 524 195 502 195 476 c 2 195 437 l 1 228 437 l 2 255 437 263 435 273 428 c 0 286 418 294 403 294 387 c 0 294 370 285 354 270 344 c 0 262 339 251 337 228 337 c 2 195 337 l 1 521 337 m 1 521 100 l 1 554 100 l 2 581 100 589 98 599 91 c 0 612 81 620 66 620 50 c 0 620 33 611 17 596 7 c 0 589 3 574 0 554 0 c 2 379 0 l 2 355 0 342 3 333 10 c 0 320 19 312 34 312 50 c 0 312 67 321 84 336 93 c 0 345 99 352 100 379 100 c 2 421 100 l 1 421 337 l 1 383 337 l 2 357 337 347 339 337 347 c 0 324 356 316 371 316 387 c 0 316 404 325 421 340 430 c 0 349 436 356 437 383 437 c 2 421 437 l 1 421 476 l 2 421 558 481 623 557 623 c 0 593 623 636 612 656 599 c 0 670 590 678 575 678 559 c 0 678 531 656 508 629 508 c 0 620 508 616 509 599 515 c 0 583 521 570 524 560 524 c 0 539 524 521 502 521 476 c 2 521 437 l 1 554 437 l 2 581 437 589 435 599 428 c 0 612 418 620 403 620 387 c 0 620 370 611 354 596 344 c 0 588 339 577 337 554 337 c 2 521 337 l 1 EndSplineSet MinimumDistance: x34,-1 Ligature: f f EndChar StartChar: fi Encoding: 64257 64257 Width: 600 Flags: W HStem: 0 100<34 94 196 242 370 416 517 562> 337 100<33.6442 94 196 242 378 416> 519 105<383 499> 524 99<227 242> VStem: -10 304<384 389> 95 100<100 337 437 480> 382 118<520 623> 417 100<100 337> Fore 195 337 m 1 195 100 l 1 228 100 l 2 255 100 263 98 273 91 c 0 286 81 294 66 294 50 c 0 294 33 285 17 270 7 c 0 263 3 248 0 228 0 c 2 53 0 l 2 29 0 16 3 7 10 c 0 -6 19 -14 34 -14 50 c 4 -14 67 -5 84 10 93 c 0 19 99 26 100 53 100 c 2 95 100 l 1 95 337 l 1 57 337 l 2 31 337 21 339 11 347 c 0 -2 356 -10 371 -10 387 c 0 -10 404 -1 421 14 430 c 0 23 436 30 437 57 437 c 2 95 437 l 1 95 476 l 2 95 558 155 623 231 623 c 0 267 623 310 612 330 599 c 0 344 590 352 575 352 559 c 0 352 531 330 508 303 508 c 0 294 508 290 509 273 515 c 0 257 521 244 524 234 524 c 0 213 524 195 502 195 476 c 2 195 437 l 1 228 437 l 2 255 437 263 435 273 428 c 0 286 418 294 403 294 387 c 0 294 370 285 354 270 344 c 0 262 339 251 337 228 337 c 2 195 337 l 1 517 437 m 1 517 100 l 1 553 100 l 2 580 100 589 98 599 91 c 0 612 81 619 66 619 50 c 0 619 33 610 16 595 7 c 0 588 3 573 0 553 0 c 2 379 0 l 2 355 0 342 3 333 10 c 0 320 19 312 34 312 50 c 0 312 67 321 84 336 93 c 0 345 99 352 100 379 100 c 2 417 100 l 1 417 337 l 1 397 337 l 2 372 337 362 339 352 347 c 0 339 356 331 371 331 387 c 0 331 404 340 421 355 430 c 0 364 436 371 437 397 437 c 2 517 437 l 1 500 624 m 1 500 519 l 1 382 519 l 1 382 624 l 1 500 624 l 1 EndSplineSet MinimumDistance: x34,-1 x52,35 y35,52 y35,34 Ligature: f i EndChar StartChar: fl Encoding: 64258 64258 Width: 600 Flags: W HStem: 0 100<31 91 193 239 367 412 513 559> 337 100<31.4927 92 193 239> 523 100<223 239 374 412> VStem: -12 303<384 389> 92 100<100 337 437 480> 413 100<100 523> Fore 192 337 m 1 192 100 l 1 225 100 l 2 251 100 261 98 270 91 c 0 283 81 291 66 291 50 c 0 291 33 282 17 267 7 c 0 260 3 245 0 225 0 c 2 49 0 l 2 26 0 12 3 3 10 c 0 -9 19 -17 34 -17 50 c 0 -17 67 -8 84 7 93 c 0 16 99 23 100 49 100 c 2 92 100 l 1 92 337 l 1 55 337 l 2 29 337 19 339 9 347 c 0 -4 356 -12 371 -12 387 c 0 -12 404 -3 421 12 430 c 0 21 436 28 437 55 437 c 2 92 437 l 1 92 475 l 2 92 557 152 623 225 623 c 0 267 623 305 613 334 595 c 1 345 616 358 623 383 623 c 2 513 623 l 1 513 100 l 1 550 100 l 2 578 100 586 98 596 91 c 0 609 81 617 66 617 50 c 0 617 33 608 16 593 7 c 0 586 3 571 0 550 0 c 2 375 0 l 2 351 0 338 3 329 10 c 0 316 19 308 34 308 50 c 0 308 67 317 83 332 93 c 0 341 99 348 100 375 100 c 2 413 100 l 1 413 523 l 1 379 523 l 2 364 523 356 526 343 535 c 1 333 517 320 508 303 508 c 0 295 508 287 510 274 514 c 0 250 522 243 523 232 523 c 0 207 523 192 505 192 475 c 2 192 437 l 1 225 437 l 2 252 437 260 435 270 428 c 0 283 418 291 403 291 387 c 0 291 370 282 354 267 344 c 0 259 339 248 337 225 337 c 2 192 337 l 1 EndSplineSet MinimumDistance: x24,-1 x23,25 y25,23 y25,24 Ligature: f l EndChar EndChars EndSplineFont tvtime-1.0.11/data/COPYING.FreeMonoBold0000664000175000017500000000163512354244126014313 00000000000000The FreeMonoBold.ttf and source file FreeMonoBold.sfd comes from the freefont project. See http://www.nongnu.org/freefont/ -- freefont is a collection of free Universal Character Set outline fonts. Copyright (C) 2002 Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. tvtime-1.0.11/data/filmstrip_0004.png0000664000175000017500000000321012354244126014117 00000000000000‰PNG  IHDR''Œ£Q5bKGDÿÿÿ ½§“ pHYs  d_‘tIMEÓ -ƒP|IDATxœí˜MhS]Ç777_­I†D‹Æ6µJÅHÅY™¢]#è ³éÆ ~ ADQWŽPÝ(ÈÈÀZ°³Pì,lkeЊ…Š8U[;µJk•&–SÛ$÷+g5y›6ê;Útõþá½ç<ç<¿{¸Ïyžsá7ý˜¤oôÙ+Pl8}ú4gÏžuùýþÖ/6Çɹƒ ÃàÊ•+¿×4íÌÜö™™™‘ÆÆÆ¿ÿ?û»/0å@ð €Ø¶m›hjj_S,CCC¢ªªJdÆÌ»þü(ù50sWîÏÀŸ€_žK÷ü~¿Ÿæææ¼“uuuÑÑÑÁ›7o¾åSÿòO2«öùpB’$$i¶)NËÁ¢*ãW"ËeÍX,¶lÙÂúõë1 ƒÞÞ^ÆÇÇ æ÷û©®®Æív3>>N__©TŠ8EQ¨««ãðáèªÊÑ£Gùøñ#»ví" -:T8æöíÛTVVrùòe‚Á œ8q‚p8œ `³Ùp¹\ȲŒÕjÅáp°gÏ8×Aæø={öŒ{÷î!Ë2.—‹¢¢"ìv{ŽMN×uÚÚÚèïïÇ0 úúú$ §Ó‰Û½ .~Z.— I’æÜ¹s¸ÝnÆÆÆˆÇãyí³A!$I€ðz½¢­­í«[ÇÏèÉ“'"äøÌø]°rEEE8N„|þüyÑW+Ÿ¬V+Ë–-C–e4Mczz:»SX2FŠ¢püøq:;;ioo§¦¦fIà6nÜHKK ]]]\¼x¯×û xæF–e***غu+ªªâ÷û—Îëõ²yóf‚Á áp‡Ã±Î4MèîîFÓ4&&&–.ÒÓÓÃÈÈOŸ>%™LæµÅÅÅ¢¤¤D¬X±BØíö% EQ„ßï%%%Âãñ‹Å’? 4MC’$Òé4†axÍfeš&‰DY–Ñu='mfá¬V+{÷îeçÎèºNKK oß¾-8Üš5k8xð Ë—/§¿¿Ÿ7ndwЏ;vpäÈ4MãñãÇK¨««# ÒÑÑÁ;wÂ¥Ói¢Ñ(¤R)fff L& ‡ÃØív&''Ñu=Û—“¾®_¿Î­[·H§ÓŒÿTîüµ ¾¾»ÝN<'‹-„B011A$ÉÖU§àp‰D‚ׯ_gë¹¼!I•••ƒALÓäÅ‹hšVp8ÇCUUEEED"³~sê¹úúz:„ªª444ÐÝÝÍÀÀ÷ïß_t¨ááaTUeÆ \½z•²²2ººº8uê‘H$N’$\.^¯UU±Ùl$ š››¹yóæ¢Ã©ªÊ§OŸP·ÛÇ㡸¸‹%›î3 ƒ»wï‹ÅÐu—/_’N§‰D"Ù7)„FGG¹ví>ŸW¯^155•íË9àȲŒÅbAiš™ÃFA%I²,g3“išY.Ë\Ã¥€ù”ÇŽcÿþý¤R)yøð!‡EQݱiš$“IB¡.\ ðèÑ#ššš²{]N= …¨©©AUUZZZ(..æüùóìÞ½{Ñá9yò$>Ÿêêj‚Á ÓÓÓ8Î…p¦i266ÆóçÏQU•h4Š,Ë”••±iÓ¦E‡Ó4 EQ˜ššbpp©©)FFFPUu¡±$IÂëõŠÒÒR±zõját:—¤ž³ÙlbåÊ•¢´´Tøýþüõœ‚D"a!Ð4mÁ9²2 ƒx<ŽÅbùz='Ë2µµµèº~ûÇÑwïÞ-þÈ쯰‚)°oß>|>CCC´··g+¢¹õÜžÚÚZB¡Pï¥K—>†áYµjÕnàܼùd b±àÊËËihh ¬¬ŒÎÎNzzz>,€SUµýÌ™œÿ}©íÛ·ßþ=o>pú;>]À€Õ߃Ó4x<>iµZ;EÑÖ®]ûÏ÷ïßçÂåSkk«ÞÚÚ:ZWW—mBHÀÉïø´U@øÛ¼¾À_3Éd’ÑÑÑOëÖ­{©|ï~Ó7õ?bÆÀX$wIEND®B`‚tvtime-1.0.11/data/filmstrip_0003.png0000664000175000017500000000325212354244126014124 00000000000000‰PNG  IHDR''Œ£Q5bKGDÿÿÿ ½§“ pHYs  d_‘tIMEÓ ,8,lL7IDATxœí˜_hÛÇ?3³Én²¡]³M2«š*lû Š$ >HKs >\!$hP.úp- ¨ˆH^|JIQ ŠBÁ¥WÜ$ÛEšM¢&ÆÜ5Ù?ì&3»3§7™ëï½Åîæ¡ô ÃùýæœÏÌ™ó;ç÷ƒÿëó$ýˆÍîr¹lãããån·{ûíùÀµÕû?ß~âÙ]ÀŸ>jûð%0.IRâs`7å«×W.—ëʽ{÷¾™Ó?…Büâ?±}pÿ…$I~ °ÚÁÏB¡Ðç¼äé×À¯€¿ßµ¡¡ÙÙYdYF’$„˜¦ Г'IÒmÇCii)†a BdÌ øbõÂétRQQÃá`qq‘ééiR©””—““CSS‡B×uÚÚÚxüø1±XŒ÷ïßgœ0‰`š&555œ?UUàìÙ³¬ÍÖ‡_ǃÏçCÓ4\.‰D‚Ë—/Óßߟq¸p8ÌÒÒUUUlÛ¶ ¯×ËëׯÉÉɱ|,8Ã0$??]×™œœ$™L2<<ÌððpÆáÖ477Gww7n·›@ @<·l†‘——‡ÝnGA"‘ ™Lf jMŠ¢ŸŸ¢($“I‰Bˆô ™L®­ ÃÈ:€išhš†,ˆ‘¶-8›ÍÆØ»w/º®sãÆ FGGq8iÿA¦dËËËx½^š››)..æéӧܺu‹X,–§( ûöí£µµMÓbbb‚#GŽP[[›q¸©©).]ºÄ–-[hii¡¼¼œ¾¾>z{{×à !XXX  ¢i±XŒÜÜ\êêêhllÌ8ÜÐÐ$ fff0M“¹¹9R©”åcÁ%“I®_¿ÎÇ1M“ñññŒ}Jœ:uм¼Ÿ“'Oâõzéïïg```=œÂJ5Mcee…ååeºººèêêÊ8Üšt]gqq‘‚‚"‘HZz`%8²,‹;vPQQA*•bdddC¦uÓ¦Mìܹ“‚‚æææEÓ4) ŽÕmc­,°ÑúhÜôìK’$¶nÝj•#&''­HMPYYi•#¦¦¦¬”4­ÑÜÜÌþýûÿ‰DÞŸ;w®8ünûöíöÒÒÒŒCE£Q555\¼xÇãGhkk[_Žeù€ªªÔÕÕ}Çcóóó?/++û}KKËŸëëë­N%IRl6Û/ÿ[¸±±1Ž;†Ó餲²’òòr‚Á ‡cvÍÇ‚[YYéimm¥µµÕj:|øð ·ÛýŠŠŠûu_ÿÄØùÀoÏ9,,, ( ³³³ôôô|{ôèÑ»š¦é¥¥¥{óæ ðã•ÍOjµTÿnvÀìþò‘m 8744DCC¡PUUÃþD"‘ºvíÚJOOÏÆ”þgõo¿Íh44ýÿ¹IEND®B`‚tvtime-1.0.11/data/filmstrip_0002.png0000664000175000017500000000300012354244126014112 00000000000000‰PNG  IHDR''Œ£Q5bKGDÿÿÿ ½§“ pHYs  d_‘tIMEÓ ,*ßÕ=HIDATxœí˜ÝkTÍÇ?sÞöÅM<ÑmcJ^¡SQ*¹0PoÔ}êUÕ¯$j¥z#…â… ø¢T[¤ˆrQ´ ÛCXõ‘ƸŠdÅ yY£»Ù—³»çœéÅ“=q“hÅn¶Pú…a‡ùÍœùìì™ß|gáÿú:‰ÏĦij/^¼èjmmýÉGíaà/ õß³+Œý9ðû%m)à7À !Dák`[€®…ò;Ó4ÿdYÖ÷²~ú§”òRÊo¾F«Vt]ÿn```OKKË/\×åáÇߋſt:ý5_òSúÐlH$Þ·ommm\¼x‘îînb±§N"Nÿ½NQ”Û{öìáÈ‘#ضÍàà ñx¼ž`U à»…‚a455‰DˆD"¨ªZí³'„  ‡QU]×Wl™4M#‡ …B(в«V*• CCCLLLà8£££ K¥Rœ;wÓ4I¥Rd2™ûIEQ¤®ëR×u)„¦iÊ7nÔq?,*‘HÈööv)„š¦IÃ0¤ªªU íc:]× …BH)Éçó«»d B …Ð4R©D±XDJY ggÏžåðáÃØ¶Íñãǹÿ>¹\޹¹¹ºCe³Y<ÏcÛ¶m\¾|™ÎÎN,ËâäÉ“ÌÌÌÔÂ)ŠBSS¦iR.— ƒ ®]»Æ½{÷ê777LJèééÁ4MÖ®]Kss3š¶øcú5Çqxòä ÃÃÔJ%Þ¾}K¥Radd„‘‘‘ºÃU•N§yðà7n$‘HP(,_rùÐÿšjóüðrVóŒçyþ‹¹ÚR!RJ<ÏóÛ}8UUÙ»w/”ËenÞ¼Éøø8¡PÃ0êäº.ù|žŽŽ}ê§‘¥’Š¢HMÓ¤¦i õsªªJMÓ>ïçkÖ¬Áó<æççWwÉTuCº®S,Éçóþ±Y³!Nœ8eYܹs‡;v4®¯¯ëׯcYçÏŸgݺu~¬ÆÏuuu±eËÊå2ëׯo\ss3›6m¢³³“©©)Àr8×u™œœd||Û¶©ó}õ“Êd2$“Iæç癘˜À¶íûÉ¥¥b¥y«@5BQTUEJégéÕ–UUBø&`œªªl߾͛7ã8–e1;;‹ã8”ËåºCU*6lØÀ®]»0M“—/_Ç}«^ãçöïßïû¹wïÞqûömâñø'/ºÿ‰^¿~M>Ÿ§¯¯3gÎø~îÑ£GËáJ¥®ëþMñ®X,þȶí_Þºu+‹Åêç8Ùl×u±mÛ¶)•J5WÎó¼_ 2™Ì÷‘Hd~lll­”òWÙlöKž«ßÖ 2™LrôèQÂá0ÓÓÓ¼ÿþm5ö¹?t }I[8õoÆ…àÇ_È8 ü(î} ÜJ “N`ðSàÒ’Ø8pvIÛ 8€ 4&UüÏê_6ȉµ)ÅIEND®B`‚tvtime-1.0.11/data/Makefile.in0000664000175000017500000004204413026503062013004 00000000000000# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # data/Makefile.am distributes the shared data files tvtime needs. # Copyright (C) 2002, 2003 Billy Biggs # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = data ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc21.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intdiv0.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 $(top_srcdir)/m4/inttypes.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/isc-posix.m4 \ $(top_srcdir)/m4/lcmessage.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(dist_tvtimedata_DATA) \ $(am__DIST_COMMON) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(tvtimedatadir)" DATA = $(dist_tvtimedata_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/mkinstalldirs DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ ALSA_CFLAGS = @ALSA_CFLAGS@ ALSA_LIBS = @ALSA_LIBS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ ASOUND_LIBS = @ASOUND_LIBS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FREETYPE_CONFIG = @FREETYPE_CONFIG@ GENCAT = @GENCAT@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML2_CONFIG = @LIBXML2_CONFIG@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PNG_LIBS = @PNG_LIBS@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ X11_CFLAGS = @X11_CFLAGS@ X11_LIBS = @X11_LIBS@ XGETTEXT = @XGETTEXT@ XMKMF = @XMKMF@ XML2_FLAG = @XML2_FLAG@ XML2_LIBS = @XML2_LIBS@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ ZLIB_LIBS = @ZLIB_LIBS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ found_cc = @found_cc@ found_cxx = @found_cxx@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ tvtimedatadir = $(pkgdatadir) dist_tvtimedata_DATA = FreeMonoBold.ttf tvtimeSansBold.ttf \ filmstrip_0000.png filmstrip_0001.png filmstrip_0002.png \ filmstrip_0003.png filmstrip_0004.png infoicon_0000.png EXTRA_DIST = COPYING.tvtimeSansBold COPYING.FreeMonoBold \ tvtimeSansBold.sfd FreeMonoBold.sfd all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign data/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign data/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_tvtimedataDATA: $(dist_tvtimedata_DATA) @$(NORMAL_INSTALL) @list='$(dist_tvtimedata_DATA)'; test -n "$(tvtimedatadir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(tvtimedatadir)'"; \ $(MKDIR_P) "$(DESTDIR)$(tvtimedatadir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(tvtimedatadir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(tvtimedatadir)" || exit $$?; \ done uninstall-dist_tvtimedataDATA: @$(NORMAL_UNINSTALL) @list='$(dist_tvtimedata_DATA)'; test -n "$(tvtimedatadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(tvtimedatadir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(tvtimedatadir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_tvtimedataDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_tvtimedataDATA @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) uninstall-hook .MAKE: install-am install-strip uninstall-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-dist_tvtimedataDATA install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-dist_tvtimedataDATA uninstall-hook .PRECIOUS: Makefile .ttf: .pe .sfd pfaedit -script $^ .PHONY: uninstall-hook uninstall-hook: -rmdir -p '$(DESTDIR)$(tvtimedatadir)' # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: tvtime-1.0.11/data/Makefile.am0000664000175000017500000000227712354244126013005 00000000000000# data/Makefile.am distributes the shared data files tvtime needs. # Copyright (C) 2002, 2003 Billy Biggs # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. tvtimedatadir = $(pkgdatadir) dist_tvtimedata_DATA = FreeMonoBold.ttf tvtimeSansBold.ttf \ filmstrip_0000.png filmstrip_0001.png filmstrip_0002.png \ filmstrip_0003.png filmstrip_0004.png infoicon_0000.png EXTRA_DIST = COPYING.tvtimeSansBold COPYING.FreeMonoBold \ tvtimeSansBold.sfd FreeMonoBold.sfd .ttf: .pe .sfd pfaedit -script $^ .PHONY: uninstall-hook uninstall-hook: -rmdir -p '$(DESTDIR)$(tvtimedatadir)' tvtime-1.0.11/data/infoicon_0000.png0000664000175000017500000000456312354244126013722 00000000000000‰PNG  IHDR((Œþ¸mbKGDùC» pHYs  d_‘ IDATxÚ͘íoS×Ç¿÷Ü_?Åq|ƒMy€’Œ¤Tixè¨4k#± ­…ªš¶Û´M{ÑÓ´¿ {7U›úvÝ´I(/†6­”HSW R˜“M!ö“&¹Ž?\ßk_ßë{ö‚Ø87Ve?éH¶|Îï|ü{8ç÷;Àÿ¹0OºB8Žãøû±,Ë2 ƒr¹l†a†a˜¦i–Ëåò·H!v»Ýîóù¼@ äñxö544´¹\.Éf³9†at]/jš–Êf³óÙlö‹D"O¥R«ªªjO»%@BëñxÜ­­­»vîÜ9ÜÞÞ~¤£££½½½p»Ý`TUÅÊÊ æææ¬¹¹¹øìììx<‹Åb3™L&kš¦ù:G{{{ûÞ½{O÷÷÷÷ðáà hll„  „€a0Ì}U”RPJaYLÓD.—C,Ãøøx1_¸sçÎ_£ÑèmEQò”RúÄ€„âóùšöïßÿò~þꫯnïééACCX–]`Ýçʾµ°ªª"bll,óÙgŸýijjêïËËËòfngë¹4 m?xðàONœ8ñË·ÞzËÓÝÝ ‡Ã–eAyÄr–eÁ²¬*ìÃCtww‹ Ï•J¥íš¦Er¹\Ϊ,Ü !„„B¡à¡C‡Þ9uêÔ›###¬$IU°‡-G)E:“ŵÈ=D¿LÀ2t48ëæÖ‡Ã¶¶6F’¤Îl6Û¡ªêÍl6[r Ã0L ð>|ø§N:yüøqÆív?²Y­X–…ÈÝû”Åè"‡è§çñrß.¸\®º!Àó<‚Á $IÚ‘L&[2™Ìd.—S6ŠI®ö‹Ëår œxíµ×¾ìØ1ÆétÖ«µ ¦—ˆ€x<UU7ø6› ƒƒƒÈçóÏ«ªúCEQÞO&“©G}zO0¬#»sývÇA[G‹8ùÒsس{7xžß$Bàr¹˜H$â½wïÞ…\.§Tæp„ ·wuu µ´´T­WN×u,¯$¡hEX”(¼þ|Íø½žêµ·Ua~¿}}}Ýápx÷ÒÒ’\¹9Žã8¿ß?ÐÛÛÛàt:×ý³DN¦ðösê[íFFŠðÛ·C’|[†îguoo/ÛÜÜ|Èf³]¯QE¿ßÿ¶¶¶êVO(¥(KH•d,Ù‡FÆâq}êrJî±,X …Bضm[ËårT]ìp8DI’v555m)fÜN;öæ¦þù„ŽŽŽN]ºté݉‰‰¥ÓéÌfOp›kM•ÔÕÕu¨««ëÍgžyfÿÀÀ»cǸ\.ð<ÿH'hY À¦iXZZÂÍ›7i8ŽÜ¾}ûo333/--É'O X›Íf“$É×ÚÚº/ miié…B­Á`Phjj‚(Š`ÅbÙl‹‹‹æâââ—ñxüÖâââ…ùùù)Y–WŠÅbq+— XkQ‡Ãaollôø|¾&§Ó¹SÅÏóN†aÃ0´b±¸¢iZ|uu5•N§3ªªj¦išöÄ€µBÖ –eQ«F¾Ž~øÖeùŠCŠUQIEND®B`‚tvtime-1.0.11/data/filmstrip_0000.png0000664000175000017500000000302312354244126014115 00000000000000‰PNG  IHDR''Œ£Q5bKGDÿÿÿ ½§“ pHYs  d_‘tIMEÓ , z߈# IDATxœí—]hS[Çç#996™ijjDQ§ƒ¥ØÞ¾\‡`;¢¢äÁ2#ÜQª/ó$ Ìô"(}PÑ^¨"¨0 ׫âßïŸû÷ïÿÓÆE±~ œ^:™˜˜0 Ãø™eY´¶¶~9::úåÒ¥K¿X·nÝWkÖ¬™ýüßç|­¢pâÄ ž={6ÛÔ¼jÕª ð¹¨(ÊÄ×ÒÓÓóëH$ò;˲hhhøÅèèhÃ’%KˆF£?â;€knn¦¹¹y>óvà7ÀòD"qmÛ¶mLMMÍö™2³á¾íééiõz½^¡X,¢(ŸÚõŸ,ƒÇá Øÿ¬Ÿ ç³,ËkY?ÇS ¸™¸ú6_©ðq;Ö¯_ÏÖ­[q‡x<ÎÇ«窱±‘h4Šßïg``€xŸJkæ¨ÄãqÚÚÚÐu\.7?ËåÈårî|1ú¹B¡Àððð¼¶²K8 ‡ÝÆóíÛ·U‡óûý¬X±MÓ#›ÍÎíçTU¥³³“ÁÁA}¿ßO*•Z¸ŸSEt]]×EQ”EéçEMÓD×uQUuÁòõÞëõ¾SUõoSSSC@HQ”`e5WÎëõ …Ðuññq&&&ÜV ·Ïçó™ápøßÃÃÃc€¾¾™çí•‚Û¸q#GŽ! ríÚ5z{{gn‰R¸L>Ÿ'ŸÏÏ̧¢Ñè}à÷ó¼óŸ‰ùsà·À/? ill|‡¿ëïïgõêÕße2™Ï~Ô‚ý3ÑÙ&"E$S2þ""-‰D¢Å4Í–]»vµ¼xñbˆè/^\œ+â^ßãOˆ>h^]IEND®B`‚tvtime-1.0.11/data/tvtimeSansBold.ttf0000664000175000017500000024756112354244126014435 00000000000000€`GDEFžŒìBGPOS‹¸à0âGSUB¸¸vÊOS/2ãé eàVcmapa^W\8RgaspÿÿŒglyfí#qZ”ú:headÜ?lFÐ6hhea,L$hmtxŒm, Ìloca¡à¡&øhmaxp—ì-` name¹ÊüÞ-€|post²ŒÐm3ü{ :ñòóô01122 ,latnÿÿkernRS°¶ÀÆHRàf6œÖtÞH–ä\Î@rä”ú @ ^ $ ‚ ì ¾ Ø & h Ú T º4vÜJ 6Ò,–@–ä*D‚è*|2òt|:LZlzˆž´ºÀÆÌÒØÞô  6Dÿ·7ÿÇ<ÿÀÿ· :IKOAP+;,@0=1;DKEDF>GBH?I\JJK<L<M9NDO<PCQ@SETEU@VDWUXE[[]Oÿ«ÿ¿#TFMF[$G&=*=+;,@0=1;2>4;6D;C=]EDI^K<L<M9NDO<PCQ@SEU@WbXAYcZn[l\h]R!F=WXBMN+9,>0;19DJEBFCGHHKJDK:L:NBO:PAQ>R?SCTIU>V@W9XCZ:[V]@&Y;\YVaP&>':)=+C,H.=0E1C3;6X=FDWELFLGQHVJMKDLDMANLODPKQHRJSMTRUHVNXA]F IM?M+9,>0;19=;EBK:NBO:BRW>IQ+<,A0>1<=@DMEEFFGJHGJKK=NEO=P:R;S9TMVEÿ¨ÿ©ÿÂÿÁ$ÿ•-ÿŒDÿ¹FÿµGÿºHÿÁJÿµRÿ³Tÿ»Vÿ¹'AEQU=GV'9)<+B,G.<0D1B3:=<DTEKFDGHHEI?JNKCLCM@NKOCPJQGR:SLTKUGVIWAXL[N]HFAEF+9,>0;19DIEBI[J@K:L:NBO:PAQ>SCT;U>VCWKXC[N]Mÿ§_'9)<+B,G.<0D1B3:7ÿ¯9ÿ¾<ÿ¦KCLCM@NKOCPJQGSLUG[†]iœÿßÿ¿P,C0@1>DIEGIVK?L?M<NGO?PFQCSHUCXH[Q]Q>ÿ¨J:KI$H,=0::>;S=NEAI9K9L9NAO9W; ÿ´ÿµÿº$ÿÁ€ÿÁÿÁ‚ÿÁƒÿÁ„ÿÁ…ÿÁF=CBK?6B;C=ADBG<HCT=V=YAZM[T\F]JHHIFENI$>2:6E7Z:A;H=FDDF9G>HEIZJ:T?V?WIYJZV[W\O]PHHIFENI$>2:6E7Z:A;H=FDDF9G>HEIZJ:T?V?WIYJZV[W\O]P CDA@ID6@H=IBWDZK[Oÿµp%D'I(G)L+R,W.L/F0T1R3J4ÿÄ5FE[KSLSMBN[OSPXQUSZUU[O\ÿ¿]r ÿŽÿF7ÿ¡9ÿ¦:ÿ¼<ÿYÿ¶ZÿÄœÿvŸÿs!PPQNMVQ$F&?*@2B4?6M7b99:I;P=NDLFAGFHMIbJBR?TGVGWQYRZ^[_\W]XLLMJIRM4;6I7^:E;L=JF=GBI^J>TCVCWMYNZZ[[\S]T?+;,@0=1;<ÿÅEDK<L<NDO<PCQ@SEU@[;]Jÿ¢ÿ¢$ÿ¿;ÿ»ÿ¿„ÿ¿…ÿ¿1b`OK_QX$R&Q'9)<*R+B,G.<0D1B2T3:4Q6M;R=[DTEKFLGQHWI`JLKCLCM@NKOCPJQGRKSLTSUGVLW_XGYHZT[b\M]j@ZH99DF$W,;6B;PE?ICN?P>Q;S@U;W@YKZX[j]bA?CD+>,C0@1>DQEGIPJ>K?L?M<NGO?PFQCSHT9UCVHXH[I]C4ÿ½ÿ½ÿtÿŸÿž$ÿ©%J'O(M)R+X,]-ÿ©.R/L0Z1X3P5LDÿ·EaFÿ¶GÿHÿ»JÿµKYNaOYPÿ‹QÿˆRÿ´SÿTÿžUÿ¹Vÿ¶Xÿ¸Yÿ®Zÿ³[ÿ¶\ÿ°]ÿ¯lÿ›€ÿ©ÿ©‚ÿ©ƒÿ©„ÿ©…ÿ©†ÿµ¦ÿ·¸ÿ·¦ÿž:??IDWD[=ÿ»ÿ»ÿÿ¿ÿ½$ÿ¹-ÿ¬E:N:[@lÿ¶€ÿ¹ÿ¹‚ÿ¹ƒÿ¹„ÿ¹…ÿ¹†ÿŦÿ¸>ÿ»)9+?,D.90A1?;IEHK@M=NHO@[<]Be%?'D(B)G+M,R-ÿÇ.G/A0O1M3E5A:F;VEVKNLNMKNVONPRQOSTUO[j]nÿ²ÿ²ÿTÿ¯ÿ­$ÿª,:-ÿ‰4ÿ´Dÿ¾E>Fÿ§Gÿ¬HÿÁJÿ¼N>RÿºTÿ­Vÿ«lÿž€ÿªÿª‚ÿªƒÿª„ÿª…ÿª†ÿ¶¦ÿ½¸ÿ½¦ÿ @ÿ¦N;JO):+@,E.:0B1@EIKALAM>NIOAPDQASFUAVVX=ZCB]AD?A<&:):+@,E.:0B1@697ÿ™<ÿ’EIIHKALANIOAPHQESJUEWC[a]h?NM;FD,97ÿ<ÿ’E=N=P<Q9S>U9X;IEWFÿ¯PP,=0:6:7ÿ‘<ÿžEAIHK9L9O9P@Q=SBU=WGX?Z>]@GGHEDMH$=296D7Y:@;G=EDCG=HDIYJ9T>V>WHYIZU[V\N]Oÿ±?L+9,>0;197ÿ’<ÿ—EBI=K:L:NBO:PAQ>SCU>X?]>%^CZ[CZ@a%B'G(E)J+P,U.J/D0R1P3H5D6U8:;a=[EYKQNYPYQVS[UVXFYBZY[:\>]\CCDA@ID$96@7ÿx;@G9IUJ>T:V:WDYEZQ[R\J]KD=A<BD;7ÿx9ÿÅ<ÿ„D?I;V:W9[S]GBBC@?HC6?:;;B=@D>H?ITT9V9WCYDZP[Q\I]JEEFCBKF$;6B7W:>;E=CDAG;HBIWJ@T<V<WFYGZS[T\L]M*V^;NZb$t%M&:'R(P)U+[,`.U/O0]1[3S5O6X7ÿ´::;tEdIEK\L\MYNdO\PcQ`SeU`W<YiZx[q\h]‡BBC@?HC6?7T:;;B=@D>H?ITT9V9WCZP[Q]J?BGA<FA7ÿ};E<ÿ’DDG>IBJ:T?V?W@[L]LIBFAGI@7ÿ°<ÿ‰DCI?J9T9V>W=[X]LBFÿ¨=7ÿ¬<ÿ‹CNM?ÿ¨IC7ÿŒ<ÿ’E<I9N<P;S=X:FFGDCLG$<6C7ÿ{;CDBG<HCIXJAMbT=V=WGYHZT[U\Q]NÿÇÿÇTÿ‡);+A,F.;0C1A397ÿšEJNJSKXBKQdHÿµU,<096I7ÿ<ÿ‘E@IEN@P?Q<SAU<X<]A-WcUGSH[$D&C'<(:)?*C+E,J.?/90G1E2D3=4A596N;f=ZENIjLFMCNNOFPMQJSOT9UJVMWgXMY@ZR[l\D]jCCDA@ID$96@7ÿx;@D?G9H@IUT:V:WDYEZQ[R\J]Kjÿq$ÿÁ)<+B,F.<0D1B3:7ÿšEJIJKBLBM@NJPJQFSLUFXG[]n r=AÿB%>'C(A)F+L,Q.F/@0N1L3D5@7ÿ¥EUIYKMLMMJNUPTQQSVUQWGXV[p]v(Tsh=FR[$f%A'F(D)I+O,T.I/C0Q1O3G5C6P7ÿ¨;iEXI<KPLPMMNXOPPWQTSYUTXIY‚Zr[d\‡]{lÿr$ÿÁ':)=+C,H.=0E1C3;7ÿœELIJKDLDMANLPKQHSMUHXE[ƒ]p/YARST^\$]&E':)>*E+D,H.>0F1D2G3<4D6S7ÿœDUELF=G@HII`J>KDLDMBNLODPLQHSNTBUHVTW_XEY\Zi[w\a]@7ÿ”9ÿ²:ÿÄ<ÿ‘7ÿ¯9ÿ¾<ÿ¦7ÿ¯9ÿ¾<ÿ¦œÿÃ7ÿ¯9ÿ¾<ÿ¦7ÿ¯9ÿ¾<ÿ¦7ÿ¯9ÿ¾<ÿ¦œÿßÿ¿7ÿ¯9ÿ¾<ÿ¦œÿßÿ¿<ÿÅ<ÿÅ<ÿÅ<ÿÅ<ÿŵÿ¯£ÿ¨$ÿ·ÿ·„ÿ·…ÿ·†ÿÂ$ÿ³ÿ³„ÿ³…ÿ³†ÿ¾$ÿ¼ÿ¼„ÿ¼…ÿ¼†ÿÇ$ÿ»ÿ»„ÿ»…ÿ»†ÿÇ7ÿµ9ÿ·<ÿ¤7ÿ˜9ÿ¶<ÿ•$$ &&(=D]%{{?€…@’–F££KµµL›œMž O§§R "Hlatnÿÿinitligamedi Z^>*4ò- OLóM1x,ILléVéV¼ÈÈÈÈÈÈ1 €*¯P`jPfEd þžÓþZÓc¿ÝõL0ˆ€ ~¬’ÇÝŠŒ¡Î_ÄÈÌõù¹Äêô!(+.3    " & 0 : D ª ¬!"!"""""`"e%´%¶%¼%À%Ä%Ê%Ð%ï&&0àAöÃûû6û<û>ûAûDûOþžÿÿ ¡®’ÆØ…ŒŽ‘£ŒÇËÐø°»Ðð!(*-3    & 0 9 D ª ¬!"!"""""`"d%´%¶%¼%À%Ä%Ê%Ð%ï&&0àöÃûûû8û>û@ûCûFþžÿÿÿõÿãÿÁÿÀÿ®ÿ)þþoýÈýÇýÆýÅýÄý“ýgýeýcý`ý^ü¨ü§üœü—üuüqüküjüiüeâ†âƒâ‚ââ~âuâmâdáÿáþá‰áà«à¨àžà—àRàOÝÝÜûÜøÜõÜðÜëÜÍܽ܎"¿ >çæåäãâ”°ž¾}|y~srg  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a„…‡‰‘–œ¡ ¢¤£¥§©¨ª«­¬®¯±³²´¶µº¹»¼pcdhvŸnjti†˜qfukz¦¸bml{€ƒ•·¿w‚Š‹ˆŽŒ“”’š›™oxÿÿ!nš3!%!!!MþÔ þõšýf!XpÖ #5#5*C)––ÖÒþË5Òý¼’’2Ö¨Ù #'5!#'5¼*8(v*8(Ù‚‚‚‚ÿà)¹#7#537#53733733#3##7#737#’j(Macw"i"g"i"Zmdw(i(ggg Ìc™c®®®®c™cÌÌc™ÿ‚û*16#6'&'#5&'&'535&'4767535674€7 ™)D3ODR5UƒUËi*9D4þïPHISòNÉ*L&8h: ii&=p jÕ/¦y266a-‚µL<“ÄLIÿì_Å $4F2#"'&5476"327654'&%3#2#"'&5476"3327654'#&ÎY7B4BV7+C3B0 )/ +yLþuMÕZ6(B4BV7+C3B0 )/ )½D#,%R7+B2BU7*c)/ )1 ký'tE2BR7+B2CU7*c)/ )0 7ÿé¶Ó)3>3#'"'&54767&/&54763265327674'"3q2{¡.W@,‚A*<"? *F3Dk/2+tø/*- 0Ha;9+ u kLš8B U6MY7! "19R1$F$0G39:,47&7B!54 2Ö¼Ù#'5¼*8(Ù‚‚(ÿ8/Ù3#&'&5476Ëdl :5dŠmÙÐ…9B’Ifв&)¹¿*ÿ8Ù#67654'&'3zdl :5dŠmÈÐ…9B’Ifв&)¹¿*—eÙ'7537''„mmHmmC:CC: $E$tt$F#^+^^+2ÿöÙ ##5#5353¶w¶¶w#w¶¶w¶¶@ÿRÖ’7356?5#@–" '9L V’‰Z& 8LÏ*V!5*þðV‡‡@Ö’7#5Ö–’’’ÿòÊ3#ÐCÎCÊý(ÿéÔ#2#"'&'&5476"27654'&}A2†; Hg `>YŠ?%ˆd=4=^kM-2 _3PT-@T5 2b ~='_8Po2 B  Å ##5!53# JŒþ䥌¹tv²þL/þÑÿéÅ!!632#"'&'327654/&#"#éþÛ9Br>-\CaA(Š^L DC~?Å}”+Y@\„H5S4ISF$d6‹ ÿéÔ/?#&'&#"6731632#"/&54?6732"327654'&û‚, H6C l9)W>XoC32 ?~p<ÛB5<9$6H K9U(O":*V Å#6?6767!5¬58 #PþŸÅnÐÇYgÀ€Mn }ÿé Ô 0@#"'&54?&'1&547632'"327654'&"327654'&™`ZB_„F2N&Q Q>UuA,.¦E 5A 5 I <I ?‚3Us@0U:Tf9+M `7*I2DI+ Ð1: /: þç= N :T ÿèÔ 173327#"'&547632#"'&"327654'&&‡1t $8n;+X>YƒE16@Šm?+ßB <A=¥1Ê# Z@\‚F2tQ®enH2D%] =(] q%#5#5–––’’’v’’qÿR7356?5##5q–" '9L V––’‰Z& 8L’’(ÿöÚ %5þ‚~þÚm…ƒo¶y24›!5!5þäþ›wwðww(ÿöÚ5-5(~þ‚é m…ƒo¶y@,è-1%#76767671654'&#"#6767632#5q|(8 1=ˆ)Aƒ‚F++  0 –É.4%#.B :%0l:YU5I N2 "e’’ÿv³éJ_332?654'&#"327#"'&'&54767632#"'&'4'#"'&54?67632'"32?67674'+&„ZN%343bh‘¯m\ vhŒs\eˆ¹yvV‹Ï¾‚oRK]3& 9Q O1$? <[K"u=1.+,(1 5 üþè )? GZvX\~kŽ˜]Q)I._\‘"$‰' }ly^TE@.=bXK? C>J>*9M M¿Ù %!#3# õþï1™¦üšY__““Ùý'þãRšÙ"3!2##3274'#3274#REn><?$x6?y²£e_ £³moÙ54K H4FkO<5\¥RNþÞ½^_,ÿé­å##&'&#"327673#"'&547632ª *Qs0^'3o% ’rNo¬YExV€¡W*â45o-<)«:Z”J2€cšÐfIj 7M©Ù 3!2#'3274+M“DYYB‡‡¨©‡ÙDi¯°hP}ïðOpÙ !!!!!å‹ýßþ‡]:½}Ù}¥}JJÙ #!!!à–þ–?:þÆÙ}¥}*ÿéÇå(#'#"'&547632#&'&#"3276767#5ÇZDj•``o`’¦W5 2O{4O6KW:¦ˆþv`dml¥·j]dB<† `7Gž>!w9OŠ= RM.2Qz# 7|7|A]»F!b!(ÿé!Ù"!5#"'&'&5476323"327654'&•4aT> :O>Vb3ŒþþB 9"C ;7N; St‰TBOý'°G*9g,G(7m,ÿé %%%!327673#"'&547632%3&'&'" þ–=KŠa8DŽA(h7I? cIlUBVI*:f+F(7b1CÙ3632#4'&#"#CŒ:dH17Œ.B ŒÙþõW).dþ–J+!4þ¼CÏÙ#7#5ÏŒŒŒýä½}}ÿ&ÒÙ#'5327577#5Ò@#S#ŒŒý†_p[½}};$Ù 73#'#3DZŸ¸Å¤8ŒŒJÒÌþ°î=±ÙCÏÙ#ÏŒÙý'Ù<8%(36?2672#4'&#"#4'&#"#<‹6> `+:dv'Œ1 FŒ1 FŒCA CMX"-þ‚h5@þ¼h5@þ¼?"%36732#4#"#?Œ7^ (ŒZJ ŒNRe%1þ–Ma8þ¼#ÿé9%2#"'&5476"327654'&-¥C$hC`œE*kA_I"=%F#@%}DaŸK0sEf¦K-qJ*9j.F+:q+:ÿ&>%"632#"'#"327654'&Æ2dQ> 7O>Ud2ŒC :!A!;PY8M}‹S@XþæölH)9j+E*8m,ÿ& %#3##"'&'&'547632"327654'&”ŒŒ1fP= 7P=Ud2vC :!C =ý X7Kt ŒS@YH)9j+G(7q*?r% 36763'"#?Œ%M,{ŒjZŽ{þáÿé%2#&'"3#"'&53327654'&/&/&547632ù‡d@±i<`4J˜9nH# 3iQ30 $* 4!7l.['ÿé-¢#337#"'#5353-N  "/ˆEEŒ]þÚ. b L]‘‘:ÿé!#5#"'&53327653Œ7^ (ŒZI Œ@Re%1xþ¥a7R!#33^“½”um”þu‹þ !# #333e‘QV˜‘VRŒQR‘}þƒþ†zþ†z #'#373c´¨[\¨´°¨XW¨þ𨨠££ ÿ%3#"'53276=3ŠÞ(=3 ÉšwýE i,2þwÔ !!5#5Ëþ÷þA ùqþÆqq:q%ÿ8=Ù/#"#33#"'&=4'#/&#'5;6?54763=%*"*E%LF"  <:%Ùc9ÃD  $Ã6c>!-Ò0\3 ÓS&dÿ8´Ù#´PÙü_¡Hÿ8`Ù+5327547367&'&=4/#5323+#H%*"*E %LF"  <:%Èc9ÃD  $*Ã6c>!-Ò0\3 ÓS&<Ž:3#"/&#"#6323276¹N v-&9 $ Nx/$9"$  ’* ‘* BÿFØ 5353B*C)––ºÒ5þËÒD’’$ÿ„ z %6?3#5&'&5476753#&'/6† V5F,…9!$,,r>&†2?R³þ¨;o;%ef rB\Ð=VUU4HLþ¯S˜ÿéËF#672327#"'&#"'67654'#53&/4767632#'&/&#"wzAJ&+%/:)LE C@"1<7S Y:+  A!1= 9 HU#Y@% =y_=õ#7=~FFõ––:ÿ$= #33276537#"'&'#"'À†Œ,= Œ !%615='Üøþ²3!3Rþz>W# 2&ÿAÙ####&'&54763+b?bm;(3:bÙHü°Pü°ÊV:OWDO@©¼$3#@||${ÿ$&;632#"/7327674/&#"¢+< Z7OE$( "?0 L4  (òÅ#5273#“ku@_==KþWWÙ#!52#"'&5476"327654'&NþÓ–p# M$/g'P".0,0 . TNN…^".k*R&3q)D4G4KXHÎá 57'557'5ÿ§eev§eeOs”uYYr’s”uYYr(ÿìRË #5273#3#%##5#53#5“ku@_¾WþYW¨._³¥m_j==KþW¯ý!¼K]]Jþÿ¤¤(ÿìNË /#5273#3#%!676767654/"#'47632“ku@_¸WþYW¨þÊ((W .3\dy&+; ==KþW¯ý!eQN*:6 7oZ8'+ÿìRÎ)-8;53274/"#67632#"'&5327654'%3#%##5#53#5† J&& X(P_$4AJ$1u\=+TÛWþYWˆ._³¥m_j×>:+  A!1= 9 HU#Y@% =ôý!¼K]]Jþÿ¤¤3ÿ4 (,3327654=3#"'&547676767'53ï|)8 1> ˆ)AƒƒF1,40 –S.3%#.B ;!*l:YV;UN2$" a’’ÿÿ¿¨&$C̳ÿÿ¿§&$tÁ²ÿÿ¿¨&$Eijÿÿ¿ &$Kɳÿÿ¿š&$iƳÿÿ¿µ&$IijÆÙ%##!!!!!!#®ß5™ªþ’Sþ­‚ýèCr˜˜Ù}¥}½}Gþ¹,ÿ$­åB632#"/7327674'#1#'"7&/&547632#&'&#"327673{< Z7OE$( +d1oxV€¡W* *Qs0^'3o% ’xJ(0 L4  S$jÄÐfIj 7Y45o-<)«:Z™H-ÿÿOp¨&(C¾³ÿÿOp¨&(t£³ÿÿOp¨&(E²³ÿÿOpš&(i²³ÿÿÿöÕ¨&,Cÿå³ÿÿ?"¨&,tÿå³ÿÿÿí+¨&,Eÿå³ÿÿÿ÷š&,iÿ峩Ù&#53!2#!32747654'&'#3MMMC M K<þã–‡Z%..$]‡–SP6> a•"šl K SÖ3AxyA4¹PÿÿD• &1Kʳÿÿ(ÿ鿍&2Cí³ÿÿ(ÿ鿍&2tÕ³ÿÿ(ÿ鿍&2Eà³ÿÿ(ÿéæ &2Kæ³ÿÿ(ÿéæš&2iá³Où¼ ''7'7¥T€T€€T€T¼TT€T€€UÿÙóí$.7'7&54?6327#" 327654&#"¥S3VRU^œƒ[ S4YCO ^›ˆ;þÉ2Rm7&þˆ:7Up6$4[._n“šjeL\-c\† ‘i eþ¨0`@`KãZ:b@^SÿÿLÿ鎨&8CÓ³ÿÿLÿ鎨&8t»³ÿÿLÿ鎨&8EƳÿÿLÿ鎚&8idzÿÿЍ&<t¢³LyÙ7#332#'32?4/#â––¬r;>]5J»Œm`ŒŒŒÙx8H Œ=;t}@(W.!0V6N1 FI(]_5 ?: ýçp1/I.?f" /M ŒE,p9$S ÿÿÿé õ&DCsÿÿÿé õ&Dt^ÿÿÿé õ&DEiÿÿÿé í&DKhÿÿÿé ç&Dijÿÿÿé &DIiÿèY%5BG%3#"'#"'&54?6?674#"#6326323!3276%532?3&#"ÈŠc7Bˆ@Sf i*8DUDƒáu:>]†F þ– >9 þž%0O2 _Ø bb˜g.haM%3ˆ  5'»22c ;S>1) N&  ?3 `†{"ÿ$ %=632#"'732?4'#1#'"7&'&547632#&'#&#"2?3#= Z:PC%(+œ+w9OŠ= †,>&3? † V:(1L4 U“2?»F!b!((M.2P[. ?"p:)ÿÿÿé õ&HCsÿÿÿé õ&Htfÿÿÿé õ&HEqÿÿÿé ç&HirÿÿÿöÏõ&ñCåÿÿC"õ&ñtåÿÿÿí+õ&ñEåÿÿÿ÷ç&ñiå#ÿé9è/#"'&547632&''7&'77"327654'&°T¼u>XžE(qF)IIk¥L-25Ì*E+:(tÎ/G*:.ÿÿ:ÿéõ&XC’ÿÿ:ÿéõ&Xtyÿÿ:ÿéõ&XE„ÿÿ:ÿéç&Xi„ÿÿ ÿ%õ&\t^:ÿ&>Ù 632#"'#"327654'&Æ2dhB8P=Ud2ŒC :!A!;ÙþóY\Ot‹R@Wþæ³þ×H)9h,D)9m,ÿÿ ÿ%ç&\ikÿÿ¿‚&$odzÿÿÿé Ï&Dojÿÿ¿Ÿ&$GÁ³ÿÿÿé ì&DGlÿÓÙ%!#3327#"'&54?# õþï1™§ûSL$'wV%KX_`““Ùý'$<5/ B K.þãÿ$%4E%327#"'&5476767#&5#"'&54?6?674#"#672'53276 lL $'sMMJZM1&Ÿ8DQD ‡ ÚÜ£(0B 1 W:G5/ >G. #M3)F  6 ¹¦þÔ"Â&  $ 1 Sÿÿ,ÿé­¨&&tÁ³ÿÿ"ÿé õ&Ftoÿÿ,ÿé­Ó&&EÞÿÿ"ÿé &FE!ÿÿ,ÿé­·&&HÐÿÿ"ÿé ú&FHÿÿ,ÿé­¨&&Fгÿÿ"ÿé õ&FFzÿÿM©¨&'F«³ÿÿÿéÐÙ&Gæ©Ù&#53!2#!32747654'&'#3MMMC M K<þã–‡Z%..$]‡–SP6> a•"šl K SÖ3AxyA4¹Pÿé]Ù(#53533##5#"'&547632"327654'&•……Œ<<Œ4afB;O>Vb3v@"9"C ;TCBBCý¬7NZPs‰TBO&E+:g,G(7m,ÿÿOp‚&(o³³ÿÿÿé Ï&HosÿÿOpÌ&(G¯àÿÿÿé &HG]#ÿÿOpš&(H±³ÿÿÿé ç&HHpOÿˆÙ!327#"'&54?!!!!å‹lL("yoþ)þ‡]:½}:G5/ C M6Ù}¥}ÿ %18#"'&547537#"'&547632!327473323&'&#"Þ'(i 4*.$ŒA*hMŠ K LþáØ7^±/ ;1, mEf­L,X&;SD/A1%R+4ö3-ÿÿOp¨&(F°³ÿÿÿé õ&HFpÿÿ*ÿéÇÓ&*EÖÞÿÿ"ÿ&&JE¾!ÿÿ*ÿéÇŸ&*Gç³ÿÿ"ÿ&ì&JG‹ÿÿ*ÿéÇ·&*HÖÐÿÿ"ÿ&ú&JH¾ÿÿ*þÍÇå&*Üÿÿ"ÿ&U&JÝ"ÀÿÿD‘Ó&+EÃÞÿÿCÓ&KEmÞD‘Ù !#3!3#ûþß–– —–KþµÙþïý'CÙ3632#4'&#"#CŒ:dH17Œ.B ŒÙþõW).dþ–J+!4þ¼ÿÿÿÙ;½&,KÿâÐÿÿÿØ:&ñKáÿÿ‚&,Goÿô³:8@ÿÿ Ï&ñFoú7p@ÿÿÌ&,Gÿãàÿÿ &ñGâ#"ÿíÙ73#"'&547#ÕX'0'` qTÙý'?D$ / :L<Ù"ÿçÙ37#"'&547#7#5ÏR,(cnMŒŒýä:F / ;GA½}}ÿÿ?Õš&,Hÿã³CÏ#ÏŒýäÿÿ?ÿéäÙ&,-þÿÿCÿ&¢Ù&LMÐÿÿÿé:Ó&-EôÞÿíÿ&+#'53275773#'#Ò@#S#kgNRRLý†_p[ó–ddÿÿJþÍÍÙ&.Ëÿÿ;þÍ$Ù&Nuÿÿ<%ÍÿÿPC¨&/tÿí³ÿÿC¨&OtÿÙ³ÿÿPþÍCÙ&/ÿÿCþÍÏÙ&OÞÿÿPCÙ&/ÚÿÿC~Ù&O”ÿÿPCÙ&/w–ÿÿC¼Ù&OwˆUÙ 7!!573楥oýûPP–§pXqÑ}8Y8üÙ 7#573Ä88Œ88Œº(O(þ•&(O(dÿÿD•¨&1t·³ÿÿ?"õ&Qt{ÿÿDþÍ•Ù&1¼ÿÿ?þÍ"%&Q„ÿÿD•¨&1FƳÿÿ?"õ&QFƒ?"%36732#4#"#?Œ7^ (ŒZJ ŒNRe%1þ–Ma8þ¼D•Ù !#33ÿþÛ–š!–øþÙþðý'?"%36732#4#"#?Œ7^ (ŒZJ ŒNRe%1þ–Ma8þ¼ÿÿ(ÿéæ‚&2oá³ÿÿ#ÿé9Ï&Roˆÿÿ(ÿéæÌ&2Gààÿÿ#ÿé9&RG‡#ÿÿ(ÿ鿍&2L5³ÿÿ#ÿé9õ&RLÛÿéÊå-!!5#"'&5476325!!!&'#"1327pZþ35„TQcRxK5×þ¹+þ?'D _1!L+:K(:½};@ oj¥ºlX+4}¥}ˆjE^A]’E'Cÿé˜%&6@%3#"'#"'&547632632!276"327654'&3&'&'"Šb/8 qBMvœE*n@]zIAs€F þ–A< þI"=%F#@æ×87 ˜g.KKsEf©J+LL\$=Q> /, )J*9j.F+:q+s4*, ÿÿP¥¨&5t±³ÿÿ?rõ&UtÿÿPþÍ¥Ù&5Îÿÿ?þÍr%&UÚÿÿP¥¨&5F¿³ÿÿ6tõ&UF-ÿÿ ÿéy¨&6t”³ÿÿÿéõ&Vtfÿÿ ÿéyÓ&6EæÞÿÿÿé&VEp! ÿ$yåR632#"'7327674'#1#'"7&'&'327654'&/&/5'&547632#&/"2T= Z9QD%( *Ò+ ’o/l :2f(}?XŸL3ŒvZ*)r‘# '1L4  S—%d<: I%86S8_e 5. ["/ßÿ$%O632#"/7327674'#1#'"7&'&'3327654'&/&/&547632#&'"3#< Y7NE$( +˜(‰6Z  §>`4J˜9‡d@±iR9P(0 L4  TS .$* 4!7l.['5H# 3i`3$ÿÿ ÿéy¨&6F ³ÿÿÿéõ&VFqÿÿÿ$VÙ&7x•ÿÿÿ E¢&WxéÿÿV¨&7F޳ÿÿÿéŽ<&W¤xVÙ##5!–ÝH\ý¤\}}ÿé-¢#337#"'#5353-N  "/ˆEEŒ]þÚ. b L]‘‘ÿÿLÿ鎽&8KÅÐÿÿ:ÿé&XKƒÿÿLÿ鎂&8odzÿÿ:ÿéÏ&Xo†ÿÿLÿéŽÌ&8GÆàÿÿ:ÿé&XG„#ÿÿLÿ鎵&8IƳÿÿ:ÿé&XIƒÿÿLÿ鎨&8L³ÿÿ:ÿé.õ&XLÚLÿŽÙ$#"'&'4737#"'&5327332U')($C;,;2‹RG–‹‡–4:AM±/ >6.J?yîþ~‚îþbD=F13:ÿ4)!#5#"'&5332765332?3#"'&547676Ñ@7^ (ŒZI ŒnL$'v8 @Re%1xþ¥a7Rýä8I5/ @9,  ÿÿ ¤Ó&:E1Þÿÿþ&ZEÚ!ÿÿŠÓ&<E«Þÿÿ ÿ%&\Ej!ÿÿŠš&<i°³ÿÿB¨&=t|³ÿÿÔõ&]tFÿÿBš&=HŒ³ÿÿÔç&]HTÿÿB¨&=F‹³ÿÿÔõ&]FS4Ù 3##53543'"æŒLLŠP($´]A‡i*ÿ$è###"'732767#53767632&#"ô‰;10M/+##<{Š f (8$:àaþ‚|10s/)xa;§si)ÿÿ þÍyå&6ªÿÿþÍ%&VsÿÿþÍVÙ&7ŒÿÿþÍ-¢&W_Fõ3#'#tkgNRRLõ–dd _Gõ#'373ÛkgNRRL_–aa#]+ì#"'5&=332?+9!*H&8 D= ì G'9!* B;pmÞç#5ÞnçzzMN2#"/5&'476"2?4'¨3 ,3 ,  ,2 +3 0  -ÿ ;327#"'&5476©KR L'(h Q3%2/ 9I. ÿ÷mYí3#"/&#"#6763232?YG ?=  G í # b ÿÔbTõ#7!#7˜~FF:~FFõ““““2“²é #7#53#53²›zZŽŽ¶ŽŽé¼¼þª–––ÿßÿçÕå #'!#33/#7Õ Tþ÷Nœ'‡BAª= t›zZÚÚþÀ5±¤ã¼¼;Éeó#"'&'&54767632e!21#$#-.#$^$#$#"%$#$"!ÿâÿçå#7!!!!!!÷›zZÛý¸8þXŒþt¸ã¼¼ýþ†ª†Âÿßÿç.å#7#!#3!3ô›zZõþ¾Bã¼¼ýRþ®þþÚ&ÿàÿé]ë#7#3õ›zZ#ë¼¼üþþÿ×ÿÍ\û"#7#"'&5476324'&#"3276ì›zZ+ff££fffd¥¥df’BCXVEBBDWXCBí¼¼þyÀlmmlÀ¼lmml¾–?>>?þÔ?>>?ÿÞÿçœå#7!#3?ó›zZdþËþÖ¯•48“å¼¼þCþ¿A½ãU[Ýÿäÿçë.#7!5676=4'&#"!53&'&/476323ù›zZÕþ¼c+*>wƒ>5A™!oÔ R,5þ $$$7. =Φÿ" Ä 9ÿçOå!#!Oþ|’_ýˆþÿèÿæÑå'3'&'7ÑŒý£(‡f# 1 Œÿýˆv_+/Fþ}7ÿçå !!!!!!ý¸8þXŒþt¸þ†ª†Â ÿçrå !57!5!!rý˜u%þ2þh ­zÑ-†vþ (ÿçŠå #!#3!3Šþ¾BRþ®þþÚ&ÿÛòó9=#"'&'&54767676324'&'&'&#"327676'!5!ò0.WSg[UY1500EBRF?D37”(*03*( !)'0A23þ~‚fvZW40',UW„ZNN2602LKe=3/$""#27B;0+$":9 †,ÿç¼å#3¼þ1ÿçÌå ##33̽øV>ÀþÂ\VþúþþÂ>þÂÿäÿçËå #'&'7#3Ë Â# 1 ¾›'‡ü_)!'Fý÷þ'ÿçå###3'73Ž¥z£Ž»­  ²«Üþ$âþþýö(8ÿç…å ##33…‡þ¯Ž‰QŒøþþþø-ÿçuå !5!!5!!5!eýÈ88þ>ÂHý¸H_†þH†þ4†ÿÍòû#"'&5476324'&"276òff£¥dffd¥¥df’BC°CBBC°CBfÀlmmlÀ¼lmml¾–?>>?þÔ?>>?7ÿç™å#!#!™þ¾bxýˆþ5ÿç‰å+#!24'&+3276‰CBgŸ'R&@))”@5Ÿ¡N#þF49!þÜþ $#/-5MÎÿçwç!5'5!!!wý˜åÃ2þ’Ö ­{ ïv†²þö ÿçxå###5!xîìj_ýˆx†ÿßÿçÎå #3?ÎþËþÖ¯•48“åþCþ¿A½ãU[ÝÿçÉé )#5&'&5476767534'&'676ÉZNx…xNZ,PwƒwO[1';9*0þè:(10)a‡UMJJMU‡B98,NSSN[M0'þ“ *3jm'.OQ3)ÿëÿçàå#'?# 3763?3à³½  »±)þú­Š˜¦þñ   þüoÂ&Èþ•ÿåÏê)#3#53"'&'&'&5;332767657Ï-.H"NO"-&$Œ 8ˆ5! Œpd:= ”” 2.Ezþ–1 éþ 1jÿçÙë13!567654'&'&'&#"!53&'&54767632Ù-.vþ¼c++)*3A.0(']þÆz-,((NPjvSQ*'riN1%~y)FHY3-0###$:9FVEI(z~(/Nd^WX9777WWÿõÿç9u #53#53#39ŽŽ¶ŽŽ\ß–––ürþÿßÿçÎu#53#53#3?¶ŽŽ•þËþÖ¯•48“ß–––þCþ¿A½ãU[ÝÿÚe/#74'&#"32#"'&547676763537#"'& ”}[2::!:v;U{??$$,+61!#z"$C+ººýñK1+'-WU+'T,JK–F:9%$ +þBz!ÿÝù37%#"'4767&'&5476732#&'&#";#"32767#7ù 53Pî! !:;z M03 "!7f8GG<f7!"g”}[¡I++«@"  %>U*+*+H-9"m"8-tººÿûÿ) '#776767632'4'&#"#?'632ù”}[˜ 9-,Š 8pŠ$7#( ººþÙ  +):5ýé&í0*‘þË·v ÿßI#"'&53367#7.L.@,)Š ,K”}[ ))Tœþu  “ººÿÙ÷q 1#7#53#53#"'&'&'&533276767653â›zZŽŽ¶ŽŽ 5,\d+3 Š  $" Šq¼¼þª–––þ>"#  &">YþÉ?  @7ÿÚe+ +4'&#"32#"'&547676763537#"'&‰::!:v;U{??$$,+61!#z"$C+K1+'-WU+'T,JK–F:9%$ +þBz!ÿ!õ >%#"'&'#4767676324'&+5327654'&#"32767665H:*ˆ)'1<0t<+0Œ'EKC:&2  5ÈA67 ! ÜÉb3% 4a2 6Y:| .+"_þ® ÿ!/+#5&/"'4767632/Lj  '  ;_ýýûúZ) h 5ôR ÿ×*ç2%#"'&547676763'5!#4'&'&#"327676*B=_xIF%$-%$ÝÀÙq5SŠ 3&{6 ú`@C!IG‹L:9  -žnzR'Vˆ,!"#$/Ÿ$'ÿÝù-3%#"'4767&'&5476732#&'&#";#"32767ù 53Pî! !:;z M03 "!7f8GG<f7!"¡I++«@"  %>U*+*+H-9"m"8- ÿÑç$'654'&#"'&54767#5!Ñ1|+]dXD4E­–}OL%,$$&*>z.ZA8€‹tW;zdGmlw>!)ÿûÿ) ,#76767632'4'&#"#?'632« 9-,Š 8pŠ$7#( î  +):5ýé&í0*‘þË·v ÿÛó"/#"'&'&'&54767632&'&#"#3276769:N=-0" 98YX89†?6áá *' hŽWZ(&04IDqtVV6556WR4Y=824hz@,3!3+ÿß.!#"'&53367.L.@,)Š , ))Tœþu  )ÿç #'#373©£ ŠŠ¬ºãüÝ8®®ÜÿúÿÝJõ+%#"/&'#'&'&'&#7632?JF)E X 1 r–Ï 2*˜  %@ìA9?$þà %  !$ Qþf 4ÿS)%#"'&'#"/#332?65?3"'5S!1  )33%ŠŠ@7 ˆ    Þþ±I% &Oþy) ÿêÿç #3'?67 ×t×’v xýÈ8þ¹4 / Kÿ÷ÿÒçB'6?4'&+"'.5676?67&'&54?#5!#";#"32Ò2w& 5F9>LH>>#$KLttLKŒ  $!:8#$^@D$# "DBa’KJJK’(# $'Y****ÿã‡!#"'&5##'!#?36?‡ADºFZ@ )!E7þ?ÅxxþË ÿ6-%#"/#476324'&#"3276604J4-ŠPMlxKJŒ&$79!%%#76%&g40ãï–EDNMŠV+*)(\\()(-ÿýÿ*10#4'&#"'674#'&'&'&'&54767632 7  V!3Q#* .Œ@0&*:/#%'@?NjGG+M!!=(5 "D$y1>LH>>#$KLtÔ  $!:8#$£HW^@D$# "DBa’KJþÝ(# $'Y****ÿã#?#"'&'&/5#5!È,>4"$ ¤ö©þï& € !=vÿÙ÷%%#"'&'&'&533276767653÷ 5,\d+3 Š  $" ŠÆ>"#  &">YþÉ?  @7ÿÒ# 8%4'&'&#27676332+#53"'&'&'&547676L!"*0þhP7'$-laCC$"?>TŠB94($(ú*$%þÉ$ Bh'(/,*%!Ã+(GBNHB>,(¾¾+$855965/!ÿàÿV3$+"'&/#'&'&##5?233727V-+&N§¤ûŽ %5)nŠ™Ñ} 'Ù /žù‚÷}'Ìþïÿ…%#5&'&5336767653…KBiˆiBKŒ ˆŒÖx>6ÇÇ6=yIþÓ8  «þU =- ÿÞÙ+E%#"'&'#"'&'&'&54767676?6=327654'&'&'7Ù ((6;,,;8%* *B * † * =*ñ<-3$'(&2,<4>@07 )H'%0(*@.$øø%-A))),+C+$40@<ÿÐÿß:é#53#53#"'&53367ŽŽ¶ŽŽÜL.E')Š ,S–––ý *)Sœþu  ÿÙ÷ë-#53#53#"'&'&'&533276767653§ŽŽ¶ŽŽ 5,\d+3 Š  $" ŠU–––ýÛ>"#  &">YþÉ?  @7 ÿÛ/#7#"'&'&5476324'&'&'&#"3276ù”}[Ü"!>>LH>>#$KLttLKŒ  $!:8#$ººýï^@D$# "DBa’KJJK’(# $'Y****ÿÙ÷%)%#"'&'&'&533276767653'#7÷ 5,\d+3 Š  $" Š”}[Æ>"#  &">YþÉ?  @7öºº ÿÞÙEI%#"'&'#"'&'&'&54767676?6=327654'&'&'7#7Ù ((6;,,;8%* *B * † * =*€”}[ñ<-3$'(&2,<4>@07 )H'%0(*@.$øø%-A))),+C+$40@<ÿÿOpÓ&(CäÞRsš !!!!!#5!#5è‹ýßþ‡]þñn(n:½}Ù}¥}`zzzzÿ\öÙ!32536?4/###5!#`¼eB3 .85FWª=yÙ#&'&54763!#=#"¦Ý³ÜX. ‰+7B–Œlcþü S;O¨,ý'}Û\eÿÿÿé %D2ÿé5 ):76632#"'&57676?675"1327654'&¶h +S K&P+~U= :_Bcœ9*z %u * ‚B!<!@"8G   1LW< St›N5fJ‹d  *þ¬G)7m+E*9f.<!,3!2##3273654'#'327654'&#< S-.(?-.Z^: %$^dC "'(?7%EA,'®a 'Ïq' )<˜##˜ÐŒqþUÿƒ–%3#5!#53676=!3#DRnþ]n>1¢þñŠeâ}}â—>I˜þU:3¯ÿÿÿé %H%#'35373#'#L‰³Õ±”„Œ„”±Õ³‰ŒÆÆ(ô½½½½ôþØÆÆÿé%675327=4'&#"#67632#"'&53327654/9&#Î^>-c‡g7K‹8;< 7O>Ud2ŒC :!A!;PY8M}‹S@XþæölH)9j+E*8m,ÿÿ"ÿé %F¯###5¯‡Œ‡qþU«qÿÿ ÿ%\ÿ&˜Ï"3F%#"'&54?676723632#"'#"327654'#&!"327654'9#&”2dhA97,Pd2Œ2dQ> 7O>Ud2ŒvE8"C :WC :!@!;@X[PsuP>YþýY8M}‹S@XþæŠJ)9d-H)8i-H)9j+D*9m,ÿÿ[<ÿƒu 33333#5<ŒËŒVnþU«þIâ}<333#5#"'5&5<ŒxŒŒv›$ Ö'ýä¥d!<: )33333:ýŒ«Œ¯ŒþU«þU«<ÿƒ±)333333#CüùŒ«Œ®ŒxnþU«þU«þIâ—3#5!32#'3274'&#¿«7l7" .ZmMC «qµ\+8<0 'ù‹F: <Î2#!33274'&##47" .ZþåŒmMC žŒg\+8<0 'µn‹F: #ýä<2#!33274'&#47" .ZþåŒmMC g\+8<0 'µn‹F: "ÿé %$753&'&#"#67632#"'&'332767Ë®>= † g4DŸ?!t9P€A#†/JÏq,.3„5C`´D"\1ENR<ÿé,%'%##3367632#"'&"27654'&.fŒŒfƒ,6³8m=Wª<÷N AL HÏÏܧ.•#@`4<˜ ##%#7˜ÐŒ~FFqþUú––"ÿé %'%#2757673#"'&547632#&'#&#"3a¯C<† `7Gž>!w9OŠ= †,>®Ï`7|7|A]»F!b!((M.,ÿé%2#&'"3#"'&53327654'&/&/&547632ù‡d@±i<`4J˜9nH# 3iQ30 $* 4!7l.['ÿÿCÏÙLÿÿÿ÷ç&ñiåÿÿÿ&ÒÙM_".!##5676=!32#'3276754/“ŸY+C9 ·l7  *Sm; («3þþM%‡j,e˜Ý\ +$ $Ñc  ?b(32#!5##3353276754/"l7  *SþåËŒŒËŒm; (Ý\ +$ $ÏÏÜÜþµc  7Ù33#632#4'&#"1##53\Œªª:eH17Œ.BŒFFÙ:hrW).cþŸA+!4þÅ7h;$ 73#'#37#7Ç¢”Öý¶§ŒŒ·~FF_½ôþØÆÆú––< 33##3#<Œ¼›Œ¼›~FFþ©WýäWþ©–ÿÿ ÿ%&\Gj#<ÿƒ  !#5#333en»ŒÌŒ}}þU«ýäLyÙ 32#!3327654/â»|;%‰+7þ¾–ŒlcÕ`%SJJ`3#53!à–j–þ–Ùˆþü@œš##35œÐŒÜšïþU~JJÙ3#!!à–þ–Ù}<˜##˜ÐŒqþUJJÙ3#!!à–þ–Ù}<˜##˜ÐŒqþU6Ù # 333 ##Ûþî³eþǤõ–õ¤þÇe³þî–þãz_þéþéþ¡þ†þã%#'35373#'#L‰³Õ±”„Œ„”±Õ³‰ŒÆÆ(ô½½½½ôþØÆÆ ÿéyå03274'&#"#47632#"'&'327654'&'&+úL‰B"‡Œ3K ¹@?RzHi×@’o/l O f¬g< d ^9Sp/A]/-bŒ<$Ž+8d<Sÿé%675327=4'&#"#67632#"'&53327654/9&#Î^>-c‡g7K‹8;<]†F þ– >9 þž%0O2 _Ø bb˜g.haM%3ˆ  5'»22c ;S>1) N&  ?3 `†{ÿÿRsš&¨G¯®ÿÿÿé Ý&HG]ñ,ÿé­å%%!32?54'&'&#"#676732#"'&5 þ´ [!t-\#- Q* *Sž°ZDvU­Q9ùl rЍ=54X8nƒc™ÍgI†^–"ÿé %%54'&#"#67632#"'&'5#327~B<† `7Gž>!w$,Š=OÄ0 > z# 7)|7|A]ºGb0AN`B .ÿÿ,ÿé­·&8i¿Ðÿÿ"ÿé È&9imáÿÿ6…&©i€žÿÿÈ&Éiìÿáÿÿ ÿéy…&ªiXžÿÿÿéÈ&Êilá ÿéyå03274'&#"#47632#"'&'327654'&'&+úL‰B"‡Œ3K ¹@?RzHi×@’o/l O f¬g< d ^9Sp/A]/-bŒ<$Ž+8d<Sÿé%675327=4'&#"#67632#"'&53327654/9&#Î^>-c‡g7K‹8;<ÿ8X&'&/&/&'#'#53} 1 ºÅS=%$ È51  s $4@ ýÂLX0!1#5367376?675175&'&/&/&'#'#53ź6    0 ºÅS<%$  %@Os ( ‚1  s $4@ ”E/ $! >Sî!%#567676767675175!3!š‹=þv‹Š BeekC ($ (B –¼E#/%$PeX )!25&/&'#eýë XED ‹! ((X,+J"$þþ2 þŽCyX##5!2!5354'&'#'1'#'&#*HŒH[,F5M'þòƒ  "åþås#B+>þsþ   Oÿ8ÚX3O‹È üàIgX)535&'&/&/4gþâ“  )-ZM(*sú1 s-<5LÿÿaXD!1'&'&/!3'6?376?675175&'&/&/&'1'#31VLP&*GD $#  %QL     1 z +-$<5v#$4@ ”E/ $-t  ( ‚1  ú1 <ÿÉCX%67176?3573Z)‹  &D!þØqŽˆ&Rþ¤H* Lx$óHÿ8NY$&/&/1/&#;#&'&'&=!Ó !5A>%1E2M'È7*  O#s ,FË#B"5ýÃOUXG!1!5367676?5676?5&'5'5/&'5#/&#;#&'&'&'=!2+Oÿø/"  “ !5A=$0F/M''M)Bs  „*  O" s -@Ë#B"57B#ÿ8 X6?6753#3Q‹ "' ‹Éžj*œ§8/% þ?æ:=^X676?176?53!5!3u ‹ ";¦ýø þÇžj%œ§8/-þþsåPÿ8WX%15673176767675!5!#éB9)  þ„ #þÊ‹^%t )Èsþ¼E3 ÿýÅ;?X1#&'&/&'#'&/#53‹ 1 ÃÏT<'# vþŠm1  s $1ALÿX/3276=3+;276717653+"'&'&53×D‹:1N5'!O"%)‹'-N@POPAM.&‹CÕÕP// # "!Oþ±A:F&""%G6EO>ÿÿ­X4'532?6767675#5!1#&/&/&'&'H/F:  B.U>)# ‹  0åÿC#$t" üs !2@þŠn1  OÛX3333O‹v‹Xý¨Xý¨I×X33Ô‹‹x‹M9Dý¨Xý¨IÖX33Ô‹‹‹‹M9Dþõ9D2Ö¼Ù#'5¼*8(Ù‚‚2Ö¨Ù #'5!#'5¼*8(v*8(Ù‚‚‚‚ Å ##5!53# JŒþ䥌¹tv²þL/þÑ*ÿéÇå(#'#"'&547632#&'&#"3276767#5ÇZDj•``o`’¦W5 2O{4O6KW:¦ˆþv`dml¥·j]d7I? cIlUBVI*:f+F(7b1CÏÙ#ÏŒÙý'Ù<8%(36?2672#4'&#"#4'&#"#<‹6> `+:dv'Œ1 FŒ1 FŒCA CMX"-þ‚h5@þ¼h5@þ¼†ß*-#'7&'&'476323/32?*þr‹ *$-' BEDeN!,4'  ,ÿ7›`!#53%"'&=3!274/7#ýrrþÕQ1$q & 3b!K%ÉsV.*VH6 cD4 G l#,›©&#53#53"'&=3!25/7#?ee‰eeäQ1$q'3b"$FDeeeþW.*UH5  dC-&%* G)-,› *#3'#37#3"'&=3!25/7#-ee~dd>ggþåQ1$q'3b"$F™gggàfþT.*VH5  cD-'$,G(.-þŠF%32?#"/&'&54?67/'?6323# Y(# 09\#BT7-T,"6.Z0-?"(86T &9!(Ì <  *"¨.+B/7iIEbWV! ^  z  -þŠQK#533276?#"/&'&54?67/'?6323# sqq(# 08]"-T7-T."0.Z0-?"(86T &9#&Ì <  *"ßrþW-,A06 iHEbWV" _  z  @þóŒh%'#"/#"'&/&=?7654/73276=33274/7òCG(!* '9MzgO1. b  :!k4, `/ !%i,7a   0"V4 < R&53W$#$ E")&$>'6-[,'?/=V',$x2 4"55(<. #" ÿ÷Ï-7!5-ýÊ7hhÿùÏë7!5ëü7hhCÕÊÙ#54767673ʇ*%5PPÕmM%.FBÕÉÙ 356'#B‡*%5SPÙmM%.JBÿyÉ} 7356'#B‡*%5SP}mM%.JGÕ±Ù#54767673#54767673·*%5PPã‡*%5SPÕmM%.F}mM%.JIÕ¸Ù356545#7356'#I‡*%5PPè‡*%5SPÙmM%.F}mM%.JHÿy°} 7356'#7356'#H‡*%5SPá‡*%5SP}mM%.J}mM%.Jÿ> Å ###5353 ³†³³†åtýÍ3tààÿ>Å#3##5#535#5353³³³†³³³³†åtßtààtßtàà2¯,©2#"'&5476±?%4!(@&6 ©5 (@&4 )B%\Œ’ 7#5!#5!#5ò–ã–ã–’’’’’’’ ÿêÞã $4DTd2#"'&5476"327654'&%3#2#"'&5476"327654'&%2#"'&5476"327654'& L,9)3J-:(3)%*%#!D²?#!>ŒD)Dz  •"AB`G¡Ù##5!##33#/_‰m?^U[‰VT‰[‹þ†zNNþ†]þ£Èþ¢^þ8]iº{¸!55!{ýÒäé) «þøö¨ÿñÊî*9'632#"'&54767632654/&#"9#9&#"32?6f(>FwKF+ Br\8*A2H5.3 2%I#&û&CB,$< J+ ž4ga‘yvG4G_J2$I'qL4 þŽ?I;Pn`6ÑÙ33%!Áýü? Ùý'}éÿ ¶ø#&'&#! !27676?3&#!" 3h#@þû þÞVJ 1þ!)"Yþ§98ñ Lþþ²! jx Ã(¬ #!5 þ#wwÿÜ‘ '7Ü$˜ñ^”Á‘üPñ.!Iþt2ÿ»7#537#5!73#3!'{I‰DÍAb#T–DÚþãDa4wywu8=wywy8-ÿö %!5 %5þéþ‚~þQ[[.m…ƒo¶x-ÿö %!=-5þ~þ‚éQ[[Jm…ƒo¶yfÿš• 5#" &h#2kqÖÌ99‘ý/ž­ ¤ðcÍk¯=Í#;`È ¿ýA÷ÿÿü3 3#$54'&'&'&' 6Ík¯=Í#;`È ¿ýA÷1þÝþÎkqÖÌ99‘ý/ž­ þpþ\ðfÿš• %&'5327676767 ˜þÝþÎkqÖÌ99‘ý/ž­ þpþ\ð•Íþ•¯=ÍþÝ;þ È ýA¿÷ÿÿü3 #67 üþÝ;ÑÍþÀb4ªþœ÷ýA¿ê 1ÂÌ::•šŠˆþw¹ð¤Ä® BŸ=t'767654%3#…·‰:­ ½«À+ý½TTs6#YA7 c®ÌrN!þ+Îè # ÀÀ>ÀÀ   ¡èþŒþŒttýT88þÈ9=V+ 676545%2#"'&'&547676Ëö5;ÿžro ii™Ÿso jj›Øý²+Ÿ1=\fcŽ’lk fbŽ“lk 9=V+-#;67654'&'&'2#"'&'&547676ÉqNM QTtpLM QSsžro ii™Ÿso jj›Å NOk hGJ NOj hHJffcŽ’lk fbŽ“lk  ÿÔÿè§… &*29I%+"'%"547'763273&7677#"'&''672#"'&5476¢s  ýæ8@tt 4;'ý5z.'(z//þ)) (+ *lLKLLkkLJLKÚ9!yt& î8!xr þð+*$**/&þî{ ózÄHGcdGGHFddGGÀ™ô 3#3#3#ô¥¥þ饥þ㥥ôý'Ùý'Ùý'ÿþ£(J%%7276545&54'&'1&'!"171363676763!211#!"'&'&=@ þ–þ¶ ¬:   8ýV:   / ª 0Jªm hýRiSP11ü¶ (þ=    =þ> Th iþn 1(Y§e0&'&5"#327654'&'2"'&'&547676óê"ƒ\@\\ƒƒ\\\\€£yun x¦£yunj‚æ 0]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e1&/67"#327654'&'2"'&'&547676 þâƒ\@\\ƒƒ\\\\€£yun x¦£yunj:¡  *]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e1&/&7"#327654'&'2"'&'&5476767þÃ\@\\ƒƒ\\\\€£yun x¦£yunjêR&]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e1%&=67"#327654'&'2"'&'&5476769þ¹ƒ\@\\ƒƒ\\\\€£yun x¦£yunj—$]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e0%"#327654'&'2"'&'&547676&þØ ƒ\@\\ƒƒ\\\\€£yun x¦£yunjD•b]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e0%'"#327654'&'2"'&'&547676ý÷"ƒ\@\\ƒƒ\\\\€£yun x¦£yunjúÜ!]]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e0%""#327654'&'2"'&'&547676¶#"ƒ\@\\ƒƒ\\\\€£yun x¦£yunj½ V]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e0%&"#327654'&'2"'&'&547676wh# )ƒ\@\\ƒƒ\\\\€£yun x¦£yunj“; M]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e0%&"#327654'&'2"'&'&547676#,ƒ\@\\ƒƒ\\\\€£yun x¦£yunj{KE]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e0%&#"#327654'&'2"'&'&547676ÑC)ƒ\@\\ƒƒ\\\\€£yun x¦£yunjzC;]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e0%&'&"#327654'&'2"'&'&547676|”*ƒ\@\\ƒƒ\\\\€£yun x¦£yunj( 3]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e1%7&'#"#327654'&'2"'&'&5476764Ü #ƒ\@\\ƒƒ\\\\€£yun x¦£yunj´÷".]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e17%4'#&'"#327654'&'2"'&'&547676úƒ\@\\ƒƒ\\\\€£yun x¦£yunjíµ#*]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e2%654'&'"#327654'&'2"'&'&547676Ï9ƒ\@\\ƒƒ\\\\€£yun x¦£yunj4i  &]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e0%6'&'"#327654'&'2"'&'&547676¶J ƒ\@\\ƒƒ\\\\€£yun x¦£yunj†$]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e3"#327654'&'2"'&'&547676µHƒ\@\\ƒƒ\\\\€£yun x¦£yunjÚ f]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e2"#327654'&'2"'&'&547676É<  ƒ\@\\ƒƒ\\\\€£yun x¦£yunj,W e]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e0"#327654'&'2"'&'&547676ò!ƒ\@\\ƒƒ\\\\€£yun x¦£yunjw¦" b]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e0#"#327654'&'2"'&'&547676+æ ƒ\@\\ƒƒ\\\\€£yun x¦£yunj±é"`]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e0'"#327654'&'2"'&'&547676t¢ !"ƒ\@\\ƒƒ\\\\€£yun x¦£yunjÝþâ Z]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e1'&'"#327654'&'2"'&'&547676ÆR %ƒ\@\\ƒƒ\\\\€£yun x¦£yunjöþÂQ]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e1+&'"#327654'&'2"'&'&547676 &ƒ\@\\ƒƒ\\\\€£yun x¦£yunjúþ·G]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e0'&'"#327654'&'2"'&'&547676mW %ƒ\@\\ƒƒ\\\\€£yun x¦£yunjäþÄ @]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e3&'1#&'"#327654'&'2"'&'&547676·¦""ƒ\@\\ƒƒ\\\\€£yun x¦£yunj»þæ7]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yuY§e0&'&5"#327654'&'2"'&'&547676óê"ƒ\@\\ƒƒ\\\\€£yun x¦£yunj‚æ 0]AY!"ƒ]\\]ƒ\]hmk¢y nmjœ£yu.ÿº(8AHPcv#'#"'&547632#&'&#"3276767#5#321#'32?4'+%#'373#5#5!37!676545&#!67!!&547C- "5 J0070IS,F '>'&+SþUK¡Y.%^F70 F±?{KQPKþ7Ko$þ‰9}:KýƒQ3ZÄ#@ /ý<$>ì:< BAcm@8<$3A#3P,'!KJœµQT'K8 <†¶‰‰——ýƒ"4#}T.Z Rý<". A gBÙ<1/1#"'&54763237'3&'&#"2327670'1#"'&547632`ð&=C(7#+;*8ÊÓ˜.mHP‡aF_^‡‡a/™výŠvýŠvýŠvýŠÞP11ü¶ (þ=    =þ> Th iþn 1( ÞŒ"&,26789:;<NSY]cimnopqrsƒ276765776773#'%'67654'7&''7"7717172#"'&5476'67654'7&''7"7717172#"'&5476KxO 7™K|F PZZPüÖxe"3Iu$AŽe*"5‚Œ^? F;N_>3H:¿e#3Iu$AŽe("6‚‹_>3H:N^>3H:ˆ_ K^}0þ2¨y[„E/8)R@…f]… 215)­…*CfH ( ^>4H:N^?2ª[…E.9*R@…e\… 315*®…)DgH:N_>2F;N_>33ÿ©µ*)A%'&'7'677"232767654'&'"'2#"'&'&547676úD ›šUÂÂ#Bš›+&ÃC‹ddb`Š‹ddb`Š«{qn¢ «{qn¢ÎHÂÂ"Cš›NÃÃ9›VaaŠ‹dcaaŠŒdclrm¢ «€{rm¢ ª€{ÿôÊ 7!!7!!'!!7!!'!!7!!'!!âýÊâýÊâýÊâýÊâýÊâýÊâýQ]Ó]Õ]Ö]Õ]Ó]Õ]yÿ¼gd 8P654327#'&'$766'&#"3767676547#"'&5476767632XœÓ=Œ Á?E p4;?6‹‰í0Q',qz/0Q',qyJ?r+8—¬:4l@@r+8—¬:4lþ;' Ew&(«— '‰«¨!/ #qy‰# Q0/ #qy‰# Qa?m—¤>8—.?@l—¥>7—.‹ÿ{z@ $2Ha%''"'327&547&'6766767&#&#"327676?&7#'&'&5476767632Y$þ¹8 Ì þ¼"0»/ Z}t2"¿zqýî}Mc VlH‡ 7!&OD[ 6"&NE[5+]p~(0+]p~Háþ¸ & ·þ¼2ý/P(+lZ~ .š‘œzvJ3YlQC D[d'/ D[d&/>+Iqyq *Jqxp¥ÿp\'4%767454'&'&#"32767'"'&'&547676323up¨'(²†up¨''†N.53WG>•mk fe‘”mk  –C? ²†up¨''³†7"F@ fe‘•mk fe‘HF¥ÿp\'&[%76767&#"2"#"'&'4547672767454'&'&#"32767'"'&'&54767632ªŒY|!•Y J‹dba`‰‹dba`‰t3up¨'(²†up¨''†N.53WG>•mk fe‘”mk  œ@»b> J ?z1Œa`‰‹dba`‰‹dbþC? ²†up¨''³†7"F@ fe‘•mk fe‘HF zÿd³ !-%!5!5!!!!##335%35!#5#!5!! ëýhzë*ýÖ²¾þBA^6”XÇýÌãþ%ˆFî^þçÿÔ¥NN˜îîþ†,þÒ·ü€´ü CCDDÞýM³ý![[[[üøÿ¤i%47632#"'&632±#)#(2=::9t( $( $ BBý–3ÿ©µ* #;##5#5353"232767654'&'"'2#"'&'&547676å¶w¶¶w;‹ddb`Š‹ddb`Š«{qn¢ «{qn¢žw¶¶w¶¶ aaŠ‹dcaaŠŒdclrm¢ «€{rm¢ ª€{3ÿ©µ*3!5"232767654'&'"'2#"'&'&547676¶þzÄ‹ddb`Š‹ddb`Š«{qn¢ «{qn¢­‡‡aaŠ‹dcaaŠŒdclrm¢ «€{rm¢ ª€{ûÿk Ç 0d3!5%!57'727654=4/1&'#"13923&#&'&=15'47676;219''333!53533~-¨ûþAŒÀ`mcÎÍAA  Í H05ýï50Þþn’ýði!!x  ý™™ ™  ˜!Æþ]kttk£0ÿîÛ  &-1:BHuy5&'33#%!5%#57!535#'!!67#576767%#;?735#%!3'6#&767671654'&#"#6767632#5Õþ´ƒƒþÍþÔ,cfü€þ€·„7æþ¿, Ì;6"ðü݈‰èh ã:u0 þfþðÎ#|)(8 1=ˆ)Aƒ‚F++  0 –C#]þ[[[[]]y] 1>]B7]= %]Õ]]  î\# N\!ýòR5#.B :%0l:YU5I N2 "e’’ÿïÿù< %3#57#5##3353#ûø:kþªfi¬g`oŠHHŠHH<þ2þmüäšc+y++y+tŸ^ƒƒþ¢ÿÿ£ .P7%%7276545&54'&'1&'!"171363676763!211#!"'&'&=Ÿ„TÛ“"@ þ–þ¶ ¬:   8ýV:   / ª 0Jªm hýRiôþ†Bþ¹ÝZ[P11ü¶ (þ=    =þ> Th iþn 1(ÿƒå  "%7'7%7"327654'&%!!³}b_œ7B‘³_<þöeþœ€[Z[[€[Z[[ý­Ôþ,^=*e=sÛ|aL›6K[[€[Z[[€[Z“ü‚þôÿd8r!%)57#7###7#537#5373373 %''&54?632_ i F 2(j(Macw"i"g"i!+’+þ·Iýn2þùo2þùj_þùb±êQ¤$™ #ÌÌc™c®®®~ý (rIþ·„2þùo2þù¤_þùb²ÿ¬ <q'/6:>!3#65'&45&'6%#&5476767'7!!#5537!!²a7.B7N Y?¾¾CüÿN >7B.`C¾¾?•ýá44-ýì>þM³_%%7:97+A/5lrAœ47,-:6%%j2Arl5/£–3É901dýì)¿4 #'!'7!355%!!53)53!#5)#5!!þ¹XXGúXXýFHþgþ{*^R*þ*þ®þ¢*Q–üj„FfcAAcfFæþ\¤ý˜zBBz2{CC{¦þÿÿ£ 4V%!5!!5!!!%%7276545&54'&'1&'!"171363676763!211#!"'&'&=üñüñüñüñ@ þ–þ¶ ¬:   8ýV:   / ª 0Jªm hýRi„l}l¡þó(P11ü¶ (þ=    =þ> Th iþn 1(ÿÿ£!(,/2Uw%!"#1'&'&567156363!1''7'!5%%727654'&74'&'1&'!"17963676763!211#!"'&'&=Jýq $   7ˆ5  ‡?-‰%þ)P:@ þ–þ¶ ¬:   8ýV: 0 ª 0Jªm  gýRjj ;ä:    :þ1  5¼&‘ NççåP11ü¶ (þ=    =þ> Th iþn 1(ÿâ×B !%#7#5353'3!!!%!!qþKFfcABBAcfFþ“:üÆ.–üRÆü:þô Ú`XX`ýN`XXmý üÌ4ü ÿâ×B !!5#7#33'3!%!!qüøSFfcABBAcfFþe–üRÆü:;þ­n`XX`þr`XXÄüÌ4ü ÿÿ£#GJMp’#&'&#"327673#"'&547632#&'&#"327673#"'&547632%%7276545&54'&'1&'!"171363676763!211#!"'&'&=×E '7 -5F7&5R+!9*=M*E '7 -5F7&5R+!9*=M*þ¯@ þ–þ¶ ¬:   8ýV:   / ª 0Jªm hýRi%&P ,{*@k5$\Go–I5L'=%&P ,{*@k5$\Go–I5L'P11ü¶ (þ=    =þ> Th iþn 1(fÿ¡‚o !!!!?#? '7äþƒ± þª× ‘8 {þÿZ˜òW'º”=öPt?<þ™PNVOý ¬üPñ.OTþÅfÿ‚º!!!güæPz¹ý ¦ýªV zÿùÊ( %+17N%&'&'%67656767'327'7'7'7'6321?2327654'&#"#'â2& –zô2& Ü$ Œ2& °¢ ¼zô2& Ü$ þ `ð&=D(7#+;+8ÊÀž  Îp &ž  ^¢ ^ž þ²$ §p &ž ^¢ Éþ–4}+7#+D(0 €h$(JNRY]aeio7'7276545&=4'&'1&'!"971323676763!211#!"'&'&=!!5!!7#!7!&'5'5'53'5'53n µ¥Vþ«U %U7  4þ©4 èýûÛý%·· þõ(×········Ý'Õ(þ[þþ *4   5ý7   þÏA©A¥A"FBBm<;dABi=Ad†%3#'35'!3!53#33#'35'!!7!!'!5%!!7'7276545454'&'1&#!"#131327676763!211#!"'&'&=15B€€¨ÀND]jH>Ë,(. '. ®QJdoLCPJdpLC ÿ_ÿEð'+/5=E'%7%77'7'77%?7'' 7#'3%%!!!) -H˜'rþþ9KE{6i3¡ 9oÒþq!Z<3EKW0-{oo þÔ'þæç ¨ý¢uNÎ<þäÌœ6À6ÀþÂ95`;'þzHÉÓþ­ýµS"ýéþË HHýhK°"™ýé¦ý– ÿ C Bd!5%!!!!!!!!!!-%7276545&54'&'1&'!"13231363676763!211#!"'&'&=¬Óýôý Üý$Üý$üîüî“@ þ–þ¶ ¬:   8ýV:  ) ª 0Jªm hýRi¹ÞÞÿ0’þtZjZËP11ü¶ (þ=    =þ> Th iþn 1(ÿÁÿ7'k %7%'7 xÏþÁM:_:þ[Úk…þÈÀÆþqïýÊL9oÐô:þZ—l…þÈ®@ýïpþÍêÿÄ 356545#pz9%CCMî%#5476?;7675!3!‹F0l <ý|‹„C V)3eek?F0-3B –¼D/''4P_X )!25&/&'!_üñXED ‹! ((þ‡X,+J"$þþ2þŽ? X#&'&/&/1'&/+'!5!1 ‹ 1þCÉT<'# vþŠm1  s #2@>ÿÿ§X5'532?6767675#5!1#&/&/1'&'&'H/F:  B(U>)# ‹  0åÿC#$t" üs !2@þŠn1  2¬Ù!5353þ¶w#ww¶¶LÿÑ/33276=3+;276717653+"'&'&53%3#×D‹:1N5'!O"%)‹'-N@POPAM.&‹³RRCÕÕP// # "!Oþ±A:F&""%G6EOyRLÿÑ/33276=3+;276717653+"'&'&53'3#×D‹:1N5'!O"%)‹'-N@POPAM.&‹rRRCÕÕP// # "!Oþ±A:F&""%G6EOyRLÿÑ/373276=3+;276717653+"'&'&533#3#×D‹:1N5'!O"%)‹'-N@POPAM.&‹RR°RRCÕÕP// # "!Oþ±A:F&""%G6EOþ¯RRLÿÑ/373276=3+;276717653+"'&'&533#3#×D‹:1N5'!O"%)‹'-N@POPAM.&‹RRþ‹RRCÕÕP// # "!Oþ±A:F&""%G6EOþ¯RR=ÿrŠX"#5676767'36?53#3#$‹ —¡Ë$‹&˜£çÈÈ,;”ž]4Ôþã,7œ§Y9%Ôÿ8X&'&/&/&'#'#533#} 1 ºÅS=%$ þÐRRÈ51  s $4@ ýÂRLX04!1#5367376?675175&'&/&/&'#'#533#ź6    0 ºÅS<%$  %@OERRs ( ‚1  s $4@ ”E/ $! RR>Sî%3##567676767675175!3!èRR²‹=þv‹Š B£RìekC ($ (B –¼E#/%$CyX!##5!2!5354'&'#'1'#'&#3#*HŒH[,F5M'þòƒ  "RRåþås#B+>þsþ   ’RIgX)535&'&/&/43#gþâ“  )-ZM(*þæRRsú1 s-<5#RLÿÿaXDH!1'&'&/!3'6?376?675175&'&/&/&'1'#31'3#VLP&*GD $#  %QL     1 z +RR-$<5v#$4@ ”E/ $-t  ( ‚1  ú1 ßRHÿ8NY$(&/&/1/&#;#&'&'&=!3#Ó !5A>%1E2M'ûRRÈ7*  O#s ,FË#B"5ýÃTROUXGK!1!5367676?5676?5&'5'5/&'5#/&#;#&'&'&'=!2+3#Oÿø/"  “ !5A=$0F/M''M)B RRs  „*  O" s -@Ë#B"57B#„R=^X676?176?53!5!33#u ‹ ";¦ýø þÇžeRRj%œ§8/-þþsåþÇRPÿ8WX"%15673176767675!5!#3#éB9)  þ„ #þÊ‹ÖRR^%t )Èsþ¼E3 ÿýÅ;R?X1#&'&/&'#'&/#533#‹ 1 ÃÏT<'# þÈRRvþŠm1  s $1A1RLÿX/33276=3+;276717653+"'&'&533#×D‹:1N5'!O"%)‹'-N@POPAM.&‹RRCÕÕP// # "!Oþ±A:F&""%G6EOþ¯R>ÿÿ­X48'532?6767675#5!1#&/&/&'&'3#H/F:  B.U>)# ‹  0RRåÿC#$t" üs !2@þŠn1  ’ROÚæ333#O‹rRRXý¨æRMbæ!%5&'&/&/&/#533!53#| 1 ª¶T<(# [ýëYÈÈsú1  s #1@þýsssRLæ04!1#5367376?675175&'&/&/&'#'#533#ź6    0 ºÅS<%$  %@OqÈÈs ( ‚1  s $4@ ”E/ $! åROUæGK!1!5367676?5676?5&'5'5/&'5#/&#;#&'&'&'=!2+3#Oÿø/"  “ !5A=$0F/M''M)BÈÈs  „*  O" s -@Ë#B"57B#åRSŠî536?53#S‹Ë$‹&˜£9µ–þã,7œ§Y9%Ô þŠM#5332?#"/&'&54?/'?6#";#"/kqqã/5^#BU7-TF!5-\.-A "*26D* * : $-Ë * ") J_f>#')%*#xr8D/3iIEbNa ] z'  M)= 70BLÛ_<õè»–s1»–s1þôþÓÓþZÅþôþ¶3°!MMpÚ2,,yÒ7î2M(M…H2@M@,,D,,,,, ,,,MqMqH(H2H(c@ÏÒÒRÒ,ÒM›OcJ *ÒD?,ÒJcPABÒD (›L +ÒP› cÒL›° ››cMBÿôMH=,ÿêM,c;,"c,Mc"cCC,;Cy<c?c#c:c…?,Mc:, ,, ô…%d…HH<MB,$,,,d,!Máÿòr,XH(áÿòM^—H8__Myc:,@M_(m,Xe(e(ec3ÒÒÒÒÒÒèÒ,›O›O›O›Oÿö?ÿíÿ÷ÒÒD ( ( ( ( (HO ÒLÒLÒLÒL››LcC,,,,,,y,",,,,ÿöCÿíÿ÷c#c?c#c#c#c#c#H2c c:c:c:c:, c:, Ò,Ò,Ò,Ò,,"Ò,,"Ò,,"Ò,,"ÒMcÒc›O,›O,›O,›O,›O, *c" *c" *c" *c"ÒDcCÒDcCÿÙÿØ""?C(?ìC,ÿíÒJ,;=<cPCcPCcPCcP,CcÒDc?ÒDc?ÒDc?c?ÒDc? (c# (c# (c#è°ÒP…?ÒP…?ÒP…6› ,› ,› ,› ,cMcMcMÒLc:ÒLc:ÒLc:ÒLc:ÒLc:ÒLc:°  ›, ›côcôcôM,› ,cMMM M#MpMMM-Mÿ÷MÿÔî2üÿßÚ;bÿâ‡ÿß®ÿà‚ÿ×ÅÿÞLÿäüÿî°1‚9èÿèÆ7° ç(*(,è1èÿä\'ʲ-6 7º5°°èÿß ÿë% oÿõèÿß:TÿûN?@Ol : JÿûJZ@)lÿú›44ÿêÿ÷b Ñr Sÿý¤ P?!xÿàÒ tÿÐ?b ? ›OÅRcJÒ,› ?ÿ÷,V.YDÒJÖDÎÒDÒÒRÒRcR„#ÅRE  õRõRîRÙ$jRñR (ñRŸRÒ,cÎ|›0R­D!DŸD µD¯LÒ,UDº,^2<<Æ<­,)"g<g<=<Aš<[<c#[<c<,"Æ, ½,Œ<B<v<È<µ+<2<4"Œ<T,,^Æ<,",Cÿ÷„c?^=;`<, `<¯L2<›Lc:cJÆ@cJÆ<cJÆ<E)  "ÒJ=;ÒJ=;ÒJ=;ÒJ=;ÒD`<ÒD`<ÒD`<Ò,,"Ò,,"cÆ›,›,›,.D­<£DD<£DD<£DD<Ò,,"Ò,,"?E)ÒJ=;ÒD`<£DD<Ò,Ò,èyÅR,Ò,,"Ò,,"E)  "  "õRg<õRg< (c# (c# (c#Ò,4"Î, Î, Î, ­DB<µD+<R[UURÓÓÈÈRURR?È)OŠeMqRÊ=‹M-/~?ªO)O»?ªOžLIN>SL›>«PÀC)O­IžL<•H”OhŸ= PX?HLô>*O&IIî2Ú2, *° c"Cy<L†›,š,š,‰-À-Å@,ÿ÷èÿùCBBôGôIôH,,^2è\è MSMP§ÿSP,èGèiêÙÇH($2H-H-ûfûûfûèBé‘9‘9!ÿÕèÀÿþ#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y#Y.DgèþÿÚÿÿx è3èèy~‹è¥è¥èzèè3è3èûI0®ÿðÿÿèèþõèÿ­è)ÿÿèèÿÿèfèfèzè€èÿ€èÿõèÿ°èÿ¸èÿ`èèÿÂMpc c I1IVÄ=x?¤OML•>¥PR?î>H2HLHLHLHLÊ=Ê=Ê=‹M-/~?ªOo»žLb"N>SL›>ÀC­IžL•H”OŸ= PX?HLô>)O‹MSL”OÊS| +CqÄ.Œ›»Ú÷ '4@M…–Ð5jÆåCŸÀÓçùDËåSt‹ Þö'AQk‚Àé,mÁÓò  : P g y ‡ ˜ « ¸ Å  G € ¶ ò  [  ’ ³ Ë Ø  7 i   Ø ñ = _ € ’ ® È íHU“ºÐ q¸Ûï\n×"<L»ÈüOŒšÌë÷%6o‹·Zžª¶ÂÎÚæ jv‚Žš¦²¾Ê)5AMg²¾ÊÖâîdoz…›¦fq|‡’¨³¾ +7COg§³¾ÊÖá ,7CN€äðû)5@LX“ÎÚåñü>‘¨´ÀÌØäðü !9]it‚›¦Èïû ,Q]hp|ˆ”Ÿ«·ÃÏé $0<Hj£¯»ÇÓßë / œ § ³ ¾ Ê Õ á ì ø!!x!é!õ"" ""#"/"A"c"o"{"‡"“"Ÿ"«"·"Ã"Ï"Û##N#Z#f#r#}#‰#•# #¬#·#Ã#Î#å$$)$4$@$K$\$m$‹$—$È$è%%#%<%^%‡%¦%Å%Ù&&2&y&•&à&ñ''+'E']'½'É'ã((#(:(V(†(™(Ê(ç(ù))W)‡)Æ****O*™*í+.+V+¥+è,E,o,¼- -B-|-È-é..F.….ª/ /N/|/·00J0u0±11B1u1Ý2 2R22ß3N3Z3}3±3Ç44V4^4j4r4º4î5515L5v5Œ5”5À5È5×5ü66:66–6Ç6à6ÿ771797L7u7}7…7˜7×7ß7ö88*8F8q8Ÿ8Å8ÿ9I9t9|9Ô::':K:S:r:½:Ó;;;5;O;d;l;~;µ;½;Ï;×<<>/>k>·>¿>Ê>Ò??M?{?˜?´?¿?Õ?û@&@.@6@H@Z@i@y@ˆ@˜@¿@ÞA%ApA‰AŸA¸AÎAçAýBB,B4BIBQBfByB‹B“B›B£B«B³BÅBÍBßBçBùCC C C5CQCgCƒC™C´CÊCÒCÚCâCêCòCþD D#D9DADVDrDˆD”DŸD«D¶DÚEBENEYE”EÏEÛEæEòEþF FF\F§F³F¿FËF×FãFïG3GjGvG‚GŽG™G¥G°G¼GÇGÓGßGëGöHHHH?HUHoHzH‹H¢H­H½HÉHàHìHøIIII+I7I?IKI~I¯IßIñJ'J3JDJvJÞJëKKaK–K¹KèKõLL…L®LèMNMuM¢MÖNNHNšN¬NÀNÕNäNüOOVOrO¾OËPPAPwP±PñQSQ½RJRWRdR~R—R¯RÛSS1SGSdS€S—T)T9TJTXT’TÛUUUfU{U²U¿UÕUõVV%VOVzV¥VÐV÷WWIWX X$X’XßY.Y}YËZZfZ³[[M[š[ç\5\‚\Ñ]]n]½^ ^W^¥^ô_B__á`.`Øa/aubCbàc·ddPdÎeie¸f?ffµg g\gçh¡hÒiLiiìjPj’kkÄkýl/mm4mImÉnko6otoùpÎqXqïr r7r`r„r—r¾rÙrÿs4sFssÓtt(t[t®t¿u uUu§uùv1vmv¥vÛww)wewxwwüxxBx‘xÌyy0yyÝzIz|zµzè{4{Œ{ž{Õ|$||°}3•R@"žPRhPr Ä4æ Œ:HÈX(l • (¥Îßú F $P,u P R h Pr  Ä 4æ  Œ: HÈ X$¢$ †¶$H>$TˆCopyright 2002 Free Software Foundation.TVTimeSansBoldPfaEdit 1.0 : Free Sans Bold : 11-8-2072TVTime Sans BoldVersion $Revision: 1.26 $ TVTimeSansBoldThe use of this font is granted subject to GNU General Public License.http://www.gnu.org/copyleft/gpl.htmlThe quick brown fox jumps over the lazy dog.Copyright 2002 Free Software Foundation.TVTimeSansBoldPfaEdit 1.0 : Free Sans Bold : 11-8-2072TVTime Sans BoldVersion $Revision$ TVTimeSansBoldThe use of this font is granted subject to GNU General Public License.http://www.gnu.org/copyleft/gpl.htmlThe quick brown fox jumps over the lazy dog.polkrepkoDovoljena je uporaba v skladu z licenco GNU General Public License.http://www.gnu.org/copyleft/gpl.html`erif bo za vajo spet kuhal doma e ~gance.ÿeE3      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`£„…½–膎‹©¤ŠÚƒ“òó—ˆÃÞñžªõôö¢­ÉÇ®bcdËeÈÊÏÌÍÎéfÓÐѯgð‘ÖÔÕhëí‰jikmln oqprsutvwêxzy{}|¸¡~€ìîºabcdefýþghijÿklmnopqrstuvwxyøùz{|}~€‚ƒ„…†‡ˆ‰ú׊‹ŒŽ‘’“”•–—˜â㙚›œžŸ ¡¢£¤¥¦§°±¨©ª«¬­®¯°±ûüäå²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇ»ÈÉÊËæç̦ÍÎÏÐØáÛÜÝàÙßÑÒÓÔÕÖרÙÚÛܨÝÞßàáâãäåæçèéêëìíîïŸðñòóôõö÷øùúûüýþÿ›      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ     ²³¶·Ä´µÅ‚‡«Æ¾¿¼Œ˜¨™ï¥”• !¹"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghÀÁijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—spaceexclamquotedbl numbersigndollarpercent ampersand quotesingle parenleft parenrightasteriskpluscommahyphenperiodslashzeroonetwothreefourfivesixseveneightninecolon semicolonlessequalgreaterquestionatABCDEFGHIJKLMNOPQRSTUVWXYZ bracketleft backslash bracketright asciicircum underscoregraveabcdefghijklmnopqrstuvwxyz braceleftbar braceright asciitildeAmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccent Gcommaaccent gcommaaccent Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflex Kcommaaccent kcommaaccent kgreenlandicLacutelacute Lcommaaccent lcommaaccentLcaronlcaronLdotldotNacutenacute Ncommaaccent ncommaaccentNcaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracute Rcommaaccent rcommaaccentRcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongs Scommaaccent scommaaccent Tcommaaccent tcommaaccent dieresistonos Alphatonos anoteleia EpsilontonosEtatonos Iotatonos Omicrontonos Upsilontonos OmegatonosAlphaBetaGammaEpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsi IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomega iotadieresisupsilondieresis omicrontonos upsilontonos omegatonosuni0400 afii10023 afii10051 afii10052 afii10053 afii10054 afii10055 afii10056 afii10057 afii10058 afii10059 afii10060 afii10061uni040D afii10062 afii10145 afii10017 afii10018 afii10019 afii10020 afii10021 afii10022 afii10024 afii10025 afii10026 afii10027 afii10028 afii10029 afii10030 afii10031 afii10032 afii10033 afii10034 afii10035 afii10036 afii10037 afii10038 afii10039 afii10040 afii10041 afii10042 afii10043 afii10044 afii10045 afii10046 afii10047 afii10048 afii10049 afii10065 afii10066 afii10067 afii10068 afii10069 afii10070 afii10072 afii10073 afii10074 afii10075 afii10076 afii10077 afii10078 afii10079 afii10080 afii10081 afii10082 afii10083 afii10084 afii10085 afii10086 afii10087 afii10088 afii10089 afii10090 afii10091 afii10092 afii10093 afii10094 afii10095 afii10096 afii10097uni0450 afii10071 afii10099 afii10100 afii10101 afii10102 afii10103 afii10104 afii10105 afii10106 afii10107 afii10108 afii10109uni045D afii10110 afii10193uni048Cuni048Duni048Euni048F afii10050 afii10098uni0492uni0493uni0494uni0495uni0496uni0497uni0498uni0499uni049Auni049Buni049Cuni049Duni049Euni049Funi04A0uni04A1uni04A2uni04A3uni04A4uni04A5uni04A6uni04A7uni04A8uni04A9uni04AAuni04ABuni04ACuni04ADuni04AEuni04AFuni04B0uni04B1uni04B2uni04B3uni04B4uni04B5uni04B6uni04B7uni04B8uni04B9uni04BAuni04BBuni04BCuni04BDuni04BEuni04BFuni04C0uni04C1uni04C2uni04C3uni04C4uni04C7uni04C8uni04CBuni04CCuni04D0uni04D1uni04D2uni04D3uni04D4uni04D5uni04D6uni04D7uni04D8 afii10846uni04DAuni04DBuni04DCuni04DDuni04DEuni04DFuni04E0uni04E1uni04E2uni04E3uni04E4uni04E5uni04E6uni04E7uni04E8uni04E9uni04EAuni04EBuni04ECuni04EDuni04EEuni04EFuni04F0uni04F1uni04F2uni04F3uni04F4uni04F5uni04F8uni04F9 afii57799 afii57801 afii57800 afii57802 afii57793 afii57794 afii57795 afii57798 afii57797 afii57806 afii57796 afii57807 afii57839 afii57645 afii57841 afii57842 afii57804 afii57803 afii57658uni05C4 afii57664 afii57665 afii57666 afii57667 afii57668 afii57669 afii57670 afii57671 afii57672 afii57673 afii57674 afii57675 afii57676 afii57677 afii57678 afii57679 afii57680 afii57681 afii57682 afii57683 afii57684 afii57685 afii57686 afii57687 afii57688 afii57689 afii57690 afii57716 afii57717 afii57718uni05F3uni05F4uni0617uni0618uni0619uni061A afii57403uni061C afii57409 afii57416 afii57418 afii57419 afii57421 afii57422 afii57427 afii57636Euro arrowleftuni25B4uni25B6triagdnuni25C0triaglfuni25D0uni25EFuni2600uni2630uniE000uniE001uniE002uniE003uniE004uniE005uniE006uniE007uniE008uniE009uniE00AuniE00BuniE00CuniE00DuniE00EuniE00FuniE010uniE011uniE012uniE013uniE014uniE015uniE016uniE017uniE018uniE019uniE01AuniE01BuniE01CuniE01DuniE01EuniE01FuniE020uniE021uniE022uniE023uniE024uniE025uniE026uniE027uniE028uniE029uniE02AuniE02BuniE02CuniE02DuniE02EuniE02FuniE030uniE031uniE032uniE033uniE034uniE035uniE036uniE037uniE038uniE039uniE03AuniE03BuniE03CuniE03DuniE03EuniE03FuniE040uniE041 commaaccentuniFB1DuniFB1E afii57705uniFB20uniFB21uniFB22uniFB23uniFB24uniFB25uniFB26uniFB27uniFB28uniFB29 afii57694 afii57695uniFB2CuniFB2DuniFB2EuniFB2FuniFB30uniFB31uniFB32uniFB33uniFB34 afii57723uniFB36uniFB38uniFB39uniFB3AuniFB3BuniFB3CuniFB3EuniFB40uniFB41uniFB43uniFB44uniFB46uniFB47uniFB48uniFB49uniFB4A afii57700uniFB4CuniFB4DuniFB4EuniFB4FuniFE9Etvtime-1.0.11/data/tvtimeSansBold.sfd0000664000175000017500000144041512354244126014406 00000000000000SplineFontDB: 1.0 FontName: TVTimeSansBold FullName: TVTime Sans Bold FamilyName: TVTimeSans Weight: Bold Copyright: Copyright 2002 Free Software Foundation. Version: $Revision$ ItalicAngle: 0 UnderlinePosition: -155 UnderlineWidth: 69 Ascent: 800 Descent: 200 NeedsXUIDChange: 1 FSType: 0 PfmFamily: 17 TTFWeight: 700 TTFWidth: 5 Panose: 2 11 7 4 2 2 2 2 2 4 LineGap: 90 VLineGap: 0 OS2TypoAscent: 979 OS2TypoDescent: -355 OS2WinAscent: 979 OS2WinDescent: 355 ScriptLang: 2 1 latn 1 dflt 1 hebr 1 dflt TableOrder: GSUB 3 'liga' 'init' 'medi' LangName: 1033 "" "" "" "PfaEdit 1.0 : Free Sans Bold : 11-8-2072" "" "" "" "" "" "" "" "" "" "The use of this font is granted subject to GNU General Public License." "http://www.gnu.org/copyleft/gpl.html" "" "" "" "" "The quick brown fox jumps over the lazy dog." LangName: 1060 "" "" "polkrepko" "" "" "" "" "" "" "" "" "" "" "Dovoljena je uporaba v skladu z licenco GNU General Public License." "http://www.gnu.org/copyleft/gpl.html" "" "" "" "" "+AWAA-erif bo za vajo spet kuhal doma+AQ0A-e +AX4A-gance." Encoding: unicode DisplaySize: -36 AntiAlias: 1 FitToEm: 1 WinInfo: 57343 11 10 TeXData: 1 10485760 0 291504 145752 97168 566231 1048576 97168 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144 BeginChars: 65537 817 StartChar: .notdef Encoding: 0 -1 0 Width: 432 Flags: W Fore 33 0 m 1 33 666 l 1 366 666 l 1 366 0 l 1 33 0 l 1 66 33 m 1 333 33 l 1 333 633 l 1 66 633 l 1 66 33 l 1 EndSplineSet EndChar StartChar: space Encoding: 32 32 3 Width: 278 Flags: W EndChar StartChar: exclam Encoding: 33 33 4 Width: 333 Flags: W Fore 262 726 m 1 262 516 l 1 220 207 l 1 153 207 l 1 112 516 l 1 112 726 l 1 262 726 l 1 262 146 m 1 262 0 l 1 112 0 l 1 112 146 l 1 262 146 l 1 EndSplineSet EndChar StartChar: quotedbl Encoding: 34 34 5 Width: 474 Flags: W Fore 188 729 m 1 188 599 l 1 146 470 l 1 90 470 l 1 50 599 l 1 50 729 l 1 188 729 l 1 424 729 m 1 424 599 l 1 382 470 l 1 326 470 l 1 286 599 l 1 286 729 l 1 424 729 l 1 EndSplineSet EndChar StartChar: numbersign Encoding: 35 35 6 Width: 556 Flags: W Fore 146 -32 m 1 40 -32 l 1 80 172 l 1 3 172 l 1 3 271 l 1 100 271 l 1 130 424 l 1 31 424 l 1 31 523 l 1 150 523 l 1 184 697 l 1 289 697 l 1 255 523 l 1 358 523 l 1 392 697 l 1 497 697 l 1 463 523 l 1 553 523 l 1 553 424 l 1 444 424 l 1 413 271 l 1 513 271 l 1 513 172 l 1 394 172 l 1 354 -32 l 1 249 -32 l 1 289 172 l 1 186 172 l 1 146 -32 l 1 205 271 m 1 308 271 l 1 338 424 l 1 235 424 l 1 205 271 l 1 EndSplineSet EndChar StartChar: dollar Encoding: 36 36 7 Width: 556 Flags: W Fore 517 498 m 1 389 498 l 1 391 550 373.667 584.333 337 601 c 0 329 604.333 320.333 606.667 311 608 c 1 311 407 l 1 413 379 477.667 339.667 505 289 c 1 519.667 263.667 527 232.333 527 195 c 0 527 125.667 504.333 71.6667 459 33 c 1 441 20 l 1 407 -1.33333 363.667 -15 311 -21 c 1 311 -126 l 1 243 -126 l 1 243 -21 l 1 188.333 -15.6667 143.333 -0.333333 108 25 c 0 51.3333 65.6667 22.6667 123.333 22 198 c 1 22 207 l 1 153 207 l 1 156.333 136.333 186.333 96 243 86 c 1 243 299 l 1 107.667 330.333 39.6667 401.333 39 512 c 0 39 592.667 74 649.667 144 683 c 0 172 697 205 705.667 243 709 c 1 243 763 l 1 311 763 l 1 311 709 l 1 397 704.333 457.333 669.667 492 605 c 0 492 604.333 492.333 603.667 493 603 c 1 493 602 l 1 508.333 572 516.333 537.333 517 498 c 1 243 427 m 1 243 608 l 1 189.667 597.333 162.667 566.667 162 516 c 0 162 476 186 447.333 234 430 c 0 236.667 429.333 239.667 428.333 243 427 c 1 311 282 m 1 311 86 l 1 366.333 100 394.333 132.333 395 183 c 0 395 231.667 367 264.667 311 282 c 1 EndSplineSet EndChar StartChar: percent Encoding: 37 37 8 Width: 889 Flags: W Fore 206 701 m 0 265.333 701 313.333 678.333 350 633 c 0 368.667 609.667 380.667 583.333 386 554 c 1 390 517 l 1 390 462.333 368 416.667 324 380 c 0 289.333 351.333 250 337 206 337 c 0 148.667 337 101.667 359 65 403 c 0 36.3333 436.333 22 475 22 519 c 0 22 575.667 44.3333 622.333 89 659 c 0 123 687 162 701 206 701 c 0 206 602 m 0 174 602 149.667 588.333 133 561 c 0 125 548.333 121 534.333 121 519 c 0 121 487.667 134.667 463.667 162 447 c 0 175.333 439 190 435 206 435 c 0 237.333 435 261.667 448.667 279 476 c 0 287 488.667 291 502.667 291 518 c 0 291 550.667 276.667 575 248 591 c 0 235.333 598.333 221.333 602 206 602 c 0 606 709 m 1 682 709 l 1 287 -20 l 1 210 -20 l 1 606 709 l 1 679 352 m 0 739 352 787 329 823 283 c 0 849.667 249.667 863 211 863 167 c 0 863 112.333 841 66.6667 797 30 c 0 762.333 1.33333 723 -13 679 -13 c 0 621.667 -13 574.667 9 538 53 c 0 509.333 86.3333 495 125.333 495 170 c 0 495 226.667 517.333 273.333 562 310 c 0 596 338 635 352 679 352 c 0 679 253 m 0 647 253 622.667 239.333 606 212 c 0 598.667 199.333 594.667 185 594 169 c 0 594 137.667 607.667 113.667 635 97 c 2 636 97 l 2 649.333 89 663.667 85 679 85 c 0 710.333 85 734.667 98.6667 752 126 c 0 760 138.667 764 152.667 764 168 c 0 764 200 750.333 224.333 723 241 c 2 722 241 l 2 708.667 249 694.333 253 679 253 c 0 EndSplineSet EndChar StartChar: ampersand Encoding: 38 38 9 Width: 722 Flags: W Fore 526 373 m 1 639 373 l 1 639 362 l 1 639 357 l 1 637 285.667 619.333 224.667 586 174 c 1 571 154 l 1 694 0 l 1 533 0 l 1 487 56 l 1 429 12 378.667 -13.3333 336 -20 c 1 292 -23 l 1 205.333 -23 140.333 5.33333 97 62 c 0 69 98 55 141.667 55 193 c 0 55 252.333 75 300.333 115 337 c 0 137.667 357.667 170 379 212 401 c 1 206 409 202 414 200 416 c 2 172 450 l 2 144 482.667 130 518 130 556 c 0 130 610.667 153.333 654.333 200 687 c 0 234 711 273.667 723 319 723 c 0 390.333 723 441.667 699.667 473 653 c 1 473 652 l 1 489 628 497 600 497 568 c 0 497 520.667 480.333 480 447 446 c 0 431 430 408.667 412 380 392 c 1 496 248 l 1 516 286 526 324.333 526 363 c 2 526 373 l 1 278 319 m 1 231 290 l 1 203 271.333 188.667 244.667 188 210 c 0 188 173.333 203 142.333 233 117 c 0 252.333 101 272.667 93 294 93 c 0 326 93 366 111.333 414 148 c 1 278 319 l 1 317 470 m 1 356.333 492 376.333 520.667 377 556 c 0 377 590.667 358 610 320 614 c 1 291.333 614 273 603.333 265 582 c 1 262 566 l 1 262 550.667 268.333 534 281 516 c 1 282 516 l 1 317 470 l 1 EndSplineSet EndChar StartChar: quotesingle Encoding: 39 39 10 Width: 238 Flags: W Fore 188 729 m 1 188 599 l 1 146 470 l 1 90 470 l 1 50 599 l 1 50 729 l 1 188 729 l 1 EndSplineSet EndChar StartChar: parenleft Encoding: 40 40 11 Width: 333 Flags: W Fore 203 729 m 1 303 729 l 1 231 590.333 187.667 476.667 173 388 c 0 166.333 350 163 309 163 265 c 0 163 169 182.333 72.3333 221 -25 c 0 240.333 -73.6667 267.667 -132 303 -200 c 1 203 -200 l 1 111 -61.3333 58 67.3333 44 186 c 0 41.3333 211.333 40 237.667 40 265 c 0 40 388.333 76.3333 513.667 149 641 c 0 165 669 183 698.333 203 729 c 1 EndSplineSet EndChar StartChar: parenright Encoding: 41 41 12 Width: 333 Flags: W Fore 122 -200 m 1 22 -200 l 1 94 -61.3333 137.333 52.3333 152 141 c 0 158.667 179 162 220 162 264 c 0 162 360 142.667 456.667 104 554 c 0 84.6667 602.667 57.3333 661 22 729 c 1 122 729 l 1 214 590.333 267 461.667 281 343 c 0 283.667 317.667 285 291.333 285 264 c 0 285 140.667 248.667 15.3333 176 -112 c 0 160 -140 142 -169.333 122 -200 c 1 EndSplineSet EndChar StartChar: asterisk Encoding: 42 42 13 Width: 389 Flags: W Fore 132 544 m 1 23 580 l 1 45 649 l 1 154 613 l 1 154 729 l 1 226 729 l 1 226 613 l 1 335 649 l 1 357 579 l 1 248 544 l 1 315 450 l 1 257 407 l 1 190 501 l 1 123 407 l 1 65 450 l 1 132 544 l 1 EndSplineSet EndChar StartChar: plus Encoding: 43 43 14 Width: 584 Flags: W Fore 533 291 m 1 533 172 l 1 351 172 l 1 351 -10 l 1 232 -10 l 1 232 172 l 1 50 172 l 1 50 291 l 1 232 291 l 1 232 473 l 1 351 473 l 1 351 291 l 1 533 291 l 1 EndSplineSet EndChar StartChar: comma Encoding: 44 44 15 Width: 278 Flags: W Fore 64 146 m 1 214 146 l 1 214 9 l 2 214 -51 202.667 -93.6667 180 -119 c 0 174 -125 167.333 -131 160 -137 c 0 134 -157 102 -169.333 64 -174 c 1 64 -118 l 1 114.667 -107.333 143 -76.6667 149 -26 c 1 150 -3 l 1 150 0 l 1 64 0 l 1 64 146 l 1 EndSplineSet KernsSLIF: 49 -73 0 0 EndChar StartChar: hyphen Encoding: 45 45 16 Width: 333 Flags: W Fore 298 342 m 1 298 207 l 1 26 207 l 1 26 342 l 1 298 342 l 1 EndSplineSet KernsSLIF: 89 -64 0 0 84 -57 0 0 EndChar StartChar: period Encoding: 46 46 17 Width: 278 Flags: W Fore 214 146 m 1 214 0 l 1 64 0 l 1 64 146 l 1 214 146 l 1 EndSplineSet KernsSLIF: 49 -73 0 0 EndChar StartChar: slash Encoding: 47 47 18 Width: 278 Flags: W Fore 208 714 m 1 275 714 l 1 69 -14 l 1 2 -14 l 1 208 714 l 1 EndSplineSet EndChar StartChar: zero Encoding: 48 48 19 Width: 556 Flags: W Fore 273 724 m 0 356.333 724 419.667 691 463 625 c 2 464 624 l 1 467 619 l 2 500.333 565 517 474 517 346 c 0 517 214.667 497 122 457 68 c 0 412.333 7.33333 351 -23 273 -23 c 0 192.333 -23 130 8.66667 86 72 c 0 83.3333 75.3333 81 78.6667 79 82 c 0 45.6667 136.667 29 226 29 350 c 0 29 485.333 49 579.667 89 633 c 1 133 693.667 194.333 724 273 724 c 0 273 611 m 0 232.333 611 203.667 588.667 187 544 c 0 175 509.333 169 445 169 351 c 0 169 249.667 176.333 183.333 191 152 c 0 208.333 116 235.667 97.6667 273 97 c 0 313.667 97 342.333 118.667 359 162 c 0 371 195.333 377 257.667 377 349 c 0 377 454.333 369.667 522.667 355 554 c 0 337.667 592 310.333 611 273 611 c 0 EndSplineSet KernsSLIF: 122 79 0 0 120 91 0 0 117 69 0 0 116 85 0 0 115 68 0 0 114 64 0 0 113 69 0 0 112 69 0 0 110 64 0 0 109 67 0 0 108 60 0 0 107 68 0 0 106 57 0 0 105 60 0 0 104 60 0 0 103 74 0 0 102 92 0 0 101 63 0 0 100 66 0 0 99 62 0 0 98 68 0 0 97 75 0 0 78 59 0 0 77 61 0 0 73 64 0 0 72 59 0 0 57 80 0 0 56 65 0 0 53 79 0 0 51 75 0 0 50 73 0 0 48 58 0 0 EndChar StartChar: one Encoding: 49 49 20 Width: 556 Flags: W Fore 238 489 m 1 68 489 l 1 68 582 l 1 190.667 582 263 624.333 285 709 c 1 378 709 l 1 378 0 l 1 238 0 l 1 238 489 l 1 EndSplineSet KernsSLIF: 55 -65 0 0 49 -85 0 0 EndChar StartChar: two Encoding: 50 50 21 Width: 556 Flags: W Fore 512 125 m 1 512 0 l 1 30 0 l 1 34 77.3333 53 138 87 182 c 0 109.667 211.333 145.333 242.667 194 276 c 1 277.333 335.333 329.333 379 350 407 c 0 366.667 430.333 375 460 375 496 c 0 375 552 354.667 587.667 314 603 c 0 302 607.667 289 610 275 610 c 0 224.333 610 192.333 584.333 179 533 c 0 175.667 519 174 503 174 485 c 2 174 462 l 1 40 462 l 1 39 487 l 1 39 590.333 76 660.667 150 698 c 0 184.667 715.333 225.333 724 272 724 c 0 365.333 724 433.667 693 477 631 c 0 502.333 595 515 551 515 499 c 0 515 442.333 498.333 394.333 465 355 c 0 442.333 327.667 406 295.667 356 259 c 0 286.667 208.333 244.333 173 229 153 c 0 223 145 217.333 135.667 212 125 c 1 512 125 l 1 EndSplineSet KernsSLIF: 122 82 0 0 121 104 0 0 120 108 0 0 119 110 0 0 118 99 0 0 117 65 0 0 116 98 0 0 114 64 0 0 112 69 0 0 110 64 0 0 109 67 0 0 108 60 0 0 107 68 0 0 106 57 0 0 105 60 0 0 104 60 0 0 102 94 0 0 98 68 0 0 90 93 0 0 88 67 0 0 83 68 0 0 81 59 0 0 79 62 0 0 78 59 0 0 77 61 0 0 73 64 0 0 72 59 0 0 71 61 0 0 67 61 0 0 65 71 0 0 57 91 0 0 56 70 0 0 54 77 0 0 51 70 0 0 48 84 0 0 EndChar StartChar: three Encoding: 51 51 22 Width: 556 Flags: W Fore 217 317 m 1 217 411 l 1 229 411 l 2 311 411 352.333 446.667 353 518 c 0 353 569.333 331.667 599.667 289 609 c 1 265 611 l 1 224.333 611 196.333 596 181 566 c 1 179 561 l 2 172.333 544.333 168.667 519.333 168 486 c 1 38 486 l 1 38 498 l 2 38 561.333 51.6667 610 79 644 c 0 120.333 697.333 183.333 724 268 724 c 0 357.333 724 421.667 696 461 640 c 0 482.333 610 493 573.667 493 531 c 0 493 475 469 429.333 421 394 c 2 420 393 l 1 400 380 l 1 468.667 346.667 506.667 297.333 514 232 c 0 515.333 223.333 516 214 516 204 c 0 516 120 484 57.6667 420 17 c 2 419 16 l 2 377.667 -10 327.333 -23 268 -23 c 0 176 -23 109 8.66667 67 72 c 0 42.3333 109.333 29.6667 154.667 29 208 c 1 165 208 l 1 169 134 204.333 97 271 97 c 0 311.667 97 341.667 113.667 361 147 c 0 371 163.667 376 182.667 376 204 c 0 376 248 358.667 280 324 300 c 1 299 310 l 1 280.333 314.667 253 317 217 317 c 1 EndSplineSet KernsSLIF: 122 64 0 0 120 86 0 0 119 58 0 0 117 67 0 0 116 57 0 0 115 64 0 0 114 62 0 0 113 73 0 0 112 67 0 0 111 63 0 0 110 62 0 0 109 65 0 0 108 58 0 0 107 66 0 0 105 58 0 0 104 58 0 0 103 68 0 0 101 75 0 0 100 72 0 0 99 67 0 0 98 66 0 0 97 74 0 0 78 57 0 0 77 59 0 0 73 62 0 0 72 57 0 0 57 78 0 0 56 77 0 0 54 66 0 0 53 88 0 0 51 87 0 0 50 61 0 0 48 70 0 0 EndChar StartChar: four Encoding: 52 52 23 Width: 556 Flags: W Fore 522 273 m 1 522 157 l 1 448 157 l 1 448 0 l 1 308 0 l 1 308 157 l 1 24 157 l 1 24 275 l 1 283 709 l 1 448 709 l 1 448 273 l 1 522 273 l 1 308 273 m 1 308 576 l 1 123 273 l 1 308 273 l 1 EndSplineSet KernsSLIF: 122 70 0 0 117 65 0 0 115 78 0 0 114 72 0 0 113 82 0 0 112 77 0 0 111 74 0 0 110 72 0 0 109 75 0 0 108 68 0 0 107 76 0 0 106 65 0 0 105 68 0 0 104 68 0 0 103 77 0 0 101 86 0 0 100 81 0 0 99 76 0 0 98 76 0 0 97 87 0 0 90 70 0 0 83 88 0 0 80 59 0 0 78 67 0 0 77 69 0 0 75 61 0 0 73 72 0 0 72 67 0 0 70 61 0 0 68 58 0 0 67 62 0 0 57 80 0 0 56 97 0 0 54 86 0 0 53 89 0 0 51 92 0 0 50 59 0 0 48 89 0 0 EndChar StartChar: five Encoding: 53 53 24 Width: 556 Flags: W Fore 489 709 m 1 489 584 l 1 196 584 l 1 173 436 l 1 211 464.667 252 479 296 479 c 0 372 479 430.667 449.333 472 390 c 0 502 347.333 517 295.333 517 234 c 0 517 146 486.333 78 425 30 c 0 380.333 -5.33333 325.667 -23 261 -23 c 0 176.333 -23 112.333 4.66667 69 60 c 0 42.3333 94.6667 28.3333 136.333 27 185 c 1 165 185 l 1 167.667 129.667 200.333 100.333 263 97 c 1 313.667 97 348 120.333 366 167 c 0 373.333 185.667 377 207 377 231 c 0 377 297.667 354.333 340.333 309 359 c 2 308 360 l 2 294.667 365.333 279.667 368 263 368 c 0 218.333 368 188.333 350 173 314 c 1 47 314 l 1 110 709 l 1 489 709 l 1 EndSplineSet KernsSLIF: 108 58 0 0 107 66 0 0 104 58 0 0 98 66 0 0 90 59 0 0 78 57 0 0 77 59 0 0 73 62 0 0 72 57 0 0 57 77 0 0 56 63 0 0 53 77 0 0 51 73 0 0 EndChar StartChar: six Encoding: 54 54 25 Width: 556 Flags: W Fore 507 548 m 1 377 548 l 1 362.333 584 340.333 604.333 311 609 c 0 305 610.333 298 611 290 611 c 0 242 611 208.667 587 190 539 c 0 186.667 531 184 522.333 182 513 c 0 181.333 511.667 181 510.333 181 509 c 0 177 489 174 454 172 404 c 1 208 442 248.333 462.667 293 466 c 0 295 466 l 1 295 466 l 1 300.333 466.667 306.333 467 313 467 c 0 385 467 440 438.667 478 382 c 0 505.333 342 519 293.667 519 237 c 0 519 146.333 490 77 432 29 c 0 390.667 -5.66667 340.667 -23 282 -23 c 0 208 -23 148.667 2.66667 104 54 c 1 83 82 l 1 49 135.333 32 220.333 32 337 c 0 32 449.667 48.6667 536.667 82 598 c 2 91 614 l 1 133 683.333 196 720 280 724 c 2 294 724 l 2 368.667 724 426 700 466 652 c 2 467 651 l 1 468 650 l 1 468 649.333 468.333 648.667 469 648 c 0 470.333 646.667 471.667 645 473 643 c 0 489.667 619 501 587.333 507 548 c 1 279 357 m 0 235 357 203.333 336.333 184 295 c 0 174.667 275 170 251.667 170 225 c 0 170 172.333 187.667 134.667 223 112 c 0 239.667 102 258 97 278 97 c 0 318 97 348.333 116.333 369 155 c 0 380.333 175.667 386 200 386 228 c 0 386 285.333 367 324.333 329 345 c 0 314.333 353 297.667 357 279 357 c 0 EndSplineSet KernsSLIF: 115 69 0 0 113 77 0 0 112 57 0 0 111 59 0 0 109 58 0 0 108 61 0 0 107 69 0 0 104 61 0 0 103 75 0 0 101 71 0 0 100 74 0 0 99 70 0 0 98 69 0 0 97 77 0 0 90 64 0 0 78 60 0 0 77 62 0 0 73 65 0 0 72 60 0 0 57 81 0 0 56 73 0 0 54 62 0 0 53 87 0 0 51 82 0 0 48 66 0 0 EndChar StartChar: seven Encoding: 55 55 26 Width: 556 Flags: W Fore 528 709 m 1 528 599 l 1 413.333 460.333 338.333 324.667 303 192 c 0 287.667 132.667 278 68.6667 274 0 c 1 133 0 l 1 149 128 175.667 234.667 213 320 c 1 226 347 l 1 249.333 398.333 287.667 460.667 341 534 c 1 357.667 555.333 371.333 572 382 584 c 1 29 584 l 1 29 709 l 1 528 709 l 1 EndSplineSet KernsSLIF: 115 -71 0 0 113 -69 0 0 111 -77 0 0 103 -75 0 0 101 -63 0 0 100 -70 0 0 99 -75 0 0 97 -71 0 0 74 -116 0 0 65 -107 0 0 58 -63 0 0 52 -62 0 0 46 -87 0 0 44 -88 0 0 EndChar StartChar: eight Encoding: 56 56 27 Width: 556 Flags: W Fore 409 386 m 1 473 352 510.333 306.667 521 250 c 0 523.667 236.667 525 221.333 525 204 c 0 525 127.333 495 67.6667 435 25 c 0 391 -7 337.333 -23 274 -23 c 0 186 -23 118.667 5.33333 72 62 c 1 38.6667 100.667 22 148 22 204 c 0 22 272 48 325 100 363 c 1 138 386 l 1 84 414.667 53.6667 454.667 47 506 c 1 47 506 l 1 46.3333 514 46 522.333 46 531 c 0 46 595 73 645.333 127 682 c 0 168.333 710 217.333 724 274 724 c 0 352 724 412.667 699.667 456 651 c 2 457 650 l 2 486.333 616.667 501 577.333 501 532 c 0 501 483.333 485.667 444.667 455 416 c 0 445.667 407.333 430.333 397.333 409 386 c 1 275 611 m 0 229 611 197 594.667 179 562 c 0 172.333 549.333 169 535 169 519 c 0 169 480.333 186.667 452.667 222 436 c 0 238 428.667 255.667 425 275 425 c 0 318.333 425 349.333 440.667 368 472 c 0 376 485.333 380 500.667 380 518 c 0 380 556.667 362.333 584 327 600 c 0 312.333 607.333 295 611 275 611 c 0 273 330 m 0 224.333 330 191 309.667 173 269 c 0 165.667 252.333 162 233.333 162 212 c 0 162 160 182 125 222 107 c 0 237.333 100.333 254.333 97 273 97 c 0 321.667 97 355.333 116.333 374 155 c 0 381.333 171 385 189.333 385 210 c 0 385 266 364 303 322 321 c 0 307.333 327 291 330 273 330 c 0 EndSplineSet KernsSLIF: 122 72 0 0 120 78 0 0 117 76 0 0 116 65 0 0 115 73 0 0 114 71 0 0 113 75 0 0 112 76 0 0 111 58 0 0 110 71 0 0 109 74 0 0 108 67 0 0 107 75 0 0 106 64 0 0 105 67 0 0 104 67 0 0 103 78 0 0 102 63 0 0 101 69 0 0 100 72 0 0 99 68 0 0 98 75 0 0 97 84 0 0 90 60 0 0 80 58 0 0 78 66 0 0 77 68 0 0 75 60 0 0 73 71 0 0 72 66 0 0 70 60 0 0 68 57 0 0 57 86 0 0 56 71 0 0 54 61 0 0 53 85 0 0 51 81 0 0 50 69 0 0 48 65 0 0 EndChar StartChar: nine Encoding: 57 57 28 Width: 556 Flags: W Fore 38 165 m 1 173 165 l 1 175.667 132.333 193.333 111 226 101 c 0 236 97.6667 247 96 259 96 c 0 336.333 96 375.333 163.333 376 298 c 1 355.333 274.667 340.667 260 332 254 c 0 308 236.667 277.333 228 240 228 c 0 166.667 228 110.333 258 71 318 c 0 42.3333 360.667 28 412.667 28 474 c 0 28 560.667 57.3333 627.333 116 674 c 0 157.333 707.333 207.667 724 267 724 c 0 354.333 724 421 685.333 467 608 c 0 499.667 554 516 474.667 516 370 c 0 516 254 498 162.333 462 95 c 0 460.667 91.6667 459 88.6667 457 86 c 0 414.333 12.6667 347 -24 255 -24 c 0 182.333 -24 125 0 83 48 c 0 54.3333 81.3333 39.3333 120.333 38 165 c 1 263 610 m 0 219 610 188.667 587.333 172 542 c 1 171 541 l 1 164.333 522.333 161 500.667 161 476 c 0 161 414 181 373.333 221 354 c 0 234.333 347.333 249 344 265 344 c 0 308.333 344 339.667 364.333 359 405 c 0 368.333 424.333 373 447.333 373 474 c 0 373 536 352.667 577.667 312 599 c 0 297.333 606.333 281 610 263 610 c 0 EndSplineSet KernsSLIF: 122 77 0 0 120 78 0 0 117 67 0 0 116 75 0 0 115 67 0 0 114 62 0 0 113 59 0 0 112 67 0 0 110 62 0 0 109 65 0 0 108 58 0 0 107 66 0 0 105 58 0 0 104 58 0 0 103 64 0 0 102 91 0 0 98 66 0 0 97 73 0 0 78 57 0 0 77 59 0 0 73 62 0 0 72 57 0 0 57 70 0 0 53 69 0 0 51 65 0 0 50 70 0 0 EndChar StartChar: colon Encoding: 58 58 29 Width: 333 Flags: W Fore 263 146 m 1 263 0 l 1 113 0 l 1 113 146 l 1 263 146 l 1 263 520 m 1 263 374 l 1 113 374 l 1 113 520 l 1 263 520 l 1 EndSplineSet EndChar StartChar: semicolon Encoding: 59 59 30 Width: 333 Flags: W Fore 113 146 m 1 263 146 l 1 263 9 l 2 263 -51 251.667 -93.6667 229 -119 c 0 223 -125 216.333 -131 209 -137 c 0 183 -157 151 -169.333 113 -174 c 1 113 -118 l 1 163.667 -107.333 192 -76.6667 198 -26 c 1 199 -3 l 1 199 0 l 1 113 0 l 1 113 146 l 1 263 520 m 1 263 374 l 1 113 374 l 1 113 520 l 1 263 520 l 1 EndSplineSet EndChar StartChar: less Encoding: 60 60 31 Width: 584 Flags: W Fore 529 474 m 1 529 365 l 1 147 232 l 1 529 101 l 1 529 -10 l 1 40 172 l 1 40 293 l 1 529 474 l 1 EndSplineSet EndChar StartChar: equal Encoding: 61 61 32 Width: 584 Flags: W Fore 534 411 m 1 534 292 l 1 50 292 l 1 50 411 l 1 534 411 l 1 534 171 m 1 534 52 l 1 50 52 l 1 50 171 l 1 534 171 l 1 EndSplineSet EndChar StartChar: greater Encoding: 62 62 33 Width: 584 Flags: W Fore 40 -10 m 1 40 99 l 1 422 232 l 1 40 363 l 1 40 474 l 1 529 292 l 1 529 171 l 1 40 -10 l 1 EndSplineSet EndChar StartChar: question Encoding: 63 63 34 Width: 611 Flags: W Fore 369 201 m 1 245 201 l 1 243 255.667 255.667 300.667 283 336 c 0 297 354.667 317.333 375.667 344 399 c 1 381.333 429.667 403.333 454.333 410 473 c 1 410 473 l 1 413.333 483 415 495.667 415 511 c 0 415 555 398.667 587.667 366 609 c 0 349.333 620.333 330.667 626 310 626 c 0 269.333 626 238.667 606.667 218 568 c 0 204.667 543.333 198.667 515 200 483 c 1 200 481 l 1 64 481 l 1 64.6667 553 78.6667 608.333 106 647 c 0 107.333 649.667 109 652.333 111 655 c 0 154.333 714.333 219.667 744 307 744 c 0 393.667 744 460.333 715.667 507 659 c 0 507 658.333 507.333 657.667 508 657 c 0 536.667 621.667 552.333 579.667 555 531 c 0 555.667 525.667 556 520 556 514 c 0 556 462 541.667 419.333 513 386 c 0 505.667 377.333 497 368.667 487 360 c 0 475 349.333 461 338.333 445 327 c 2 436 320 l 2 404 297.333 384.667 279.333 378 266 c 0 372 253.333 369 231.667 369 201 c 1 385 146 m 1 385 0 l 1 235 0 l 1 235 146 l 1 385 146 l 1 EndSplineSet EndChar StartChar: at Encoding: 64 64 35 Width: 975 Flags: W Fore 644 508 m 1 734 508 l 1 656 228 l 1 650.667 208 648 194 648 186 c 0 648 158.667 660.333 142.667 685 138 c 0 688.333 137.333 692.333 137 697 137 c 0 731 137 765.333 158 800 200 c 2 807 209 l 2 841 256.333 858 310 858 370 c 0 858 448.667 825.333 517.333 760 576 c 0 690.667 637.333 607.667 668 511 668 c 0 394.333 668 299.667 626 227 542 c 0 165.667 470.667 131.667 387.667 125 293 c 1 124 266 l 1 124 164.667 163.333 83 242 21 c 0 311.333 -33 392.667 -60 486 -60 c 0 562.667 -60 631.667 -46.3333 693 -19 c 1 721 -92 l 1 653.667 -122.667 574.667 -138 484 -138 c 0 360.667 -138 258.667 -106.333 178 -43 c 0 99.3333 18.3333 51 97.3333 33 194 c 0 29 216.667 27 240 27 264 c 0 27 355.333 55.6667 444 113 530 c 0 130.333 556 149.333 579.667 170 601 c 0 262.667 697 378 745 516 745 c 0 642.667 745 749.333 703.333 836 620 c 0 910 548 947 459.667 947 355 c 0 947 274.333 919.667 202.667 865 140 c 0 815 84 759 56 697 56 c 0 663 56 633.333 64.6667 608 82 c 0 591.333 94 579.667 109 573 127 c 0 573 128.333 572.667 129.667 572 131 c 1 534 85 488 60 434 56 c 0 422 56 l 0 369.333 56 326.667 77.3333 294 120 c 0 270 150.667 258 186.333 258 227 c 0 258 292.333 279 354.333 321 413 c 1 332 427 l 2 372 477 422.333 506.667 483 516 c 0 493 517.333 503.333 518 514 518 c 0 564 518 600.333 497 623 455 c 2 628 446 l 1 644 508 l 1 511 447 m 0 470.333 447 433.667 424.667 401 380 c 0 370.333 338.667 355 293.333 355 244 c 0 355 202.667 369.333 172 398 152 c 0 412 142 427.333 137 444 137 c 0 473.333 137 501.333 151 528 179 c 2 532 184 l 2 564.667 222 585 266.667 593 318 c 0 593.667 325.333 594.333 334.333 595 345 c 0 595 396.333 577.333 428.667 542 442 c 2 541 442 l 1 540 442 l 2 531.333 445.333 521.667 447 511 447 c 0 EndSplineSet EndChar StartChar: A Encoding: 65 65 36 Width: 722 Flags: W Fore 501 147 m 1 228 147 l 1 179 0 l 1 26 0 l 1 285 729 l 1 451 729 l 1 703 0 l 1 549 0 l 1 501 147 l 1 460 272 m 1 365 557 l 1 270 272 l 1 460 272 l 1 EndSplineSet KernsSLIF: 8221 -65 0 0 8217 -61 0 0 122 105 0 0 120 134 0 0 114 71 0 0 112 76 0 0 110 71 0 0 109 74 0 0 108 67 0 0 107 75 0 0 106 64 0 0 105 67 0 0 104 67 0 0 89 -90 0 0 86 -66 0 0 84 -81 0 0 80 58 0 0 78 66 0 0 77 68 0 0 75 60 0 0 73 71 0 0 72 66 0 0 70 60 0 0 68 57 0 0 50 95 0 0 49 -89 0 0 EndChar StartChar: B Encoding: 66 66 37 Width: 722 Flags: W Fore 82 0 m 1 82 729 l 1 407 729 l 2 480.333 729 537.667 711.333 579 676 c 0 619 641.333 641 599 645 549 c 1 645 537 l 2 645 489 624 447.667 582 413 c 2 581 413 l 1 545 387 l 1 625 340.333 665.333 281.333 666 210 c 0 666 157.333 648 111 612 71 c 1 598 57 l 1 594 53 l 2 552 17.6667 490.667 1.73472e-18 410 0 c 2 82 0 l 1 232 604 m 1 232 439 l 1 395 439 l 2 462.333 439 497.667 466.333 501 521 c 1 501 573 469.333 600.667 406 604 c 0 401 604 401 604 395 604 c 2 232 604 l 1 232 314 m 1 232 125 l 1 411 125 l 2 483.667 125 520.667 156.333 522 219 c 1 522 282.333 485 314 411 314 c 2 232 314 l 1 EndSplineSet EndChar StartChar: C Encoding: 67 67 38 Width: 722 Flags: W Fore 682 482 m 1 539 482 l 1 531 516.667 520 542.667 506 560 c 0 478 595.333 437 613 383 613 c 0 306.333 613 252 576 220 502 c 0 207.333 472 199.333 437 196 397 c 1 194 356 l 1 194 242 225.333 165.667 288 127 c 0 314 111 344 103 378 103 c 0 452 103 501.333 133 526 193 c 0 532.667 209.667 537 228.333 539 249 c 1 685 249 l 1 679.667 150.333 639 76.3333 563 27 c 0 511 -6.33333 448 -23 374 -23 c 0 259.333 -23 172.333 19.6667 113 105 c 0 67 171 44 255.333 44 358 c 0 44 496.667 84 600 164 668 c 0 221.333 716.667 292.667 741 378 741 c 0 485.333 741 568 705.667 626 635 c 2 633 626 l 2 661 589.333 677.333 541.333 682 482 c 1 EndSplineSet KernsSLIF: 122 81 0 0 120 81 0 0 117 72 0 0 114 67 0 0 112 72 0 0 110 67 0 0 109 70 0 0 108 63 0 0 107 71 0 0 106 60 0 0 105 63 0 0 104 63 0 0 102 86 0 0 98 71 0 0 97 73 0 0 78 62 0 0 77 64 0 0 73 67 0 0 50 80 0 0 EndChar StartChar: D Encoding: 68 68 39 Width: 722 Flags: W Fore 77 0 m 1 77 729 l 1 362 729 l 2 460 729 531.667 706.333 577 661 c 2 592 645 l 1 651.333 575 681 481.667 681 365 c 0 681 247.667 651.333 154.333 592 85 c 1 548 31.6667 479 3.33333 385 0 c 2 362 0 l 1 77 0 l 1 227 125 m 1 362 125 l 2 474 125 530.333 204.667 531 364 c 0 531 524 474.667 604 362 604 c 2 227 604 l 1 227 125 l 1 EndSplineSet EndChar StartChar: E Encoding: 69 69 40 Width: 667 Flags: W Fore 229 314 m 1 229 125 l 1 624 125 l 1 624 0 l 1 79 0 l 1 79 729 l 1 606 729 l 1 606 604 l 1 229 604 l 1 229 439 l 1 578 439 l 1 578 314 l 1 229 314 l 1 EndSplineSet KernsSLIF: 116 59 0 0 108 57 0 0 107 65 0 0 105 57 0 0 104 57 0 0 102 57 0 0 98 65 0 0 90 78 0 0 88 83 0 0 87 62 0 0 77 58 0 0 73 61 0 0 65 72 0 0 57 73 0 0 56 75 0 0 54 58 0 0 53 74 0 0 49 -88 0 0 48 62 0 0 EndChar StartChar: F Encoding: 70 70 41 Width: 611 Flags: W Fore 224 314 m 1 224 0 l 1 74 0 l 1 74 729 l 1 586 729 l 1 586 604 l 1 224 604 l 1 224 439 l 1 543 439 l 1 543 314 l 1 224 314 l 1 EndSplineSet KernsSLIF: 197 -63 0 0 196 -63 0 0 195 -63 0 0 194 -63 0 0 193 -63 0 0 192 -63 0 0 65 -63 0 0 49 -70 0 0 46 -75 0 0 44 -76 0 0 EndChar StartChar: G Encoding: 71 71 42 Width: 778 Flags: W Fore 711 392 m 5 711 -2 l 5 621 -2 l 5 603 94 l 5 557.667 27.3333 499.667 -10.6667 429 -20 c 4 414.333 -22 399 -23 383 -23 c 4 283.667 -23 202 13.3333 138 86 c 4 74 158 42 249 42 359 c 4 42 481 79 577.333 153 648 c 4 217 710 297.667 741 395 741 c 4 505.667 741 590 707.667 648 641 c 4 683.333 601 704.333 552.667 711 496 c 5 570 496 l 5 558.667 528 543.667 552.333 525 569 c 4 491.667 598.333 448.667 613 396 613 c 4 314 613 255.667 577 221 505 c 4 201.667 465.667 192 417.667 192 361 c 4 192 272.333 218.333 203.667 271 155 c 4 307 121.667 350 105 400 105 c 4 458 105 506.333 126.667 545 170 c 4 546.333 171.333 547.667 173 549 175 c 4 569.667 199 581.667 229.667 585 267 c 5 419 267 l 5 419 392 l 5 711 392 l 5 EndSplineSet KernsSLIF: 122 74 0 0 121 70 0 0 120 84 0 0 119 77 0 0 118 65 0 0 115 61 0 0 113 61 0 0 101 67 0 0 100 60 0 0 97 66 0 0 90 65 0 0 88 67 0 0 83 66 0 0 57 63 0 0 56 75 0 0 54 66 0 0 53 67 0 0 51 61 0 0 48 70 0 0 EndChar StartChar: H Encoding: 72 72 43 Width: 722 Flags: W Fore 507 331 m 1 218 331 l 1 218 0 l 1 68 0 l 1 68 729 l 1 218 729 l 1 218 456 l 1 506 456 l 1 506 729 l 1 657 729 l 1 657 0 l 1 507 0 l 1 507 331 l 1 EndSplineSet KernsSLIF: 122 80 0 0 121 79 0 0 120 87 0 0 119 86 0 0 118 74 0 0 116 73 0 0 115 63 0 0 113 63 0 0 103 58 0 0 102 90 0 0 101 69 0 0 100 62 0 0 99 57 0 0 97 68 0 0 90 70 0 0 88 72 0 0 87 65 0 0 84 90 0 0 83 69 0 0 79 58 0 0 65 62 0 0 57 73 0 0 56 78 0 0 54 69 0 0 53 70 0 0 51 73 0 0 50 72 0 0 48 72 0 0 EndChar StartChar: I Encoding: 73 73 44 Width: 278 Flags: W Fore 213 729 m 1 213 0 l 1 63 0 l 1 63 729 l 1 213 729 l 1 EndSplineSet KernsSLIF: 122 80 0 0 121 79 0 0 120 87 0 0 119 86 0 0 118 74 0 0 116 73 0 0 115 63 0 0 113 63 0 0 103 58 0 0 102 90 0 0 101 69 0 0 100 62 0 0 99 57 0 0 97 68 0 0 90 70 0 0 88 72 0 0 87 65 0 0 84 90 0 0 83 69 0 0 79 58 0 0 65 62 0 0 57 73 0 0 56 78 0 0 54 69 0 0 53 70 0 0 51 73 0 0 50 72 0 0 48 72 0 0 EndChar StartChar: J Encoding: 74 74 45 Width: 556 Flags: W Fore 336 729 m 1 486 729 l 1 486 190 l 2 486 92.6667 446.333 28.3333 367 -3 c 0 334.333 -16.3333 296 -23 252 -23 c 0 183.333 -23 127.667 -3.66667 85 35 c 0 47 70.3333 26.6667 118.667 24 180 c 1 24 198 l 1 24 270 l 1 174 270 l 1 174 200 l 2 174 146.667 192 116 228 108 c 0 236 106 245 105 255 105 c 0 303.667 105 330.333 128.333 335 175 c 1 336 190 l 1 336 729 l 1 EndSplineSet KernsSLIF: 120 79 0 0 119 75 0 0 116 68 0 0 102 66 0 0 101 61 0 0 83 64 0 0 57 68 0 0 56 73 0 0 54 64 0 0 53 65 0 0 51 68 0 0 48 67 0 0 EndChar StartChar: K Encoding: 75 75 46 Width: 722 Flags: W Fore 224 244 m 1 224 0 l 1 74 0 l 1 74 729 l 1 224 729 l 1 224 409 l 1 509 729 l 1 686 729 l 1 395 415 l 1 717 0 l 1 538 0 l 1 299 322 l 1 224 244 l 1 EndSplineSet KernsSLIF: 122 114 0 0 121 -65 0 0 120 79 0 0 114 85 0 0 112 90 0 0 110 85 0 0 109 88 0 0 108 83 0 0 107 91 0 0 106 66 0 0 105 83 0 0 104 83 0 0 98 91 0 0 82 70 0 0 81 -60 0 0 80 74 0 0 78 82 0 0 77 84 0 0 76 70 0 0 75 76 0 0 73 87 0 0 72 82 0 0 70 76 0 0 69 71 0 0 68 73 0 0 66 68 0 0 50 112 0 0 49 -75 0 0 EndChar StartChar: L Encoding: 76 76 47 Width: 611 Flags: W Fore 230 729 m 1 230 125 l 1 579 125 l 1 579 0 l 1 80 0 l 1 80 729 l 1 230 729 l 1 EndSplineSet KernsSLIF: 8221 -141 0 0 8217 -138 0 0 119 -60 0 0 118 -74 0 0 89 -112 0 0 87 -68 0 0 86 -90 0 0 84 -95 0 0 52 -186 0 0 49 -114 0 0 EndChar StartChar: M Encoding: 77 77 48 Width: 833 Flags: W Fore 216 568 m 1 216 0 l 1 66 0 l 1 66 729 l 1 290 729 l 1 422 149 l 1 550 729 l 1 776 729 l 1 776 0 l 1 626 0 l 1 626 568 l 1 497 0 l 1 347 0 l 1 216 568 l 1 EndSplineSet KernsSLIF: 122 88 0 0 121 87 0 0 120 95 0 0 119 94 0 0 118 82 0 0 116 81 0 0 115 71 0 0 113 71 0 0 111 63 0 0 103 66 0 0 102 98 0 0 101 77 0 0 100 70 0 0 99 65 0 0 97 76 0 0 90 78 0 0 88 80 0 0 87 73 0 0 86 57 0 0 84 98 0 0 83 77 0 0 81 63 0 0 79 66 0 0 71 64 0 0 67 63 0 0 65 70 0 0 57 81 0 0 56 86 0 0 54 77 0 0 53 78 0 0 51 81 0 0 50 80 0 0 48 80 0 0 EndChar StartChar: N Encoding: 78 78 49 Width: 722 Flags: W Fore 511 0 m 1 218 504 l 1 218 0 l 1 68 0 l 1 68 729 l 1 222 729 l 1 511 233 l 1 511 729 l 1 661 729 l 1 661 0 l 1 511 0 l 1 EndSplineSet KernsSLIF: 122 84 0 0 121 83 0 0 120 91 0 0 119 90 0 0 118 78 0 0 116 77 0 0 115 67 0 0 113 67 0 0 103 62 0 0 102 94 0 0 100 66 0 0 99 61 0 0 90 74 0 0 88 76 0 0 87 69 0 0 84 94 0 0 83 73 0 0 81 59 0 0 57 77 0 0 56 82 0 0 54 73 0 0 53 74 0 0 51 77 0 0 50 76 0 0 48 76 0 0 EndChar StartChar: O Encoding: 79 79 50 Width: 778 Flags: W Fore 390 741 m 0 494 741 577.333 707.333 640 640 c 0 705.333 570 739.333 479 742 367 c 1 742 354 l 2 742 265.333 718.333 186.333 671 117 c 0 661.667 103 651.333 90 640 78 c 0 577.333 10.6667 494.333 -23 391 -23 c 0 287.667 -23 204.667 10.6667 142 78 c 0 82 142 48.3333 224.333 41 325 c 1 40 359 l 1 40 463.667 69.3333 552 128 624 c 2 129 625 l 1 130 626 l 1 131 627 l 2 136 633 136 633 142 640 c 0 204 707.333 286.667 741 390 741 c 0 391 613 m 0 319 613 264.667 581.667 228 519 c 1 228 518 l 1 202.667 474.667 190 421.667 190 359 c 0 190 263 217.333 192 272 146 c 0 305.333 118.667 345 105 391 105 c 0 461 105 514.667 135.667 552 197 c 0 578.667 239.667 592 292.333 592 355 c 0 592 457.667 563 531.333 505 576 c 0 473 600.667 435 613 391 613 c 0 EndSplineSet KernsSLIF: 122 74 0 0 120 59 0 0 114 64 0 0 112 69 0 0 110 64 0 0 109 67 0 0 108 60 0 0 107 68 0 0 105 60 0 0 104 60 0 0 98 68 0 0 89 -59 0 0 78 59 0 0 77 61 0 0 73 64 0 0 72 59 0 0 50 63 0 0 EndChar StartChar: P Encoding: 80 80 51 Width: 667 Flags: W Fore 226 260 m 5 226 0 l 5 76 0 l 5 76 729 l 5 398 729 l 6 516 729 590 684 620 594 c 4 620 592 l 4 628.667 566 633 536.333 633 503 c 4 633 409.667 602.667 341.667 542 299 c 5 542 298 l 5 541 297 l 6 505 272.333 462.333 260 413 260 c 6 226 260 l 5 226 385 m 5 366 385 l 6 438.667 385 477.333 416.333 482 479 c 5 483 494 l 5 483 560.667 451 597 387 603 c 6 366 604 l 5 226 604 l 5 226 385 l 5 EndSplineSet KernsSLIF: 197 -65 0 0 196 -65 0 0 193 -65 0 0 88 -69 0 0 65 -65 0 0 46 -94 0 0 44 -94 0 0 EndChar StartChar: Q Encoding: 81 81 52 Width: 778 Flags: W Fore 665 103 m 1 745 27 l 1 669 -54 l 1 583 27 l 1 527.667 -6.33333 464.667 -23 394 -23 c 0 290.667 -23 207.667 10.6667 145 78 c 0 86.3333 141.333 53 222.333 45 321 c 0 43.6667 333 43 345.667 43 359 c 0 43 459.667 70.6667 546 126 618 c 1 145 640 l 1 207.667 707.333 290.667 741 394 741 c 0 497.333 741 580.333 707.333 643 640 c 0 701 577.333 734.333 498 743 402 c 1 745 361 l 1 745 273.667 725.333 197.667 686 133 c 1 665 103 l 1 480 278 m 1 562 200 l 1 584 244 595 296.667 595 358 c 0 595 456.667 567 528.667 511 574 c 0 478.333 600 439.333 613 394 613 c 0 322 613 267.667 581.667 231 519 c 1 231 518 l 1 205.667 474.667 193 421.667 193 359 c 0 193 263 220.333 192 275 146 c 0 308.333 118.667 347.667 105 393 105 c 0 427.667 105 457 111.333 481 124 c 1 404 197 l 1 480 278 l 1 EndSplineSet KernsSLIF: 122 106 0 0 121 77 0 0 120 98 0 0 119 84 0 0 118 72 0 0 117 71 0 0 116 95 0 0 115 76 0 0 114 71 0 0 113 83 0 0 112 76 0 0 111 75 0 0 110 71 0 0 109 74 0 0 108 67 0 0 107 75 0 0 106 64 0 0 105 67 0 0 104 67 0 0 103 76 0 0 102 96 0 0 101 87 0 0 100 81 0 0 99 76 0 0 98 75 0 0 97 84 0 0 90 91 0 0 88 82 0 0 83 77 0 0 81 81 0 0 80 58 0 0 79 84 0 0 78 66 0 0 77 68 0 0 75 60 0 0 73 71 0 0 72 66 0 0 71 82 0 0 70 60 0 0 68 57 0 0 67 81 0 0 65 82 0 0 57 88 0 0 56 81 0 0 54 95 0 0 53 75 0 0 51 79 0 0 50 96 0 0 48 98 0 0 EndChar StartChar: R Encoding: 82 82 53 Width: 722 Flags: W Fore 230 289 m 1 230 0 l 1 80 0 l 1 80 729 l 1 471 729 l 2 532.333 729 579.333 712.333 612 679 c 0 648.667 641.667 667 592.667 667 532 c 0 667 444 626 384 544 352 c 1 582 335.333 606.333 320 617 306 c 0 631.667 286 640.333 242.667 643 176 c 0 643.667 156 644.333 126.333 645 87 c 0 645 60.3333 654.333 41.3333 673 30 c 2 674 29 l 1 677 27 l 1 677 0 l 1 516 0 l 1 502 25.3333 494.333 56.3333 493 93 c 1 493 125 l 1 494 173 l 1 495 202 l 1 495 250.667 474.667 278.667 434 286 c 0 424.667 288 414 289 402 289 c 2 230 289 l 1 230 414 m 1 411 414 l 2 449 414 475.333 420.333 490 433 c 0 508 448.333 517 474.333 517 511 c 0 517 545 508 569.667 490 585 c 0 475.333 597 449 603.333 411 604 c 2 230 604 l 1 230 414 l 1 EndSplineSet KernsSLIF: 122 98 0 0 120 106 0 0 119 88 0 0 118 75 0 0 116 64 0 0 114 59 0 0 112 64 0 0 110 59 0 0 109 62 0 0 107 63 0 0 102 67 0 0 98 63 0 0 88 80 0 0 83 66 0 0 73 59 0 0 65 87 0 0 57 70 0 0 56 68 0 0 54 57 0 0 53 57 0 0 51 72 0 0 50 90 0 0 48 64 0 0 EndChar StartChar: S Encoding: 83 83 54 Width: 667 Flags: W Fore 607 507 m 1 467 507 l 1 462.333 574.333 420.667 612 342 620 c 1 314 621 l 2 254 621 215 603.333 197 568 c 2 196 567 l 2 190.667 556.333 188 544.333 188 531 c 0 188 500.333 202 478 230 464 c 0 245.333 456 266.667 449 294 443 c 0 294.667 443 295.333 442.667 296 442 c 2 326 436 l 1 440 414 l 2 536.667 395.333 596.667 355.667 620 295 c 0 628.667 272.333 633 245 633 213 c 0 633 119.667 592.333 53 511 13 c 0 463 -11 404 -23 334 -23 c 0 190.667 -23 97.6667 24.3333 55 119 c 0 41.6667 147.667 34 180.667 32 218 c 1 178 218 l 1 182 151.333 221 112 295 100 c 1 342 97 l 1 414 97 460 117 480 157 c 0 486 168.333 489 181 489 195 c 0 489 233.667 469.667 261.667 431 279 c 0 411.667 287.667 385.333 295 352 301 c 2 250 321 l 2 154 339 92.6667 372.333 66 421 c 2 65 422 l 1 65 423 l 1 64 424 l 2 51.3333 448.667 45 479.667 45 517 c 0 45 612.333 86.6667 678 170 714 c 0 212 732 262.333 741 321 741 c 0 427 741 505.333 713.333 556 658 c 0 590 620.667 607 570.333 607 507 c 1 EndSplineSet KernsSLIF: 122 67 0 0 120 73 0 0 117 72 0 0 115 72 0 0 114 67 0 0 113 57 0 0 112 72 0 0 110 67 0 0 109 70 0 0 108 63 0 0 107 71 0 0 106 60 0 0 105 63 0 0 104 63 0 0 103 62 0 0 102 80 0 0 98 71 0 0 97 81 0 0 78 62 0 0 77 64 0 0 73 67 0 0 72 62 0 0 57 68 0 0 53 67 0 0 51 63 0 0 50 65 0 0 EndChar StartChar: T Encoding: 84 84 55 Width: 611 Flags: W Fore 385 604 m 1 385 0 l 1 235 0 l 1 235 604 l 1 14 604 l 1 14 729 l 1 598 729 l 1 598 604 l 1 385 604 l 1 EndSplineSet KernsSLIF: 8249 -98 0 0 248 -73 0 0 230 -73 0 0 198 -75 0 0 197 -87 0 0 196 -87 0 0 195 -87 0 0 194 -87 0 0 193 -87 0 0 192 -87 0 0 171 -101 0 0 122 -81 0 0 121 -80 0 0 120 -74 0 0 119 -77 0 0 118 -82 0 0 117 -72 0 0 115 -74 0 0 114 -71 0 0 113 -98 0 0 112 -115 0 0 111 -76 0 0 110 -120 0 0 109 -117 0 0 108 89 0 0 107 97 0 0 104 89 0 0 103 -75 0 0 101 -69 0 0 100 -99 0 0 99 -74 0 0 98 97 0 0 97 -73 0 0 82 76 0 0 80 80 0 0 78 88 0 0 77 90 0 0 76 76 0 0 75 82 0 0 74 -87 0 0 73 93 0 0 72 88 0 0 70 82 0 0 69 77 0 0 68 79 0 0 66 74 0 0 65 -87 0 0 59 -98 0 0 58 -97 0 0 52 -140 0 0 46 -67 0 0 44 -67 0 0 EndChar StartChar: U Encoding: 85 85 56 Width: 722 Flags: W Fore 504 729 m 1 654 729 l 1 654 235 l 2 654 155 630.333 93.6667 583 51 c 0 529 1.66667 456.333 -23 365 -23 c 0 274.333 -23 201.667 1.66667 147 51 c 0 99.6667 93 76 154.333 76 235 c 2 76 729 l 1 226 729 l 1 226 235 l 2 226 151 272.333 107.667 365 105 c 1 455 105 501.333 148.333 504 235 c 1 504 729 l 1 EndSplineSet KernsSLIF: 120 61 0 0 116 68 0 0 102 68 0 0 57 63 0 0 53 63 0 0 51 58 0 0 EndChar StartChar: V Encoding: 86 86 57 Width: 667 Flags: W Fore 397 0 m 5 270 0 l 5 24 729 l 5 175 729 l 5 337 180 l 5 496 729 l 5 647 729 l 5 397 0 l 5 EndSplineSet KernsSLIF: 8249 -72 0 0 198 -59 0 0 197 -71 0 0 196 -71 0 0 195 -71 0 0 194 -71 0 0 193 -71 0 0 192 -71 0 0 171 -74 0 0 120 64 0 0 107 58 0 0 98 58 0 0 74 -84 0 0 65 -71 0 0 59 -67 0 0 58 -65 0 0 52 -99 0 0 46 -69 0 0 44 -69 0 0 EndChar StartChar: W Encoding: 87 87 58 Width: 944 Flags: W Fore 730 0 m 1 595 0 l 1 473 569 l 1 354 0 l 1 219 0 l 1 13 729 l 1 172 729 l 1 285 183 l 1 398 729 l 1 546 729 l 1 664 182 l 1 773 729 l 1 932 729 l 1 730 0 l 1 EndSplineSet KernsSLIF: 122 66 0 0 120 60 0 0 108 64 0 0 107 72 0 0 106 61 0 0 104 64 0 0 98 72 0 0 88 73 0 0 78 63 0 0 77 65 0 0 75 57 0 0 73 68 0 0 72 63 0 0 70 57 0 0 52 -69 0 0 50 62 0 0 EndChar StartChar: X Encoding: 88 88 59 Width: 667 Flags: W Fore 419 372 m 1 653 0 l 1 475 0 l 1 335 253 l 1 196 0 l 1 22 0 l 1 252 367 l 1 30 729 l 1 208 729 l 1 336 489 l 1 470 729 l 1 644 729 l 1 419 372 l 1 EndSplineSet KernsSLIF: 122 110 0 0 120 106 0 0 114 79 0 0 112 84 0 0 110 79 0 0 109 82 0 0 108 78 0 0 107 86 0 0 106 75 0 0 105 78 0 0 104 78 0 0 98 86 0 0 88 86 0 0 87 70 0 0 82 65 0 0 80 69 0 0 78 77 0 0 77 79 0 0 76 65 0 0 75 71 0 0 74 -57 0 0 73 82 0 0 72 77 0 0 70 71 0 0 69 66 0 0 68 68 0 0 66 63 0 0 50 101 0 0 EndChar StartChar: Y Encoding: 89 89 60 Width: 667 Flags: W Fore 419 270 m 1 419 0 l 1 269 0 l 1 269 270 l 1 27 729 l 1 194 729 l 1 343 407 l 1 482 729 l 1 650 729 l 1 419 270 l 1 EndSplineSet KernsSLIF: 8249 -96 0 0 248 -67 0 0 230 -67 0 0 198 -74 0 0 197 -86 0 0 196 -86 0 0 195 -86 0 0 194 -86 0 0 193 -86 0 0 192 -86 0 0 171 -98 0 0 115 -85 0 0 113 -83 0 0 111 -70 0 0 107 62 0 0 103 -68 0 0 101 -63 0 0 100 -84 0 0 99 -89 0 0 98 62 0 0 97 -66 0 0 81 -76 0 0 74 -119 0 0 73 58 0 0 65 -86 0 0 59 -83 0 0 58 -81 0 0 52 -172 0 0 46 -78 0 0 44 -78 0 0 EndChar StartChar: Z Encoding: 90 90 61 Width: 611 Flags: W Fore 578 729 m 1 578 604 l 1 206 125 l 1 578 125 l 1 578 0 l 1 30 0 l 1 30 125 l 1 403 604 l 1 30 604 l 1 30 729 l 1 578 729 l 1 EndSplineSet KernsSLIF: 119 67 0 0 117 61 0 0 115 86 0 0 114 65 0 0 112 70 0 0 110 65 0 0 109 68 0 0 108 65 0 0 107 73 0 0 106 62 0 0 105 65 0 0 104 65 0 0 98 73 0 0 78 64 0 0 77 66 0 0 75 58 0 0 73 69 0 0 72 64 0 0 70 58 0 0 57 79 0 0 56 74 0 0 54 59 0 0 53 78 0 0 52 -90 0 0 48 64 0 0 EndChar StartChar: bracketleft Encoding: 91 91 62 Width: 333 Flags: W Fore 308 729 m 1 308 627 l 1 196 627 l 1 196 -98 l 1 308 -98 l 1 308 -200 l 1 66 -200 l 1 66 729 l 1 308 729 l 1 EndSplineSet EndChar StartChar: backslash Encoding: 92 92 63 Width: 278 Flags: W Fore 55 714 m 1 289 -14 l 1 222 -14 l 1 -12 714 l 1 55 714 l 1 EndSplineSet EndChar StartChar: bracketright Encoding: 93 93 64 Width: 333 Flags: W Fore 18 -200 m 1 18 -98 l 1 130 -98 l 1 130 627 l 1 18 627 l 1 18 729 l 1 260 729 l 1 260 -200 l 1 18 -200 l 1 EndSplineSet EndChar StartChar: asciicircum Encoding: 94 94 65 Width: 584 Flags: W Fore 522 270 m 1 409 270 l 1 288 570 l 1 173 270 l 1 61 270 l 1 226 695 l 1 351 695 l 1 522 270 l 1 EndSplineSet EndChar StartChar: underscore Encoding: 95 95 66 Width: 556 Flags: W Fore 578 -120 m 1 578 -189 l 1 -22 -189 l 1 -22 -120 l 1 578 -120 l 1 EndSplineSet EndChar StartChar: grave Encoding: 96 96 67 Width: 333 Flags: W Fore 17 757 m 1 143 757 l 1 213 607 l 1 143 607 l 1 17 757 l 1 EndSplineSet EndChar StartChar: a Encoding: 97 97 68 Width: 556 Flags: W Fore 524 17 m 1 524 0 l 1 372 0 l 1 361.333 12.6667 356 30.6667 356 54 c 1 306.667 2.66667 252 -23 192 -23 c 0 140.667 -23 98.6667 -6 66 28 c 0 40.6667 55.3333 28 92.3333 28 139 c 0 28 234.333 81 291 187 309 c 2 243 319 l 2 288.333 326.333 316 332.333 326 337 c 2 331 340 l 2 346.333 348 354.333 362 355 382 c 0 355 418 328 436 274 436 c 0 228.667 436 199.667 425.333 187 404 c 1 187 403 l 1 181 393 177 379.333 175 362 c 1 40 362 l 1 48.6667 485.333 125.667 547.667 271 549 c 1 417.667 549 491.333 493.667 492 383 c 1 492 83 l 2 492 60.3333 500.667 40.3333 518 23 c 2 524 17 l 1 355 217 m 2 355 255 l 1 342.333 249 322.667 243.333 296 238 c 2 248 229 l 2 204 219.667 178.333 203 171 179 c 1 171 178 l 1 169 172 168 164.333 168 155 c 0 168 122.333 184.333 101.667 217 93 c 0 225 91 234 90 244 90 c 0 302 90 337.333 117.667 350 173 c 0 353.333 186.333 355 201 355 217 c 2 EndSplineSet KernsSLIF: 122 104 0 0 120 97 0 0 116 67 0 0 114 69 0 0 112 74 0 0 110 69 0 0 109 72 0 0 108 65 0 0 107 73 0 0 105 65 0 0 104 65 0 0 102 72 0 0 98 73 0 0 89 -110 0 0 84 -103 0 0 83 57 0 0 78 64 0 0 77 66 0 0 75 58 0 0 73 69 0 0 72 64 0 0 70 58 0 0 67 58 0 0 57 60 0 0 56 65 0 0 54 63 0 0 53 68 0 0 51 65 0 0 50 93 0 0 48 66 0 0 EndChar StartChar: b Encoding: 98 98 69 Width: 611 Flags: W Fore 59 729 m 1 199 729 l 1 199 470 l 1 232.333 522.667 282 549 348 549 c 0 404.667 549 453.333 529 494 489 c 0 502.667 480.333 510.333 471.333 517 462 c 0 555.667 406.667 575 340.333 575 263 c 0 575 171.667 548.667 98 496 42 c 1 454 -1.33333 404.667 -23 348 -23 c 0 282 -23 232.333 3 199 55 c 1 199 0 l 1 59 0 l 1 59 729 l 1 317 432 m 0 273 432 240 408.333 218 361 c 1 218 361 l 1 205.333 333.667 199 301.667 199 265 c 0 199 192.333 219 141.667 259 113 c 0 275.667 100.333 295 94 317 94 c 0 359.667 94 392.333 117 415 163 c 0 428.333 191 435 224 435 262 c 0 435 330 416.333 379.333 379 410 c 0 360.333 424.667 339.667 432 317 432 c 0 EndSplineSet KernsSLIF: 117 59 0 0 114 57 0 0 112 62 0 0 110 57 0 0 109 60 0 0 107 61 0 0 98 61 0 0 89 -110 0 0 84 -115 0 0 73 57 0 0 57 68 0 0 56 70 0 0 54 59 0 0 53 77 0 0 51 78 0 0 48 63 0 0 EndChar StartChar: c Encoding: 99 99 70 Width: 556 Flags: W Fore 522 338 m 1 388 338 l 1 376.667 389.333 356.333 420 327 430 c 2 326 430 l 2 315.333 434 302.667 436 288 436 c 0 246.667 436 217.667 420.667 201 390 c 0 183 356.667 174 313 174 259 c 0 174 177.667 196 125.333 240 102 c 0 254.667 94 270.667 90 288 90 c 0 328 90 356.667 108.333 374 145 c 1 374 146 l 1 375 147 l 1 379.667 158.333 384 171.667 388 187 c 1 522 187 l 1 513.333 104.333 477 44.6667 413 8 c 0 376.333 -12.6667 334.333 -23 287 -23 c 0 181.667 -23 108.333 18.3333 67 101 c 0 45 144.333 34 197 34 259 c 0 34 383.667 73.6667 469.333 153 516 c 0 191 538 236.333 549 289 549 c 0 381 549 447.333 516.333 488 451 c 1 500.667 429 510 404.667 516 378 c 1 522 338 l 1 EndSplineSet KernsSLIF: 122 64 0 0 119 62 0 0 117 63 0 0 116 71 0 0 114 61 0 0 112 66 0 0 110 61 0 0 109 64 0 0 108 57 0 0 105 57 0 0 104 57 0 0 102 72 0 0 98 65 0 0 89 -98 0 0 84 -111 0 0 83 58 0 0 77 58 0 0 73 61 0 0 57 80 0 0 56 80 0 0 55 -81 0 0 54 70 0 0 53 87 0 0 51 69 0 0 48 73 0 0 EndChar StartChar: d Encoding: 100 100 71 Width: 611 Flags: W Fore 405 0 m 1 405 55 l 1 370.333 3 320.667 -23 256 -23 c 0 200 -23 151.333 -3.33333 110 36 c 0 101.333 44.6667 93.6667 53.6667 87 63 c 0 48.3333 118.333 29 184.667 29 262 c 0 29 353.333 55.3333 427 108 483 c 0 149.333 527 198.667 549 256 549 c 0 321.333 549 371 522.667 405 470 c 1 405 729 l 1 545 729 l 1 545 0 l 1 405 0 l 1 287 432 m 0 243 432 210.333 408.333 189 361 c 0 175.667 333 169 300 169 262 c 0 169 193.333 188 144.333 226 115 c 0 244 101 264.333 94 287 94 c 0 331.667 94 364.667 117.667 386 165 c 0 398.667 191.667 405 223.333 405 260 c 0 405 332.667 385.333 383.667 346 413 c 0 329.333 425.667 309.667 432 287 432 c 0 EndSplineSet KernsSLIF: 122 79 0 0 121 78 0 0 120 86 0 0 119 85 0 0 118 73 0 0 116 72 0 0 115 62 0 0 113 62 0 0 103 57 0 0 102 89 0 0 101 68 0 0 100 61 0 0 97 67 0 0 90 69 0 0 88 71 0 0 87 64 0 0 84 89 0 0 83 68 0 0 79 57 0 0 65 61 0 0 57 72 0 0 56 77 0 0 54 68 0 0 53 69 0 0 51 72 0 0 50 71 0 0 48 71 0 0 EndChar StartChar: e Encoding: 101 101 72 Width: 556 Flags: W Fore 524 226 m 1 162 226 l 1 164 180.667 170.667 149 182 131 c 0 202.667 99.6667 233.333 84 274 84 c 0 324 84 358.667 104.333 378 145 c 0 379.333 147 380.333 149.333 381 152 c 1 519 152 l 1 499.667 84.6667 457.667 35.6667 393 5 c 0 355.667 -13.6667 314.333 -23 269 -23 c 0 174.333 -23 105.333 13.6667 62 87 c 0 35.3333 133 22 189.333 22 256 c 0 22 371.333 56.6667 454.333 126 505 c 0 166 534.333 214.667 549 272 549 c 0 355.333 549 420.333 519 467 459 c 0 481 441 492.333 421 501 399 c 0 502.333 396.333 503.333 394 504 392 c 0 518 351.333 525 304 525 250 c 1 524 226 l 1 164 319 m 1 379 319 l 1 376.333 352.333 369 378.333 357 397 c 1 335.667 426.333 306.667 441.333 270 442 c 0 208.667 442 173.333 401 164 319 c 1 EndSplineSet KernsSLIF: 122 62 0 0 117 63 0 0 114 62 0 0 112 67 0 0 110 62 0 0 109 65 0 0 108 58 0 0 107 66 0 0 105 58 0 0 104 58 0 0 102 61 0 0 98 66 0 0 89 -105 0 0 84 -110 0 0 78 57 0 0 77 59 0 0 73 62 0 0 72 57 0 0 57 76 0 0 56 63 0 0 55 -79 0 0 EndChar StartChar: f Encoding: 102 102 73 Width: 333 Flags: W Fore 313 529 m 1 313 436 l 1 230 436 l 1 230 0 l 1 90 0 l 1 90 436 l 1 14 436 l 1 14 529 l 1 90 529 l 1 90 594 l 2 90 684 136 729 228 729 c 1 308 726 l 1 308 621 l 1 268 624 l 1 244 624 231.333 610 230 582 c 1 230 529 l 1 313 529 l 1 EndSplineSet KernsSLIF: 122 92 0 0 121 62 0 0 120 58 0 0 119 89 0 0 118 66 0 0 117 70 0 0 114 86 0 0 112 91 0 0 110 86 0 0 109 89 0 0 107 89 0 0 104 81 0 0 98 89 0 0 90 91 0 0 88 97 0 0 85 58 0 0 83 85 0 0 82 68 0 0 80 72 0 0 78 80 0 0 77 82 0 0 76 68 0 0 75 74 0 0 73 85 0 0 72 80 0 0 70 74 0 0 69 69 0 0 68 71 0 0 66 66 0 0 57 97 0 0 56 64 0 0 54 90 0 0 53 67 0 0 51 91 0 0 50 90 0 0 49 67 0 0 48 94 0 0 EndChar StartChar: g Encoding: 103 103 74 Width: 611 Flags: W Fore 408 540 m 1 541 540 l 1 541 -18 l 2 541 -104.667 500.333 -164 419 -196 c 0 393.667 -206 365 -212.667 333 -216 c 1 284 -218 l 1 202.667 -218 140.667 -200.667 98 -166 c 0 64 -137.333 46.3333 -103.667 45 -65 c 1 190 -65 l 1 201.333 -106.333 234.333 -127.333 289 -128 c 0 338.333 -128 373.333 -109.667 394 -73 c 0 403.333 -57 408 -38.6667 408 -18 c 2 408 55 l 1 371.333 13 335 -11.6667 299 -19 c 0 286.333 -21.6667 271.667 -23 255 -23 c 0 178.333 -23 119.667 10 79 76 c 0 49 124.667 34 185 34 257 c 0 34 351 60.3333 426.333 113 483 c 0 153.667 527 202 549 258 549 c 0 316 549 364.667 520.333 404 463 c 2 408 457 l 1 408 540 l 1 288 432 m 0 244.667 432 212.667 407.667 192 359 c 0 180 331 174 297.667 174 259 c 0 174 191 192.333 142.667 229 114 c 0 246.333 100.667 265.333 94 286 94 c 0 332.667 94 367.333 117.333 390 164 c 0 403.333 190.667 410 222.333 410 259 c 0 410 324.333 391.667 373.333 355 406 c 0 335 423.333 312.667 432 288 432 c 0 EndSplineSet KernsSLIF: 122 75 0 0 121 74 0 0 120 82 0 0 119 81 0 0 118 69 0 0 116 68 0 0 115 58 0 0 113 58 0 0 103 62 0 0 102 85 0 0 100 57 0 0 88 64 0 0 84 -136 0 0 83 64 0 0 65 57 0 0 57 68 0 0 56 73 0 0 54 64 0 0 53 65 0 0 51 68 0 0 50 67 0 0 48 67 0 0 EndChar StartChar: h Encoding: 104 104 75 Width: 611 Flags: W Fore 67 729 m 1 207 729 l 1 207 462 l 1 245.667 520 298.333 549 365 549 c 0 413 549 453.333 535.333 486 508 c 0 522.667 477.333 541 428.667 541 362 c 2 541 0 l 1 401 0 l 1 401 330 l 2 401 358.667 395.667 381 385 397 c 0 369 419 345.667 430 315 430 c 0 271 430 239.333 412.667 220 378 c 0 211.333 362 207 344 207 324 c 2 207 0 l 1 67 0 l 1 67 729 l 1 EndSplineSet KernsSLIF: 122 71 0 0 120 83 0 0 116 57 0 0 115 58 0 0 102 59 0 0 97 63 0 0 89 -124 0 0 86 -59 0 0 84 -136 0 0 57 59 0 0 56 68 0 0 54 66 0 0 53 60 0 0 51 65 0 0 50 61 0 0 48 68 0 0 EndChar StartChar: i Encoding: 105 105 76 Width: 278 Flags: W Fore 207 540 m 1 207 0 l 1 67 0 l 1 67 540 l 1 207 540 l 1 207 729 m 1 207 604 l 1 67 604 l 1 67 729 l 1 207 729 l 1 EndSplineSet KernsSLIF: 122 74 0 0 121 73 0 0 120 81 0 0 119 80 0 0 118 68 0 0 116 67 0 0 115 57 0 0 113 57 0 0 102 84 0 0 101 63 0 0 97 62 0 0 90 64 0 0 88 66 0 0 87 59 0 0 83 63 0 0 57 67 0 0 56 72 0 0 54 63 0 0 53 64 0 0 51 67 0 0 50 66 0 0 48 66 0 0 EndChar StartChar: j Encoding: 106 106 77 Width: 278 Flags: W Fore 210 540 m 1 210 -94 l 2 210 -157.333 188.667 -196 146 -210 c 0 130 -215.333 110.333 -218 87 -218 c 1 4 -213 l 1 4 -101 l 1 28 -105 l 1 29 -105 l 2 52.3333 -105 65.6667 -96.3333 69 -79 c 1 69 -78 l 1 70 -63 l 1 70 540 l 1 210 540 l 1 210 729 m 1 210 604 l 1 70 604 l 1 70 729 l 1 210 729 l 1 EndSplineSet KernsSLIF: 122 77 0 0 121 76 0 0 120 84 0 0 119 83 0 0 118 71 0 0 116 70 0 0 115 60 0 0 113 60 0 0 103 64 0 0 102 87 0 0 101 66 0 0 100 59 0 0 97 65 0 0 90 67 0 0 88 69 0 0 87 62 0 0 84 87 0 0 83 66 0 0 65 59 0 0 57 70 0 0 56 75 0 0 54 66 0 0 53 67 0 0 51 70 0 0 50 69 0 0 48 69 0 0 EndChar StartChar: k Encoding: 107 107 78 Width: 556 Flags: W Fore 199 330 m 1 376 540 l 1 535 540 l 1 351 336 l 1 548 0 l 1 384 0 l 1 255 238 l 1 199 177 l 1 199 0 l 1 59 0 l 1 59 729 l 1 199 729 l 1 199 330 l 1 EndSplineSet KernsSLIF: 122 135 0 0 121 104 0 0 120 113 0 0 119 120 0 0 118 105 0 0 116 60 0 0 114 96 0 0 112 101 0 0 110 96 0 0 109 99 0 0 108 92 0 0 107 100 0 0 106 89 0 0 105 92 0 0 104 92 0 0 102 69 0 0 98 100 0 0 88 116 0 0 87 58 0 0 84 -76 0 0 83 88 0 0 82 79 0 0 80 83 0 0 78 91 0 0 77 93 0 0 76 79 0 0 75 85 0 0 73 96 0 0 72 91 0 0 70 85 0 0 69 80 0 0 68 82 0 0 67 58 0 0 66 77 0 0 65 116 0 0 57 98 0 0 56 90 0 0 54 78 0 0 53 59 0 0 51 94 0 0 50 127 0 0 48 86 0 0 EndChar StartChar: l Encoding: 108 108 79 Width: 278 Flags: W Fore 207 729 m 1 207 0 l 1 67 0 l 1 67 729 l 1 207 729 l 1 EndSplineSet KernsSLIF: 122 74 0 0 120 81 0 0 119 80 0 0 116 67 0 0 115 57 0 0 113 57 0 0 102 84 0 0 101 63 0 0 97 62 0 0 90 64 0 0 88 66 0 0 87 59 0 0 84 84 0 0 83 63 0 0 57 67 0 0 56 72 0 0 54 63 0 0 53 64 0 0 51 67 0 0 50 66 0 0 48 66 0 0 EndChar StartChar: m Encoding: 109 109 80 Width: 889 Flags: W Fore 60 540 m 1 199 540 l 1 199 473 l 1 235 516.333 273.667 541 315 547 c 1 347 549 l 1 411 549 457.333 526.667 486 482 c 2 487 481 l 2 489.667 477.667 492 473.667 494 469 c 1 532.667 520.333 585.333 547 652 549 c 1 730.667 549 783 519.667 809 461 c 0 819 438.333 824 412 824 382 c 2 824 0 l 1 684 0 l 1 684 360 l 2 684 395.333 667.667 417.667 635 427 c 0 627 429 618 430 608 430 c 0 561.333 430 531.333 408.667 518 366 c 0 514 354 512 340 512 324 c 2 512 0 l 1 372 0 l 1 372 360 l 2 372 395.333 355.667 417.667 323 427 c 0 315 429 306 430 296 430 c 0 249.333 430 219.333 408.667 206 366 c 0 202 354 200 340 200 324 c 2 200 0 l 1 60 0 l 1 60 540 l 1 EndSplineSet KernsSLIF: 122 76 0 0 120 76 0 0 116 64 0 0 115 63 0 0 113 63 0 0 103 58 0 0 102 66 0 0 100 62 0 0 97 68 0 0 89 -110 0 0 88 69 0 0 84 -131 0 0 57 65 0 0 56 70 0 0 54 60 0 0 53 65 0 0 51 71 0 0 50 66 0 0 48 63 0 0 EndChar StartChar: n Encoding: 110 110 81 Width: 611 Flags: W Fore 63 540 m 1 203 540 l 1 203 462 l 1 239.667 516.667 289.333 545.667 352 549 c 0 358 549 358 549 365 549 c 0 449.667 549 505.333 515.333 532 448 c 0 541.333 423.333 546 394.667 546 362 c 2 546 0 l 1 406 0 l 1 406 333 l 2 406 397.667 376 430 316 430 c 0 266.667 430 232.667 411.333 214 374 c 0 206.667 359.333 203 342.667 203 324 c 2 203 0 l 1 63 0 l 1 63 540 l 1 EndSplineSet KernsSLIF: 122 76 0 0 120 88 0 0 116 61 0 0 115 62 0 0 113 57 0 0 103 57 0 0 102 63 0 0 97 67 0 0 89 -119 0 0 84 -80 0 0 57 64 0 0 56 73 0 0 54 71 0 0 53 65 0 0 51 70 0 0 50 66 0 0 48 73 0 0 EndChar StartChar: o Encoding: 111 111 82 Width: 611 Flags: W Fore 301 549 m 0 411 549 488.333 507.333 533 424 c 0 557 378.667 569 323.667 569 259 c 0 569 153 534.333 75 465 25 c 0 420.333 -7 366 -23 302 -23 c 0 198 -23 123 15.3333 77 92 c 0 49 138 35 195 35 263 c 0 35 373.667 70.6667 454 142 504 c 0 185.333 534 238.333 549 301 549 c 0 302 436 m 1 253.333 436 217.667 411.333 195 362 c 0 181.667 334 175 301 175 263 c 0 175 192.333 195.333 141.667 236 111 c 0 255.333 97 277.333 90 302 90 c 0 348.667 90 383.667 113.333 407 160 c 0 421.667 188.667 429 222.333 429 261 c 0 429 336.333 407.667 388.333 365 417 c 0 349 428.333 328 434.667 302 436 c 1 EndSplineSet KernsSLIF: 89 -117 0 0 84 -84 0 0 57 61 0 0 55 -88 0 0 53 70 0 0 51 66 0 0 EndChar StartChar: p Encoding: 112 112 83 Width: 611 Flags: W Fore 198 540 m 1 198 460 l 1 231.333 519.333 281.333 549 348 549 c 0 402 549 449.667 530.333 491 493 c 1 500.333 483.667 508.667 474 516 464 c 0 552.667 412.667 572 345.333 574 262 c 1 574 169.333 547.667 95.3333 495 40 c 0 453.667 -2.66667 404.667 -24 348 -24 c 0 281.333 -24 231.333 5.33333 198 64 c 1 198 -218 l 1 58 -218 l 1 58 540 l 1 198 540 l 1 316 432 m 0 271.333 432 238.333 408 217 360 c 0 204.333 332.667 198 300 198 262 c 0 198 191.333 217.333 141.667 256 113 c 0 274 99.6667 294 93 316 93 c 0 359.333 93 392 116 414 162 c 0 427.333 190 434 222.667 434 260 c 0 434 332.667 414.333 383.667 375 413 c 0 358.333 425.667 338.667 432 316 432 c 0 EndSplineSet KernsSLIF: 117 58 0 0 112 61 0 0 109 59 0 0 107 60 0 0 102 57 0 0 98 60 0 0 89 -110 0 0 84 -116 0 0 57 67 0 0 56 73 0 0 55 -88 0 0 54 63 0 0 53 77 0 0 51 78 0 0 48 67 0 0 EndChar StartChar: q Encoding: 113 113 84 Width: 611 Flags: W Fore 404 540 m 1 544 540 l 1 544 -218 l 1 404 -218 l 1 404 64 l 1 371.333 5.33333 321 -24 253 -24 c 0 199.667 -24 152.667 -5.66667 112 31 c 0 102 40.3333 93.3333 50.3333 86 61 c 0 49.3333 111 30 174.667 28 252 c 0 28 256 28 256 28 262 c 0 28 355.333 54.6667 429.667 108 485 c 0 148.667 527.667 197.333 549 254 549 c 0 320.667 549 370.667 519.333 404 460 c 1 404 540 l 1 286 432 m 0 241.333 432 208.333 408 187 360 c 0 174.333 332.667 168 300 168 262 c 0 168 191.333 187.333 141.667 226 113 c 0 244 99.6667 264 93 286 93 c 0 330.667 93 363.667 116.667 385 164 c 0 397.667 190.667 404 222.333 404 259 c 0 404 334.333 383.667 386 343 414 c 0 326.333 426 307.333 432 286 432 c 0 EndSplineSet KernsSLIF: 122 78 0 0 121 81 0 0 120 85 0 0 119 84 0 0 118 72 0 0 116 71 0 0 115 61 0 0 113 61 0 0 106 98 0 0 103 65 0 0 102 88 0 0 101 67 0 0 100 60 0 0 97 66 0 0 88 67 0 0 84 -133 0 0 83 67 0 0 65 60 0 0 57 71 0 0 56 76 0 0 54 67 0 0 53 68 0 0 51 71 0 0 50 70 0 0 48 70 0 0 EndChar StartChar: r Encoding: 114 114 85 Width: 389 Flags: W Fore 63 540 m 1 203 540 l 1 203 434 l 1 227.667 494 265.667 530.667 317 544 c 0 329 547.333 341 549 353 549 c 2 370 548 l 1 370 406 l 1 326 410 l 1 244 410 203 369 203 287 c 2 203 0 l 1 63 0 l 1 63 540 l 1 EndSplineSet KernsSLIF: 117 66 0 0 112 75 0 0 107 74 0 0 98 74 0 0 84 -102 0 0 80 57 0 0 78 65 0 0 77 67 0 0 75 59 0 0 73 70 0 0 72 65 0 0 70 59 0 0 55 -121 0 0 50 84 0 0 46 -57 0 0 44 -57 0 0 EndChar StartChar: s Encoding: 115 115 86 Width: 556 Flags: W Fore 505 366 m 1 370 366 l 1 369.333 414 335.667 438.333 269 439 c 0 226.333 439 200.333 427.333 191 404 c 1 191 403 l 1 188 389 l 1 188 374.333 196 363.333 212 356 c 2 213 356 l 1 237 347 l 1 414 296 l 2 484 275.333 519.333 230 520 160 c 0 520 106 500 62 460 28 c 0 458.667 26.6667 457.333 25.6667 456 25 c 0 416 -7 358.667 -23 284 -23 c 0 129.333 -23 45 29.3333 31 134 c 0 29.6667 141.333 29 149 29 157 c 1 166 157 l 1 171.333 133 180.333 116 193 106 c 1 212.333 93.3333 240 87 276 87 c 0 336 87 370 101 378 129 c 0 379.333 132.333 380 136 380 140 c 0 380 157.333 369.667 170 349 178 c 0 344.333 180 339 182 333 184 c 2 166 236 l 2 124.667 249.333 96.3333 263.333 81 278 c 2 78 281 l 2 58 303 48 332.333 48 369 c 0 48 441 80 492.333 144 523 c 0 178.667 540.333 220.667 549 270 549 c 0 371.333 549 441 518.667 479 458 c 0 495.667 432 504.333 401.333 505 366 c 1 EndSplineSet KernsSLIF: 122 65 0 0 117 60 0 0 114 60 0 0 112 65 0 0 110 60 0 0 109 63 0 0 107 64 0 0 102 69 0 0 98 64 0 0 89 -111 0 0 84 -112 0 0 83 73 0 0 77 57 0 0 73 60 0 0 56 85 0 0 55 -75 0 0 54 72 0 0 53 100 0 0 51 81 0 0 48 75 0 0 Substitution: 0 0 'medi' longs Substitution: 0 0 'init' longs EndChar StartChar: t Encoding: 116 116 87 Width: 333 Flags: W Fore 301 529 m 1 301 436 l 1 223 436 l 1 223 142 l 2 223 111.333 229 93 241 87 c 2 242 87 l 2 248 84.3333 257 83 269 83 c 1 301 86 l 1 301 -12 l 1 278.333 -19.3333 251.333 -23 220 -23 c 0 129.333 -23 83.6667 19.3333 83 104 c 1 83 436 l 1 14 436 l 1 14 529 l 1 83 529 l 1 83 674 l 1 223 674 l 1 223 529 l 1 301 529 l 1 EndSplineSet KernsSLIF: 122 106 0 0 121 68 0 0 120 108 0 0 119 82 0 0 118 64 0 0 117 77 0 0 116 103 0 0 115 77 0 0 114 74 0 0 113 57 0 0 112 79 0 0 110 74 0 0 109 77 0 0 108 70 0 0 107 78 0 0 106 67 0 0 105 70 0 0 102 106 0 0 98 78 0 0 90 90 0 0 88 102 0 0 83 78 0 0 82 57 0 0 81 65 0 0 80 61 0 0 79 68 0 0 78 69 0 0 77 71 0 0 76 57 0 0 75 63 0 0 73 74 0 0 72 69 0 0 71 67 0 0 70 63 0 0 69 58 0 0 68 60 0 0 67 67 0 0 65 68 0 0 57 91 0 0 56 72 0 0 54 83 0 0 53 71 0 0 51 85 0 0 50 99 0 0 48 87 0 0 EndChar StartChar: u Encoding: 117 117 88 Width: 611 Flags: W Fore 541 0 m 1 401 0 l 1 401 64 l 1 364.333 9.33333 314.667 -19.6667 252 -23 c 2 239 -23 l 2 154.333 -23 98.6667 10.6667 72 78 c 0 62.6667 102.667 58 131.333 58 164 c 2 58 540 l 1 198 540 l 1 198 193 l 2 198 128.333 228 96 288 96 c 0 336.667 96 370.333 114.333 389 151 c 0 397 165.667 401 182.667 401 202 c 2 401 540 l 1 541 540 l 1 541 0 l 1 EndSplineSet KernsSLIF: 122 75 0 0 121 74 0 0 120 82 0 0 119 81 0 0 118 69 0 0 116 68 0 0 115 58 0 0 113 58 0 0 102 85 0 0 101 64 0 0 100 57 0 0 97 63 0 0 88 64 0 0 84 -136 0 0 83 64 0 0 65 57 0 0 57 68 0 0 56 73 0 0 54 64 0 0 53 65 0 0 51 68 0 0 50 67 0 0 48 67 0 0 EndChar StartChar: v Encoding: 118 118 89 Width: 556 Flags: W Fore 350 0 m 1 203 0 l 1 14 540 l 1 162 540 l 1 279 145 l 1 388 540 l 1 536 540 l 1 350 0 l 1 EndSplineSet KernsSLIF: 122 110 0 0 120 129 0 0 117 71 0 0 114 70 0 0 112 76 0 0 110 70 0 0 109 74 0 0 107 74 0 0 106 64 0 0 105 66 0 0 104 66 0 0 102 74 0 0 98 74 0 0 84 -102 0 0 80 58 0 0 78 66 0 0 77 68 0 0 75 60 0 0 73 70 0 0 72 66 0 0 70 60 0 0 65 -63 0 0 55 -143 0 0 50 106 0 0 EndChar StartChar: w Encoding: 119 119 90 Width: 778 Flags: W Fore 613 0 m 1 468 0 l 1 387 381 l 1 301 0 l 1 157 0 l 1 5 540 l 1 150 540 l 1 236 162 l 1 318 540 l 1 458 540 l 1 539 162 l 1 621 540 l 1 766 540 l 1 613 0 l 1 EndSplineSet KernsSLIF: 122 118 0 0 120 112 0 0 117 86 0 0 116 71 0 0 114 81 0 0 112 86 0 0 110 81 0 0 109 84 0 0 107 85 0 0 106 74 0 0 105 77 0 0 104 77 0 0 102 89 0 0 98 85 0 0 84 -91 0 0 82 64 0 0 80 68 0 0 78 76 0 0 77 78 0 0 76 64 0 0 75 70 0 0 73 81 0 0 72 76 0 0 70 70 0 0 69 65 0 0 68 67 0 0 66 62 0 0 57 66 0 0 55 -113 0 0 53 65 0 0 51 61 0 0 50 114 0 0 EndChar StartChar: x Encoding: 120 120 91 Width: 556 Flags: W Fore 355 272 m 1 535 0 l 1 367 0 l 1 276 168 l 1 184 0 l 1 16 0 l 1 196 272 l 1 20 540 l 1 188 540 l 1 276 377 l 1 363 540 l 1 531 540 l 1 355 272 l 1 EndSplineSet KernsSLIF: 122 123 0 0 121 135 0 0 120 100 0 0 119 114 0 0 118 130 0 0 117 73 0 0 114 84 0 0 112 89 0 0 110 84 0 0 109 87 0 0 108 80 0 0 107 88 0 0 106 77 0 0 105 80 0 0 104 80 0 0 102 60 0 0 98 88 0 0 88 105 0 0 84 -88 0 0 83 80 0 0 82 67 0 0 80 71 0 0 78 79 0 0 77 81 0 0 76 67 0 0 75 73 0 0 73 84 0 0 72 79 0 0 70 73 0 0 69 68 0 0 68 70 0 0 66 65 0 0 65 102 0 0 57 91 0 0 56 82 0 0 54 70 0 0 53 61 0 0 51 104 0 0 50 115 0 0 48 84 0 0 EndChar StartChar: y Encoding: 121 121 92 Width: 556 Flags: W Fore 394 540 m 1 538 540 l 1 316 -99 l 1 299.333 -145 281 -175 261 -189 c 1 237 -202 l 1 210.333 -213.333 176.667 -219 136 -219 c 0 121.333 -219 104.667 -217.667 86 -215 c 1 86 -110 l 1 100.667 -114 113 -116 123 -116 c 0 157 -116 182 -101.333 198 -72 c 0 206 -58.6667 210 -43.3333 210 -26 c 2 210 -23 l 1 210 -22 l 1 9 540 l 1 163 540 l 1 282 147 l 1 394 540 l 1 EndSplineSet KernsSLIF: 122 112 0 0 120 131 0 0 117 69 0 0 114 72 0 0 112 77 0 0 110 72 0 0 109 75 0 0 107 76 0 0 106 65 0 0 105 68 0 0 104 68 0 0 102 74 0 0 98 76 0 0 84 -100 0 0 80 59 0 0 78 67 0 0 77 69 0 0 75 61 0 0 73 72 0 0 72 67 0 0 70 61 0 0 68 58 0 0 65 -63 0 0 55 -142 0 0 50 108 0 0 EndChar StartChar: z Encoding: 122 122 93 Width: 500 Flags: W Fore 459 540 m 1 459 427 l 1 194 113 l 1 468 113 l 1 468 0 l 1 21 0 l 1 21 113 l 1 288 427 l 1 39 427 l 1 39 540 l 1 459 540 l 1 EndSplineSet KernsSLIF: 122 64 0 0 121 97 0 0 120 119 0 0 119 105 0 0 118 92 0 0 117 69 0 0 116 95 0 0 115 84 0 0 114 72 0 0 113 66 0 0 112 78 0 0 110 72 0 0 109 76 0 0 108 68 0 0 107 76 0 0 106 66 0 0 105 68 0 0 104 68 0 0 103 62 0 0 102 96 0 0 101 73 0 0 100 64 0 0 99 61 0 0 98 76 0 0 97 85 0 0 84 -100 0 0 83 83 0 0 81 68 0 0 80 60 0 0 79 71 0 0 78 68 0 0 77 70 0 0 75 62 0 0 73 72 0 0 72 68 0 0 71 69 0 0 70 62 0 0 68 58 0 0 67 69 0 0 65 93 0 0 57 92 0 0 56 94 0 0 54 84 0 0 53 83 0 0 51 82 0 0 50 65 0 0 48 89 0 0 EndChar StartChar: braceleft Encoding: 123 123 94 Width: 389 Flags: W Fore 317 729 m 1 317 630 l 1 280 630 l 2 252 630 237 611 235 573 c 1 235 378 l 2 235 332.667 223.667 302.667 201 288 c 2 200 288 l 2 186.667 279.333 166 273 138 269 c 1 184 261.667 212.667 246 224 222 c 1 225 222 l 1 230.333 210.667 233.333 195.667 234 177 c 1 235 159 l 1 235 -36 l 2 235 -72 243.333 -92.6667 260 -98 c 1 280 -101 l 1 317 -101 l 1 317 -200 l 1 241 -200 l 2 194.333 -200 159.667 -179.333 137 -138 c 0 124.333 -116 118 -90 118 -60 c 2 118 150 l 2 118 182 110.333 203 95 213 c 2 94 213 l 1 93 214 l 1 87 217 l 2 77.6667 220.333 62.3333 222 41 222 c 2 37 223 l 1 37 315 l 1 41 315 l 1 53 315 l 2 93 315.667 114.333 333 117 367 c 1 118 378 l 1 118 589 l 2 118 644.333 137.333 684.667 176 710 c 0 194.667 722.667 216.333 729 241 729 c 2 317 729 l 1 EndSplineSet EndChar StartChar: bar Encoding: 124 124 95 Width: 280 Flags: W Fore 180 729 m 1 180 -200 l 1 100 -200 l 1 100 729 l 1 180 729 l 1 EndSplineSet EndChar StartChar: braceright Encoding: 125 125 96 Width: 389 Flags: W Fore 72 -200 m 1 72 -101 l 1 109 -101 l 2 137 -101 152 -82 154 -44 c 1 154 151 l 2 154 196.333 165.333 226.333 188 241 c 2 189 241 l 2 202.333 249.667 223 256 251 260 c 1 205 267.333 176.333 283 165 307 c 0 157.667 321 154 342 154 370 c 2 154 565 l 2 154 601 145.667 621.667 129 627 c 1 109 630 l 1 72 630 l 1 72 729 l 1 148 729 l 2 194.667 729 229.333 708.333 252 667 c 0 264.667 645 271 619 271 589 c 2 271 379 l 2 271 347 278.667 326 294 316 c 2 302 312 l 2 311.333 308.667 326.667 307 348 307 c 2 352 306 l 1 352 214 l 1 348 214 l 1 336 214 l 2 296 213.333 274.667 196 272 162 c 1 271 151 l 1 271 -60 l 2 271 -115.333 251.667 -155.667 213 -181 c 0 194.333 -193.667 172.667 -200 148 -200 c 2 72 -200 l 1 EndSplineSet EndChar StartChar: asciitilde Encoding: 126 126 97 Width: 584 Flags: W Fore 441 288 m 1 519 288 l 1 513 190.667 470.667 142 392 142 c 0 362 142 334.333 150.667 309 168 c 1 252 210 l 2 230.667 226 210.333 234 191 234 c 0 167 234 151 225 143 207 c 0 140.333 199.667 138.667 187 138 169 c 1 60 169 l 1 64.6667 265.667 107 314 187 314 c 0 218.333 314 246 305.667 270 289 c 2 327 247 l 2 349.667 230.333 370 222 388 222 c 0 412 222 428 231 436 249 c 0 438.667 256.333 440.333 269.333 441 288 c 1 EndSplineSet EndChar StartChar: exclamdown Encoding: 161 161 98 Width: 333 Flags: W Fore 66 -186 m 1 66 24 l 1 108 333 l 1 175 333 l 1 216 24 l 1 216 -186 l 1 66 -186 l 1 66 394 m 1 66 540 l 1 216 540 l 1 216 394 l 1 66 394 l 1 EndSplineSet EndChar StartChar: cent Encoding: 162 162 99 Width: 556 Flags: W Fore 303 435 m 1 303 91 l 1 339 96.3333 364.333 118.667 379 158 c 1 380 159 l 1 383 169 383 169 387 182 c 1 388 187 l 1 522 187 l 1 515.333 113 483.333 56.3333 426 17 c 0 390.667 -7.66667 349.667 -21 303 -23 c 1 303 -124 l 1 259 -124 l 1 259 -22 l 1 170.333 -16 107 25 69 101 c 0 47 145 36 197.667 36 259 c 0 36 397.667 83.6667 487.333 179 528 c 0 203 538 229.667 544.667 259 548 c 1 259 634 l 1 303 634 l 1 303 549 l 1 379 547.667 437.667 518.667 479 462 c 0 504.333 427.333 518.667 386 522 338 c 1 388 338 l 1 377.333 388.667 355.333 419.667 322 431 c 1 303 435 l 1 259 94 m 1 259 433 l 1 204.333 419 176.667 361.333 176 260 c 0 176 166 203.667 110.667 259 94 c 1 EndSplineSet EndChar StartChar: sterling Encoding: 163 163 100 Width: 556 Flags: W Fore 375 371 m 1 375 316 l 1 253 316 l 1 263 294.667 268 275 268 257 c 0 268 214.333 246.333 172 203 130 c 0 189.667 116.667 172.667 102 152 86 c 1 201.333 109.333 238.667 121.667 264 123 c 0 278 123 299.333 119.333 328 112 c 0 352.667 105.333 373.667 102 391 102 c 0 422.333 102 457.333 111.667 496 131 c 1 537 22 l 1 486.333 -8 438 -23 392 -23 c 0 370.667 -23 337.667 -17.6667 293 -7 c 0 250.333 3.66667 217.667 9 195 9 c 0 162.333 9 126 -1 86 -21 c 1 31 80 l 1 86.3333 118 120 152 132 182 c 0 138 196 141 212.333 141 231 c 0 141 253.667 134 282 120 316 c 1 31 316 l 1 31 371 l 1 91 371 l 1 59.6667 425.667 42.6667 464.667 40 488 c 1 38 516 l 1 38 569.333 58.3333 615.333 99 654 c 0 103 658 107.333 662 112 666 c 0 154.667 698.667 209.333 715 276 715 c 0 374.667 715 444 684 484 622 c 2 485 621 l 2 489 614 489 614 494 605 c 0 508 577.667 517.333 537.333 522 484 c 1 390 484 l 1 389 495 l 1 384.333 531.667 374.667 557.333 360 572 c 2 359 573 l 1 354 577 l 2 334 595 308.333 604 277 604 c 0 236.333 604 207.333 588.333 190 557 c 0 190 556.333 189.667 556 189 556 c 1 182.333 543.333 179 529 179 513 c 0 179 499 185.333 478.667 198 452 c 1 199 451 l 1 199 450 l 1 200 449 l 1 206 436 l 1 236 371 l 1 375 371 l 1 EndSplineSet EndChar StartChar: currency Encoding: 164 164 101 Width: 556 Flags: W Fore 388 528 m 1 461 601 l 1 530 532 l 1 455 457 l 1 473 421 482 386.667 482 354 c 0 482 316 472.333 280 453 246 c 1 530 170 l 1 461 102 l 1 386 177 l 1 351.333 158.333 322 148.333 298 147 c 2 297 147 l 1 296 147 l 2 292 147 292 147 286 147 c 0 240 147 203 157.333 175 178 c 1 96 100 l 1 28 169 l 1 106 246 l 1 86 282 76 317.333 76 352 c 0 76 391.333 85.6667 426.333 105 457 c 1 26 536 l 1 95 604 l 1 172 527 l 1 205.333 547.667 241.667 558 281 558 c 0 320.333 558 356 548 388 528 c 1 280 460 m 0 240.667 460 210.333 443.667 189 411 c 0 177.667 393.667 172 374 172 352 c 0 172 313.333 188.333 283.333 221 262 c 0 238.333 250.667 257.667 245 279 245 c 0 317 245 346.667 261 368 293 c 0 380 311 386 331 386 353 c 0 386 390.333 370.333 420 339 442 c 0 321 454 301.333 460 280 460 c 0 EndSplineSet EndChar StartChar: yen Encoding: 165 165 102 Width: 556 Flags: W Fore 497 351 m 1 497 292 l 1 355 292 l 1 355 239 l 1 497 239 l 1 497 180 l 1 355 180 l 1 355 0 l 1 215 0 l 1 215 180 l 1 70 180 l 1 70 239 l 1 215 239 l 1 215 292 l 1 70 292 l 1 70 351 l 1 208 351 l 1 5 704 l 1 144 704 l 1 283 450 l 1 417 704 l 1 552 704 l 1 360 351 l 1 497 351 l 1 EndSplineSet EndChar StartChar: brokenbar Encoding: 166 166 103 Width: 280 Flags: W Fore 180 729 m 1 180 340 l 1 100 340 l 1 100 729 l 1 180 729 l 1 180 189 m 1 180 -200 l 1 100 -200 l 1 100 189 l 1 180 189 l 1 EndSplineSet EndChar StartChar: section Encoding: 167 167 104 Width: 556 Flags: W Fore 473 544 m 1 346 544 l 1 340 592 317.333 617.667 278 621 c 2 277 621 l 1 268 621 l 2 235.333 621 215 609.333 207 586 c 1 204 570 l 1 204 551.333 217 533 243 515 c 0 255 507 272 497 294 485 c 2 421 415 l 2 485 379 517.333 328 518 262 c 0 518 208.667 497 168.333 455 141 c 1 424 124 l 1 470 91.3333 493.333 46.6667 494 -10 c 0 494 -78.6667 466 -130.667 410 -166 c 0 372.667 -189.333 328 -201 276 -201 c 0 136.667 -201 66.3333 -134 65 0 c 1 196 0 l 1 196 -10 l 1 198 -38 204.333 -57.3333 215 -68 c 0 229.667 -82.6667 250.333 -90 277 -90 c 0 313 -90 336.667 -77.6667 348 -53 c 0 351.333 -45.6667 353 -37.6667 353 -29 c 0 353 -11 347 4 335 16 c 0 328.333 22.6667 311 33.6667 283 49 c 1 112 149 l 2 60 179.667 33.6667 223.667 33 281 c 0 33 321 46.3333 355 73 383 c 0 85.6667 396.333 103 411.333 125 428 c 1 106.333 446.667 95 459 91 465 c 0 73 487.667 64 516.333 64 551 c 0 64 609.667 90 655.333 142 688 c 0 178.667 711.333 222.333 723 273 723 c 0 344.333 723 398 703 434 663 c 2 435 662 l 1 447 647 l 1 462.333 621.667 471 587.333 473 544 c 1 337 306 m 1 194 382 l 1 166.667 365.333 152.667 343.667 152 317 c 0 152 293.667 163 274.333 185 259 c 2 186 258 l 1 205 247 l 1 352 167 l 1 382 188.333 397.333 210 398 232 c 0 398 255.333 386.667 274.667 364 290 c 1 364 290 l 1 337 306 l 1 EndSplineSet EndChar StartChar: dieresis Encoding: 168 168 105 Width: 333 Flags: W Fore 128 743 m 1 128 621 l 1 18 621 l 1 18 743 l 1 128 743 l 1 314 743 m 1 314 621 l 1 204 621 l 1 204 743 l 1 314 743 l 1 EndSplineSet EndChar StartChar: copyright Encoding: 169 169 106 Width: 737 Flags: W Fore 552 431 m 1 462 431 l 1 452 480.333 421 506.333 369 509 c 1 317 509 282.333 482.333 265 429 c 0 260.333 415.667 257.333 401 256 385 c 1 255 359 l 1 255 284.333 278.333 237.667 325 219 c 0 337 213.667 350.667 211 366 211 c 0 422 211 453.667 237.333 461 290 c 2 462 297 l 1 554 297 l 1 550.667 225.667 519.667 176 461 148 c 0 433 134.667 400.667 128 364 128 c 0 286.667 128 230.333 159.667 195 223 c 0 173.667 260.333 163 306 163 360 c 0 163 454.667 193.333 521.667 254 561 c 0 286 581.667 323.667 592 367 592 c 0 435 592 486.667 568.667 522 522 c 0 539.333 498.667 549.333 468.333 552 431 c 1 369 743 m 2 469 743 555.667 709 629 641 c 0 701 573.667 741.333 491.333 750 394 c 1 751 361 l 1 751 257.667 715.667 169.333 645 96 c 0 576.333 24 491 -15 389 -21 c 2 364 -22 l 2 267.333 -22 182.333 12 109 80 c 0 37.6667 146.667 -2.66667 228 -12 324 c 0 -13.3333 336 -14 348.333 -14 361 c 0 -14 461 20.3333 547.667 89 621 c 0 157 693.667 239.667 734 337 742 c 1 369 743 l 2 368 671 m 0 284.667 671 213 640.667 153 580 c 0 153 579.333 152.667 578.667 152 578 c 0 93.3333 518 64 445.667 64 361 c 0 64 277 93.3333 204.333 152 143 c 0 210.667 82.3333 281.667 51.3333 365 50 c 1 451.667 50 525 80.6667 585 142 c 0 643.667 202 673 275 673 361 c 0 673 447 642.667 520.333 582 581 c 0 522.667 641 451.333 671 368 671 c 0 EndSplineSet EndChar StartChar: ordfeminine Encoding: 170 170 107 Width: 370 Flags: W Fore 321 340 m 1 321 262 l 1 37 262 l 1 37 340 l 1 321 340 l 1 329 410 m 1 329 400 l 1 237 400 l 1 231 407.333 227.667 418 227 432 c 1 198.333 401.333 165.667 386 129 386 c 0 85.6667 386 56 403.667 40 439 c 0 34 452.333 31 467.333 31 484 c 0 31 542 62.6667 576.333 126 587 c 2 160 593 l 2 187.333 597.667 204.667 602 212 606 c 0 221.333 610 226.333 618 227 630 c 0 227 650.667 210.667 661 178 661 c 0 146.667 661 128 651.333 122 632 c 1 122 631 l 1 122 630 l 1 119 617 l 1 41 617 l 1 42.3333 691 87.3333 728.333 176 729 c 0 264 729 308.333 695.667 309 629 c 1 309 450 l 2 309 435.333 315.667 422 329 410 c 1 227 530 m 1 227 553 l 1 219.667 549 208 545.667 192 543 c 2 163 537 l 2 134.333 531 118.667 519.333 116 502 c 1 115 493 l 1 115 470.333 127.333 457.667 152 455 c 0 154.667 454.333 157.667 454 161 454 c 0 198.333 454 220 473.333 226 512 c 1 227 530 l 1 EndSplineSet EndChar StartChar: guillemotleft Encoding: 171 171 108 Width: 556 Flags: W Fore 88 218 m 1 88 332 l 1 255 481 l 1 255 364 l 1 154 275 l 1 255 186 l 1 255 72 l 1 88 218 l 1 301 218 m 1 301 332 l 1 468 481 l 1 468 364 l 1 367 275 l 1 468 186 l 1 468 72 l 1 301 218 l 1 EndSplineSet EndChar StartChar: logicalnot Encoding: 172 172 109 Width: 584 Flags: W Fore 40 375 m 1 544 375 l 1 544 86 l 1 467 86 l 1 467 298 l 1 40 298 l 1 40 375 l 1 EndSplineSet EndChar StartChar: registered Encoding: 174 174 110 Width: 737 Flags: W Fore 288 313 m 1 288 140 l 1 192 140 l 1 192 583 l 1 430 583 l 2 489.333 583 527 559 543 511 c 1 543 511 l 1 548.333 497 551 480.667 551 462 c 0 551 412.667 527.667 376.667 481 354 c 1 504.333 343.333 519 332 525 320 c 1 525 320 l 1 532.333 306 536.667 264.333 538 195 c 0 538 179.667 543 169 553 163 c 2 557 161 l 1 557 140 l 1 454 140 l 1 444.667 157.333 440 184.333 440 221 c 1 441 247 l 1 441 264 l 2 441 296 420.667 312.333 380 313 c 2 288 313 l 1 288 394 m 1 391 394 l 2 425 394 445 403 451 421 c 0 453.667 427.667 455 436.667 455 448 c 0 455 476 444.667 493 424 499 c 0 416 501 405 502 391 502 c 2 288 502 l 1 288 394 l 1 369 743 m 2 469 743 555.667 709 629 641 c 0 701 573.667 741.333 491.333 750 394 c 1 751 361 l 1 751 257.667 715.667 169.333 645 96 c 0 576.333 24 491 -15 389 -21 c 2 364 -22 l 2 267.333 -22 182.333 12 109 80 c 0 37.6667 146.667 -2.66667 228 -12 324 c 0 -13.3333 336 -14 348.333 -14 361 c 0 -14 461 20.3333 547.667 89 621 c 0 157 693.667 239.667 734 337 742 c 1 369 743 l 2 368 671 m 0 284.667 671 213 640.667 153 580 c 0 153 579.333 152.667 578.667 152 578 c 0 93.3333 518 64 445.667 64 361 c 0 64 277 93.3333 204.333 152 143 c 0 210.667 82.3333 281.667 51.3333 365 50 c 1 451.667 50 525 80.6667 585 142 c 0 643.667 202 673 275 673 361 c 0 673 447 642.667 520.333 582 581 c 0 522.667 641 451.333 671 368 671 c 0 EndSplineSet EndChar StartChar: macron Encoding: 175 175 111 Width: 333 Flags: W Fore 315 719 m 1 315 640 l 1 16 640 l 1 16 719 l 1 315 719 l 1 EndSplineSet EndChar StartChar: degree Encoding: 176 176 112 Width: 606 Flags: W Fore 303 686 m 0 352.333 686 392 666.333 422 627 c 0 442.667 600.333 453.333 569.667 454 535 c 0 454 484.333 434 444 394 414 c 0 366.667 393.333 335.667 383 301 383 c 0 253 383 213.667 402.667 183 442 c 0 161.667 469.333 151 500.333 151 535 c 0 151 584.333 171 624.333 211 655 c 0 237.667 675.667 268.333 686 303 686 c 0 303 623 m 0 269.667 623 244.333 609 227 581 c 0 218.333 567 214 551.333 214 534 c 0 214 502 227.667 477.333 255 460 c 0 269.667 450.667 285 446 301 446 c 0 335.667 446 361.667 460.667 379 490 c 1 379 491 l 1 386.333 503.667 390.333 518.333 391 535 c 0 391 567 377 592 349 610 c 0 335 618.667 319.667 623 303 623 c 0 EndSplineSet EndChar StartChar: plusminus Encoding: 177 177 113 Width: 584 Flags: W Fore 527 103 m 1 527 -16 l 1 56 -16 l 1 56 103 l 1 527 103 l 1 527 432 m 1 527 313 l 1 351 313 l 1 351 137 l 1 232 137 l 1 232 313 l 1 56 313 l 1 56 432 l 1 232 432 l 1 232 608 l 1 351 608 l 1 351 432 l 1 527 432 l 1 EndSplineSet EndChar StartChar: twosuperior Encoding: 178 178 114 Width: 351 Flags: W Fore 326 365 m 1 326 284 l 1 16 284 l 1 18 336 32.3333 376 59 404 c 0 73 419.333 93.3333 435.667 120 453 c 0 178 491.667 212.333 519.333 223 536 c 0 229.667 547.333 233 562 233 580 c 0 233 616 217.667 637 187 643 c 1 172 644 l 2 138 644 118.333 625.667 113 589 c 1 112 573 l 1 114 557 l 1 22 557 l 1 21 575 l 1 21 649 54.3333 694.667 121 712 c 0 137.667 716 156.333 718 177 718 c 0 257.667 718 306 688 322 628 c 0 326 614.667 328 600 328 584 c 0 328 546.667 315.333 515 290 489 c 0 276 475 254.667 458 226 438 c 2 167 395 l 2 161 391 151.667 381 139 365 c 1 326 365 l 1 EndSplineSet EndChar StartChar: threesuperior Encoding: 179 179 115 Width: 351 Flags: W Fore 134 471 m 1 134 533 l 1 145 533 l 2 194.333 533 219.333 552.333 220 591 c 0 220 619.667 207.333 637 182 643 c 1 167 645 l 1 141.667 645 125 635.667 117 617 c 0 112.333 607.667 110 592.333 110 571 c 1 22 571 l 1 24 614.333 33.3333 647 50 669 c 1 76.6667 701.667 116.667 718 170 718 c 0 233.333 718 277 697.667 301 657 c 0 310.333 641 315 622.333 315 601 c 0 315 563 297.667 533.333 263 512 c 1 306.333 491.333 328.333 457 329 409 c 0 329 352.333 304.333 312.333 255 289 c 0 231 277 202.667 271 170 271 c 0 92 271 43 300.667 23 360 c 0 17.6667 376 15 394 15 414 c 1 107 414 l 1 109.667 371.333 131.333 349.333 172 348 c 0 200.667 348 220 360.333 230 385 c 0 232.667 391.667 234 399.333 234 408 c 0 234 448.667 206 469.667 150 471 c 2 134 471 l 1 EndSplineSet EndChar StartChar: acute Encoding: 180 180 116 Width: 333 Flags: W Fore 317 757 m 1 191 607 l 1 121 607 l 1 191 757 l 1 317 757 l 1 EndSplineSet EndChar StartChar: mu Encoding: 181 181 117 Width: 611 Flags: W Fore 192 -220 m 1 58 -220 l 1 58 540 l 1 198 540 l 1 198 206 l 2 198 172 204 146.333 216 129 c 0 230.667 107 252.667 96 282 96 c 0 322.667 96 352 113 370 147 c 0 378.667 163 383 181.333 383 202 c 2 383 540 l 1 523 540 l 1 523 150 l 2 523 108.667 528.333 85.3333 539 80 c 2 540 79 l 1 553 77 l 1 573 81 l 1 573 -6 l 1 551 -17.3333 527.667 -23 503 -23 c 0 467 -23 439.667 -11.3333 421 12 c 0 417 17.3333 412.667 23.6667 408 31 c 1 375.333 -2.33333 341.333 -20.3333 306 -23 c 0 301 -23 301 -23 292 -23 c 0 251.333 -23 218 -10.3333 192 15 c 1 192 -220 l 1 EndSplineSet EndChar StartChar: paragraph Encoding: 182 182 118 Width: 556 Flags: W Fore 529 729 m 1 529 657 l 1 486 657 l 1 486 -191 l 1 388 -191 l 1 388 657 l 1 325 657 l 1 325 -191 l 1 227 -191 l 1 227 267 l 1 154.333 270.333 98.3333 300.667 59 358 c 0 32.3333 396.667 19 442.333 19 495 c 0 19 553 36 604.667 70 650 c 0 108.667 702.667 160.667 729 226 729 c 2 529 729 l 1 EndSplineSet EndChar StartChar: periodcentered Encoding: 183 183 119 Width: 278 Flags: W Fore 64 292 m 1 188 292 l 1 188 169 l 1 64 169 l 1 64 292 l 1 EndSplineSet EndChar StartChar: cedilla Encoding: 184 184 120 Width: 333 Flags: W Fore 162 0 m 1 205 0 l 1 176 -63 l 1 190 -58.3333 204 -56 218 -56 c 0 258 -56 282.333 -72 291 -104 c 0 293 -110.667 294 -118.333 294 -127 c 0 294 -177.667 264 -207.667 204 -217 c 0 192 -219 179 -220 165 -220 c 0 128.333 -220 83.6667 -211 31 -193 c 2 27 -192 l 1 46 -140 l 1 92 -160 127 -170 151 -170 c 0 177.667 -170 195.333 -161.333 204 -144 c 0 206 -140 207.333 -135 208 -129 c 0 208 -111 196.667 -100 174 -96 c 2 173 -95 l 2 167.667 -94.3333 162.333 -94 157 -94 c 0 141 -94 124.667 -98 108 -106 c 1 162 0 l 1 EndSplineSet EndChar StartChar: onesuperior Encoding: 185 185 121 Width: 351 Flags: W Fore 147 573 m 1 40 573 l 1 40 634 l 1 118 634 164 659 178 709 c 1 242 709 l 1 242 284 l 1 147 284 l 1 147 573 l 1 EndSplineSet EndChar StartChar: ordmasculine Encoding: 186 186 122 Width: 365 Flags: W Fore 334 340 m 1 334 262 l 1 33 262 l 1 33 340 l 1 334 340 l 1 183 729 m 0 257.667 729 306.667 697.667 330 635 c 0 338.667 612.333 343 585.667 343 555 c 0 343 483.667 317.333 434 266 406 c 0 242 392.667 214.333 386 183 386 c 0 114.333 386 67 413.333 41 468 c 0 29 493.333 23 523 23 557 c 0 23 632.333 49.6667 683.667 103 711 c 0 125.667 723 152.333 729 183 729 c 0 183 661 m 0 151 661 128.333 643.667 115 609 c 0 109.667 594.333 107 577.333 107 558 c 0 107 510.667 121.667 478.667 151 462 c 0 161 456.667 171.667 454 183 454 c 0 215 454 237.333 471.333 250 506 c 0 256 520.667 259 537.333 259 556 c 0 259 606 243.667 638.667 213 654 c 0 205.667 658 195.667 660.333 183 661 c 0 EndSplineSet EndChar StartChar: guillemotright Encoding: 187 187 123 Width: 556 Flags: W Fore 255 335 m 1 255 220 l 1 88 72 l 1 88 189 l 1 189 278 l 1 88 367 l 1 88 481 l 1 255 335 l 1 462 335 m 1 462 220 l 1 295 72 l 1 295 189 l 1 396 278 l 1 295 367 l 1 295 481 l 1 462 335 l 1 EndSplineSet KernsSLIF: 89 -111 0 0 87 -60 0 0 86 -78 0 0 84 -108 0 0 EndChar StartChar: onequarter Encoding: 188 188 124 Width: 869 Flags: W Fore 147 573 m 1 40 573 l 1 40 634 l 1 118 634 164 659 178 709 c 1 242 709 l 1 242 284 l 1 147 284 l 1 147 573 l 1 593 715 m 1 680 715 l 1 257 -20 l 1 170 -20 l 1 593 715 l 1 850 168 m 1 850 93 l 1 804 93 l 1 804 0 l 1 709 0 l 1 709 93 l 1 530 93 l 1 530 167 l 1 695 425 l 1 804 425 l 1 804 168 l 1 850 168 l 1 709 168 m 1 709 332 l 1 603 168 l 1 709 168 l 1 EndSplineSet EndChar StartChar: onehalf Encoding: 189 189 125 Width: 869 Flags: W Fore 147 573 m 1 40 573 l 1 40 634 l 1 118 634 164 659 178 709 c 1 242 709 l 1 242 284 l 1 147 284 l 1 147 573 l 1 587 715 m 1 674 715 l 1 251 -20 l 1 164 -20 l 1 587 715 l 1 844 81 m 1 844 0 l 1 534 0 l 1 536 52 550.333 92 577 120 c 0 591 135.333 611.333 151.667 638 169 c 0 696 207.667 730.333 235.333 741 252 c 0 747.667 263.333 751 278 751 296 c 0 751 332 735.667 353 705 359 c 1 690 360 l 2 656 360 636.333 341.667 631 305 c 1 631 304 l 1 630 289 l 1 632 273 l 1 540 273 l 1 539 291 l 1 539 365 572.333 410.667 639 428 c 0 655.667 432 674.333 434 695 434 c 0 775.667 434 824 404 840 344 c 0 844 330.667 846 316 846 300 c 0 846 262.667 833.333 231 808 205 c 0 794 191 772.667 174 744 154 c 2 685 111 l 2 679 107 669.667 97 657 81 c 1 844 81 l 1 EndSplineSet EndChar StartChar: threequarters Encoding: 190 190 126 Width: 869 Flags: W Fore 134 471 m 1 134 533 l 1 145 533 l 2 194.333 533 219.333 552.333 220 591 c 0 220 619.667 207.333 637 182 643 c 1 167 645 l 1 141.667 645 125 635.667 117 617 c 0 112.333 607.667 110 592.333 110 571 c 1 22 571 l 1 24 614.333 33.3333 647 50 669 c 1 76.6667 701.667 116.667 718 170 718 c 0 233.333 718 277 697.667 301 657 c 0 310.333 641 315 622.333 315 601 c 0 315 563 297.667 533.333 263 512 c 1 306.333 491.333 328.333 457 329 409 c 0 329 352.333 304.333 312.333 255 289 c 0 231 277 202.667 271 170 271 c 0 92 271 43 300.667 23 360 c 0 17.6667 376 15 394 15 414 c 1 107 414 l 1 109.667 371.333 131.333 349.333 172 348 c 0 200.667 348 220 360.333 230 385 c 0 232.667 391.667 234 399.333 234 408 c 0 234 448.667 206 469.667 150 471 c 2 134 471 l 1 625 715 m 1 712 715 l 1 289 -20 l 1 202 -20 l 1 625 715 l 1 850 168 m 1 850 93 l 1 804 93 l 1 804 0 l 1 709 0 l 1 709 93 l 1 530 93 l 1 530 167 l 1 695 425 l 1 804 425 l 1 804 168 l 1 850 168 l 1 709 168 m 1 709 332 l 1 603 168 l 1 709 168 l 1 EndSplineSet EndChar StartChar: questiondown Encoding: 191 191 127 Width: 611 Flags: W Fore 239 339 m 1 363 339 l 1 365 285 352.667 240.333 326 205 c 0 311.333 185.667 290.333 164.333 263 141 c 0 225.667 110.333 203.667 85.6667 197 67 c 0 193.667 57 192 44.3333 192 29 c 0 192 -15 208.333 -47.6667 241 -69 c 0 257.667 -80.3333 276.333 -86 297 -86 c 0 338.333 -86 369.667 -66.3333 391 -27 c 0 403.667 -2.33333 409.333 25.6667 408 57 c 1 408 59 l 1 544 59 l 1 543.333 -13 529.333 -68.3333 502 -107 c 0 500.667 -109.667 499 -112.333 497 -115 c 0 453.667 -174.333 388.333 -204 301 -204 c 0 213.667 -204 146.667 -175.333 100 -118 c 0 67.3333 -78.6667 51 -30.6667 51 26 c 0 51 78 65.6667 120.667 95 154 c 0 111.667 174 137.333 196 172 220 c 0 204 242.667 223.333 261 230 275 c 0 233.333 281.667 235.667 289 237 297 c 1 239 339 l 1 223 394 m 1 223 540 l 1 373 540 l 1 373 394 l 1 223 394 l 1 EndSplineSet EndChar StartChar: Agrave Encoding: 192 192 128 Width: 722 Flags: W Ref: 65 65 N 1 0 0 1 0 0 Ref: 96 96 N 1 0 0 1 204 179 KernsSLIF: 89 -90 0 0 86 -66 0 0 84 -81 0 0 EndChar StartChar: Aacute Encoding: 193 193 129 Width: 722 Flags: W Ref: 65 65 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 193 178 KernsSLIF: 8217 -61 0 0 89 -90 0 0 86 -66 0 0 84 -81 0 0 EndChar StartChar: Acircumflex Encoding: 194 194 130 Width: 722 Flags: W Ref: 65 65 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 196 179 KernsSLIF: 89 -90 0 0 86 -66 0 0 84 -81 0 0 EndChar StartChar: Atilde Encoding: 195 195 131 Width: 722 Flags: W Ref: 65 65 N 1 0 0 1 0 0 Ref: 732 732 N 1 0 0 1 201 179 KernsSLIF: 89 -90 0 0 86 -66 0 0 84 -81 0 0 EndChar StartChar: Adieresis Encoding: 196 196 132 Width: 722 Flags: W Ref: 65 65 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 198 179 KernsSLIF: 8221 -65 0 0 8217 -61 0 0 89 -90 0 0 86 -66 0 0 84 -81 0 0 EndChar StartChar: Aring Encoding: 197 197 133 Width: 722 Flags: W Ref: 65 65 N 1 0 0 1 0 0 Ref: 730 730 N 1 0 0 1 196 179 KernsSLIF: 8221 -65 0 0 8217 -61 0 0 89 -90 0 0 86 -66 0 0 84 -81 0 0 EndChar StartChar: AE Encoding: 198 198 134 Width: 1000 Flags: W Fore 430 152 m 1 207 152 l 1 154 0 l 1 1 0 l 1 264 729 l 1 946 729 l 1 946 604 l 1 580 604 l 1 580 439 l 1 919 439 l 1 919 314 l 1 580 314 l 1 580 125 l 1 966 125 l 1 966 0 l 1 430 0 l 1 430 152 l 1 430 277 m 1 430 604 l 1 363 604 l 1 249 277 l 1 430 277 l 1 EndSplineSet EndChar StartChar: Ccedilla Encoding: 199 199 135 Width: 722 Flags: W Fore 379 -23 m 1 360 -63 l 1 373.333 -58.3333 387.333 -56 402 -56 c 0 442 -56 466.333 -72 475 -104 c 0 477 -110.667 478 -118.333 478 -127 c 0 478 -177.667 448 -207.667 388 -217 c 0 376 -219 363 -220 349 -220 c 0 312.333 -220 267.667 -211 215 -193 c 2 211 -192 l 1 230 -140 l 1 276 -160 311 -170 335 -170 c 0 361.667 -170 379.333 -161.333 388 -144 c 0 390 -140 391.333 -135 392 -129 c 0 392 -112.333 381.667 -101.333 361 -96 c 2 360 -96 l 1 360 -96 l 1 359 -96 l 1 341 -94 l 1 325 -94 308.667 -98 292 -106 c 1 335 -23 l 1 268.333 -11.6667 218.667 6 186 30 c 1 155 56 l 1 81 126.667 44 227.333 44 358 c 0 44 496.667 84 600 164 668 c 0 221.333 716.667 292.667 741 378 741 c 0 485.333 741 568 705.667 626 635 c 2 633 626 l 2 661 589.333 677.333 541.333 682 482 c 1 539 482 l 1 531 516.667 520 542.667 506 560 c 0 478 595.333 437 613 383 613 c 0 306.333 613 252 576 220 502 c 0 207.333 472 199.333 437 196 397 c 1 194 356 l 1 194 242 225.333 165.667 288 127 c 0 314 111 344 103 378 103 c 0 452 103 501.333 133 526 193 c 0 532.667 209.667 537 228.333 539 249 c 1 685 249 l 1 680.333 147 638 72 558 24 c 0 508.667 -6 449 -21.6667 379 -23 c 1 EndSplineSet EndChar StartChar: Egrave Encoding: 200 200 136 Width: 667 Flags: W Ref: 69 69 N 1 0 0 1 0 0 Ref: 96 96 N 1 0 0 1 190 179 EndChar StartChar: Eacute Encoding: 201 201 137 Width: 667 Flags: W Ref: 69 69 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 163 179 EndChar StartChar: Ecircumflex Encoding: 202 202 138 Width: 667 Flags: W Ref: 69 69 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 178 179 EndChar StartChar: Edieresis Encoding: 203 203 139 Width: 667 Flags: W Ref: 69 69 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 178 179 EndChar StartChar: Igrave Encoding: 204 204 140 Width: 278 Flags: W Ref: 73 73 N 1 0 0 1 0 0 Ref: 96 96 N 1 0 0 1 -27 179 EndChar StartChar: Iacute Encoding: 205 205 141 Width: 278 Flags: W Ref: 73 73 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 -27 179 EndChar StartChar: Icircumflex Encoding: 206 206 142 Width: 278 Flags: W Ref: 73 73 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 -27 179 EndChar StartChar: Idieresis Encoding: 207 207 143 Width: 278 Flags: W Ref: 73 73 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 -27 179 EndChar StartChar: Eth Encoding: 208 208 144 Width: 722 Flags: W Fore 77 339 m 1 0 339 l 1 0 419 l 1 77 419 l 1 77 729 l 1 362 729 l 2 457.333 729 527.333 708.333 572 667 c 2 585 654 l 1 593 645 l 2 644.333 580.333 673.333 498.333 680 399 c 1 681 365 l 1 681 262.333 656 175 606 103 c 0 602 96.3333 597.667 90.3333 593 85 c 0 553 35 490.667 7 406 1 c 0 392 0.333333 377.333 -2.71051e-20 362 0 c 2 77 0 l 1 77 339 l 1 227 339 m 1 227 125 l 1 362 125 l 2 422 125 464.333 142 489 176 c 0 489 176.667 489.667 177.667 491 179 c 0 521.667 222.333 537 284 537 364 c 0 537 444.667 521.667 506.667 491 550 c 0 467 584.667 424 602.667 362 604 c 1 227 604 l 1 227 419 l 1 377 419 l 1 377 339 l 1 227 339 l 1 EndSplineSet EndChar StartChar: Ntilde Encoding: 209 209 145 Width: 722 Flags: W Ref: 78 78 N 1 0 0 1 0 0 Ref: 732 732 N 1 0 0 1 202 179 EndChar StartChar: Ograve Encoding: 210 210 146 Width: 778 Flags: W Ref: 79 79 N 1 0 0 1 0 0 Ref: 96 96 N 1 0 0 1 237 179 KernsSLIF: 89 -59 0 0 EndChar StartChar: Oacute Encoding: 211 211 147 Width: 778 Flags: W Ref: 79 79 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 213 179 KernsSLIF: 89 -59 0 0 EndChar StartChar: Ocircumflex Encoding: 212 212 148 Width: 778 Flags: W Ref: 79 79 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 224 179 KernsSLIF: 89 -59 0 0 EndChar StartChar: Otilde Encoding: 213 213 149 Width: 778 Flags: W Ref: 79 79 N 1 0 0 1 0 0 Ref: 732 732 N 1 0 0 1 230 179 KernsSLIF: 89 -59 0 0 EndChar StartChar: Odieresis Encoding: 214 214 150 Width: 778 Flags: W Ref: 79 79 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 225 179 KernsSLIF: 89 -59 0 0 EndChar StartChar: multiply Encoding: 215 215 151 Width: 584 Flags: W Fore 421 444 m 1 505 360 l 1 376 231 l 1 504 102 l 1 420 18 l 1 292 147 l 1 164 19 l 1 80 103 l 1 208 231 l 1 79 359 l 1 163 444 l 1 292 315 l 1 421 444 l 1 EndSplineSet EndChar StartChar: Oslash Encoding: 216 216 152 Width: 778 Flags: W Fore 165 52 m 1 82 -39 l 1 31 7 l 1 117 102 l 1 62.3333 175.333 35 261 35 359 c 0 35 461.667 63.3333 548.333 120 619 c 0 129 630 129 630 138 640 c 0 200.667 707.333 284 741 388 741 c 0 475.333 741 549.333 715.667 610 665 c 0 620 657 l 1 703 749 l 1 755 704 l 1 666 605 l 1 710.667 543.667 735 468.333 739 379 c 0 739.667 372.333 740 365 740 357 c 0 740 260.333 713.667 177 661 107 c 0 653.667 96.3333 645.667 86.6667 637 78 c 0 574.333 10.6667 491.333 -23 388 -23 c 0 297.333 -23 223 2 165 52 c 1 567 497 m 1 256 153 l 1 289.333 121 333.333 105 388 105 c 0 460.667 105 515.333 137 552 201 c 0 577.333 243.667 590 297 590 361 c 0 590 411 582.333 456.333 567 497 c 1 214 209 m 1 528 555 l 1 491.333 593.667 444.667 613 388 613 c 0 313.333 613 258 580.333 222 515 c 1 221.333 515 221 514.667 221 514 c 0 197 471.333 185 418.667 185 356 c 0 185 300.667 194.667 251.667 214 209 c 1 EndSplineSet EndChar StartChar: Ugrave Encoding: 217 217 153 Width: 722 Flags: W Ref: 85 85 N 1 0 0 1 0 0 Ref: 96 96 N 1 0 0 1 211 179 EndChar StartChar: Uacute Encoding: 218 218 154 Width: 722 Flags: W Ref: 85 85 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 187 179 EndChar StartChar: Ucircumflex Encoding: 219 219 155 Width: 722 Flags: W Ref: 85 85 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 198 179 EndChar StartChar: Udieresis Encoding: 220 220 156 Width: 722 Flags: W Ref: 85 85 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 199 179 EndChar StartChar: Yacute Encoding: 221 221 157 Width: 667 Flags: W Ref: 89 89 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 162 179 EndChar StartChar: Thorn Encoding: 222 222 158 Width: 667 Flags: W Fore 226 140 m 1 226 0 l 1 76 0 l 1 76 729 l 1 226 729 l 1 226 609 l 1 398 609 l 2 474 609 531.667 590.333 571 553 c 0 612.333 513 633 456 633 382 c 0 633 286.667 602 218 540 176 c 0 504.667 152 462.333 140 413 140 c 2 226 140 l 1 226 265 m 1 366 265 l 2 438.667 265 477.333 296.333 482 359 c 1 483 374 l 1 483 440.667 451 477 387 483 c 2 366 484 l 1 226 484 l 1 226 265 l 1 EndSplineSet EndChar StartChar: germandbls Encoding: 223 223 159 Width: 611 Flags: W Fore 285 349 m 1 285 444 l 1 294 444 l 2 341.333 444.667 372 462.667 386 498 c 1 386 499 l 1 386 500 l 1 388.667 506 390.333 512.333 391 519 c 0 391.667 523 392 527.667 392 533 c 0 392 575 371.333 601.333 330 612 c 0 318.667 614.667 306.667 616 294 616 c 0 246 616 217.667 596.667 209 558 c 1 209 557 l 1 209 557 l 1 207.667 551 207 544.333 207 537 c 2 207 0 l 1 67 0 l 1 67 518 l 2 67 592.667 87.3333 646.333 128 679 c 0 167.333 710.333 225.667 727 303 729 c 1 386.333 729 449.333 704.667 492 656 c 0 518.667 625.333 532 589 532 547 c 0 532 479 503 433.667 445 411 c 1 475.667 405 502 391.667 524 371 c 0 556 339.667 573 298.333 575 247 c 0 575 242 575 242 575 236 c 0 575 142.667 546.333 73 489 27 c 0 453 -2.33333 409 -17 357 -17 c 0 341.667 -17 317.667 -15 285 -11 c 1 285 101 l 1 298 102 l 1 318 103 l 2 364.667 103.667 398.333 123 419 161 c 0 429.667 180.333 435 202 435 226 c 0 435 281.333 410.667 318.667 362 338 c 0 346 344.667 324.667 348.333 298 349 c 2 285 349 l 1 EndSplineSet EndChar StartChar: agrave Encoding: 224 224 160 Width: 556 Flags: W Ref: 97 97 N 1 0 0 1 0 0 Ref: 96 96 N 1 0 0 1 115 0 EndChar StartChar: aacute Encoding: 225 225 161 Width: 556 Flags: W Ref: 97 97 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 94 0 EndChar StartChar: acircumflex Encoding: 226 226 162 Width: 556 Flags: W Ref: 97 97 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 105 0 EndChar StartChar: atilde Encoding: 227 227 163 Width: 556 Flags: W Ref: 97 97 N 1 0 0 1 0 0 Ref: 732 732 N 1 0 0 1 104 0 EndChar StartChar: adieresis Encoding: 228 228 164 Width: 556 Flags: W Ref: 97 97 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 106 0 EndChar StartChar: aring Encoding: 229 229 165 Width: 556 Flags: W Ref: 97 97 N 1 0 0 1 0 0 Ref: 730 730 N 1 0 0 1 105 0 EndChar StartChar: ae Encoding: 230 230 166 Width: 889 Flags: W Fore 712 152 m 1 850 152 l 1 830 83.3333 787 33.6667 721 3 c 0 684.333 -14.3333 644 -23 600 -23 c 0 509.333 -23 442.667 11.6667 400 81 c 1 344.667 16.3333 283 -18.3333 215 -23 c 0 208.333 -23.6667 201.667 -24 195 -24 c 0 125 -24 76 1.66667 48 53 c 0 34 77.6667 27 107 27 141 c 0 27 231.667 74 287.333 168 308 c 2 186 312 l 1 242 322 l 2 287.333 329.333 315 335.333 325 340 c 2 330 343 l 2 345.333 351 353.333 364.333 354 383 c 0 354 418.333 325.667 436 269 436 c 0 223.667 436 195 423 183 397 c 0 179 387.667 176 376 174 362 c 1 43 362 l 1 45 486.667 121 549 271 549 c 0 349 549 407.333 532.333 446 499 c 1 487.333 532.333 539 549 601 549 c 0 690.333 549 758.333 516 805 450 c 1 806 450 l 1 818 432.667 828 413.333 836 392 c 0 850 352.667 857 305.333 857 250 c 1 856 226 l 1 494 226 l 1 494 184.667 500.667 153.667 514 133 c 0 535.333 100.333 566.667 84 608 84 c 0 646 84 675.667 97.6667 697 125 c 0 704.333 133.667 709.333 142.667 712 152 c 1 354 216 m 1 354 254 l 1 339.333 245.333 319.667 239 295 235 c 2 247 228 l 2 194.333 221.333 167.667 197 167 155 c 0 167 121 183.667 100 217 92 c 0 223.667 90 232.333 89 243 89 c 0 306.333 89 342.667 121 352 185 c 1 354 216 l 1 495 319 m 1 711 319 l 1 703.667 401 667.333 442 602 442 c 0 536.667 442 501 401 495 319 c 1 EndSplineSet EndChar StartChar: ccedilla Encoding: 231 231 167 Width: 556 Flags: W Fore 291 -23 m 1 274 -63 l 1 286 -58.3333 299.667 -56 315 -56 c 0 355.667 -56 380.333 -72.3333 389 -105 c 1 392 -127 l 1 392 -177.667 362 -207.667 302 -217 c 0 290 -219 277 -220 263 -220 c 0 224.333 -220 178.333 -210.667 125 -192 c 1 144 -140 l 1 188.667 -160 223.333 -170 248 -170 c 0 274.667 -170 292.667 -161.333 302 -144 c 1 306 -129 l 1 306 -112.333 295.667 -101.333 275 -96 c 2 274 -96 l 1 274 -96 l 1 273 -96 l 1 255 -94 l 1 238.333 -94 221.667 -98 205 -106 c 1 248 -21 l 1 144 -7.66667 77.6667 48 49 146 c 0 39 179.333 34 217 34 259 c 0 34 383.667 73.6667 469.333 153 516 c 0 191 538 236.333 549 289 549 c 0 381 549 447.333 516.333 488 451 c 1 500.667 429 510 404.667 516 378 c 1 522 338 l 1 388 338 l 1 376.667 389.333 356.333 420 327 430 c 2 326 430 l 2 315.333 434 302.667 436 288 436 c 0 246.667 436 217.667 420.667 201 390 c 0 183 356.667 174 313.333 174 260 c 0 174 199.333 186.667 153.667 212 123 c 0 229.333 101.667 255 90.6667 289 90 c 0 331 90 360.333 111 377 153 c 1 388 187 l 1 522 187 l 1 515.333 112.333 483.333 55.6667 426 17 c 1 387.333 -10.3333 342.333 -23.6667 291 -23 c 1 EndSplineSet EndChar StartChar: egrave Encoding: 232 232 168 Width: 556 Flags: W Ref: 101 101 N 1 0 0 1 0 0 Ref: 96 96 N 1 0 0 1 115 0 EndChar StartChar: eacute Encoding: 233 233 169 Width: 556 Flags: W Ref: 101 101 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 102 0 EndChar StartChar: ecircumflex Encoding: 234 234 170 Width: 556 Flags: W Ref: 101 101 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 113 0 EndChar StartChar: edieresis Encoding: 235 235 171 Width: 556 Flags: W Ref: 101 101 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 114 0 EndChar StartChar: igrave Encoding: 236 236 172 Width: 278 Flags: W Ref: 305 305 N 1 0 0 1 0 0 Ref: 96 96 N 1 0 0 1 -27 0 EndChar StartChar: iacute Encoding: 237 237 173 Width: 278 Flags: W Ref: 305 305 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 -27 0 EndChar StartChar: icircumflex Encoding: 238 238 174 Width: 278 Flags: W Ref: 305 305 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 -27 0 EndChar StartChar: idieresis Encoding: 239 239 175 Width: 278 Flags: W Ref: 305 305 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 -27 0 EndChar StartChar: eth Encoding: 240 240 176 Width: 611 Flags: W Fore 432 710 m 1 348 660 l 1 473.333 575.333 545.333 470.333 564 345 c 0 567.333 321 569 295.667 569 269 c 0 569 148.333 530 63.6667 452 15 c 0 410.667 -10.3333 360.667 -23 302 -23 c 0 196.667 -23 121 16.3333 75 95 c 0 48.3333 141 35 197.667 35 265 c 0 35 374.333 72.6667 451.667 148 497 c 0 188 521.667 230 534 274 534 c 0 298 534 326.333 527.667 359 515 c 1 332.333 557.667 300.667 589.667 264 611 c 1 187 565 l 1 145 602 l 1 215 646 l 1 189.667 661.333 159.667 677.333 125 694 c 1 192 741 l 1 215.333 732.333 244.333 718.333 279 699 c 1 294 692 l 1 381 744 l 1 432 710 l 1 302 429 m 0 252 429 216 404 194 354 c 0 182 327.333 176 296 176 260 c 0 176 187.333 197 137 239 109 c 0 257.667 96.3333 278.667 90 302 90 c 0 351.333 90 387.333 114.667 410 164 c 0 422 190 428 221 428 257 c 0 428 331.667 406.667 383 364 411 c 0 346 423 325.333 429 302 429 c 0 EndSplineSet EndChar StartChar: ntilde Encoding: 241 241 177 Width: 611 Flags: W Ref: 110 110 N 1 0 0 1 0 0 Ref: 732 732 N 1 0 0 1 133 0 EndChar StartChar: ograve Encoding: 242 242 178 Width: 611 Flags: W Ref: 111 111 N 1 0 0 1 0 0 Ref: 96 96 N 1 0 0 1 148 0 EndChar StartChar: oacute Encoding: 243 243 179 Width: 611 Flags: W Ref: 111 111 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 124 0 EndChar StartChar: ocircumflex Encoding: 244 244 180 Width: 611 Flags: W Ref: 111 111 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 135 0 EndChar StartChar: otilde Encoding: 245 245 181 Width: 611 Flags: W Ref: 111 111 N 1 0 0 1 0 0 Ref: 732 732 N 1 0 0 1 137 0 EndChar StartChar: odieresis Encoding: 246 246 182 Width: 611 Flags: W Ref: 111 111 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 136 0 EndChar StartChar: divide Encoding: 247 247 183 Width: 584 Flags: W Fore 534 291 m 1 534 172 l 1 50 172 l 1 50 291 l 1 534 291 l 1 230 474 m 1 354 474 l 1 354 351 l 1 230 351 l 1 230 474 l 1 230 112 m 1 354 112 l 1 354 -11 l 1 230 -11 l 1 230 112 l 1 EndSplineSet EndChar StartChar: oslash Encoding: 248 248 184 Width: 611 Flags: W Fore 126 35 m 1 54 -38 l 1 11 2 l 1 86 79 l 1 52.6667 127 36 188.333 36 263 c 0 36 375.667 73 456.667 147 506 c 0 190.333 534.667 243 549 305 549 c 0 376.333 549 437 528.333 487 487 c 1 555 557 l 1 598 516 l 1 526 443 l 1 557.333 394.333 573 334.333 573 263 c 0 573 152.333 537 72 465 22 c 0 421.667 -8 368.667 -23 306 -23 c 0 236 -23 179 -6.33333 135 27 c 1 126 35 l 1 421 336 m 1 220 132 l 1 244 104 272.667 90 306 90 c 0 351.333 90 386 113 410 159 c 0 425.333 187.667 433 221.333 433 260 c 0 433 286.667 429 312 421 336 c 1 190 184 m 1 392 390 l 1 366 421.333 336.333 437 303 437 c 0 256.333 437 221.333 413.333 198 366 c 0 183.333 338 176 304.667 176 266 c 0 176 235.333 180.667 208 190 184 c 1 EndSplineSet EndChar StartChar: ugrave Encoding: 249 249 185 Width: 611 Flags: W Ref: 117 117 N 1 0 0 1 0 0 Ref: 96 96 N 1 0 0 1 146 0 EndChar StartChar: uacute Encoding: 250 250 186 Width: 611 Flags: W Ref: 117 117 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 121 0 EndChar StartChar: ucircumflex Encoding: 251 251 187 Width: 611 Flags: W Ref: 117 117 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 132 0 EndChar StartChar: udieresis Encoding: 252 252 188 Width: 611 Flags: W Ref: 117 117 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 132 0 EndChar StartChar: yacute Encoding: 253 253 189 Width: 556 Flags: W Ref: 121 121 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 94 0 EndChar StartChar: thorn Encoding: 254 254 190 Width: 611 Flags: W Fore 198 729 m 1 198 460 l 1 231.333 519.333 281.333 549 348 549 c 0 417.333 549 474 518.333 518 457 c 0 555.333 404.333 574 339.333 574 262 c 0 574 169.333 547.333 95.6667 494 41 c 0 453.333 -1.66667 404.667 -23 348 -23 c 0 281.333 -23 231.333 6 198 64 c 1 198 -218 l 1 58 -218 l 1 58 729 l 1 198 729 l 1 316 432 m 0 271.333 432 238.333 408 217 360 c 0 204.333 332.667 198 300 198 262 c 0 198 192.667 217.333 143.333 256 114 c 0 274 100.667 294 94 316 94 c 0 359.333 94 392 116.667 414 162 c 0 427.333 189.333 434 222 434 260 c 0 434 332.667 414.333 383.667 375 413 c 0 358.333 425.667 338.667 432 316 432 c 0 EndSplineSet EndChar StartChar: ydieresis Encoding: 255 255 191 Width: 556 Flags: W Ref: 121 121 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 107 0 EndChar StartChar: Amacron Encoding: 256 256 192 Width: 722 Flags: W Ref: 65 65 N 1 0 0 1 0 0 Ref: 175 175 N 1 0 0 1 199 179 EndChar StartChar: amacron Encoding: 257 257 193 Width: 556 Flags: W Ref: 97 97 N 1 0 0 1 0 0 Ref: 175 175 N 1 0 0 1 106 0 EndChar StartChar: Abreve Encoding: 258 258 194 Width: 722 Flags: W Ref: 65 65 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 193 179 EndChar StartChar: abreve Encoding: 259 259 195 Width: 556 Flags: W Ref: 97 97 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 108 0 EndChar StartChar: Aogonek Encoding: 260 260 196 Width: 722 Flags: W Fore 501 147 m 1 228 147 l 1 179 0 l 1 26 0 l 1 285 729 l 1 452 729 l 1 703 0 l 1 647.667 -24 612 -56 596 -96 c 0 592 -106.667 590 -117.667 590 -129 c 0 590 -164.333 615.333 -182 666 -182 c 0 684 -182 703 -180.333 723 -177 c 1 723 -224 l 1 699 -230 674 -233 648 -233 c 0 568.667 -233 521 -211 505 -167 c 0 501.667 -158.333 500 -148.667 500 -138 c 0 500 -88 528.667 -47.6667 586 -17 c 2 587 -16 l 1 624 0 l 1 549 0 l 1 501 147 l 1 461 272 m 1 366 557 l 1 270 272 l 1 461 272 l 1 EndSplineSet EndChar StartChar: aogonek Encoding: 261 261 197 Width: 556 Flags: W Fore 524 17 m 1 524 0 l 1 452 -38.6667 415.667 -81.6667 415 -129 c 0 415 -164.333 440.333 -182 491 -182 c 0 507.667 -182 526.667 -180.333 548 -177 c 1 548 -224 l 1 524 -230 499 -233 473 -233 c 0 396.333 -233 349 -212.333 331 -171 c 0 327 -161.667 325 -151 325 -139 c 0 325 -91.6667 350.667 -52.6667 402 -22 c 0 414 -14.6667 427 -8.33333 441 -3 c 0 443.667 -1.66667 446.333 -0.666667 449 0 c 1 372 0 l 1 361.333 12.6667 356 30.6667 356 54 c 1 306.667 2.66667 252 -23 192 -23 c 0 140.667 -23 98.6667 -6 66 28 c 0 40.6667 55.3333 28 92.3333 28 139 c 0 28 234.333 81 291 187 309 c 2 243 319 l 2 288.333 326.333 316 332.333 326 337 c 2 331 340 l 2 346.333 348 354.333 362 355 382 c 0 355 418 328 436 274 436 c 0 228.667 436 199.667 425.333 187 404 c 1 187 403 l 1 181 393 177 379.333 175 362 c 1 40 362 l 1 48.6667 485.333 125.667 547.667 271 549 c 1 417.667 549 491.333 493.667 492 383 c 1 492 83 l 2 492 60.3333 500.667 40.3333 518 23 c 2 524 17 l 1 355 217 m 2 355 255 l 1 342.333 249 322.667 243.333 296 238 c 2 248 229 l 2 204 219.667 178.333 203 171 179 c 1 171 178 l 1 169 172 168 164.333 168 155 c 0 168 122.333 184.333 101.667 217 93 c 0 225 91 234 90 244 90 c 0 302 90 337.333 117.667 350 173 c 0 353.333 186.333 355 201 355 217 c 2 EndSplineSet EndChar StartChar: Cacute Encoding: 262 262 198 Width: 722 Flags: W Ref: 67 67 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 193 179 EndChar StartChar: cacute Encoding: 263 263 199 Width: 556 Flags: W Ref: 99 99 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 111 0 EndChar StartChar: Ccircumflex Encoding: 264 264 200 Width: 722 Flags: W Ref: 67 67 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 271 222 EndChar StartChar: ccircumflex Encoding: 265 265 201 Width: 556 Flags: W Ref: 99 99 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 127 33 EndChar StartChar: Cdotaccent Encoding: 266 266 202 Width: 722 Flags: W Ref: 67 67 N 1 0 0 1 0 0 Ref: 729 729 N 1 0 0 1 271 208 EndChar StartChar: cdotaccent Encoding: 267 267 203 Width: 556 Flags: W Ref: 99 99 N 1 0 0 1 0 0 Ref: 729 729 N 1 0 0 1 127 19 EndChar StartChar: Ccaron Encoding: 268 268 204 Width: 722 Flags: W Ref: 67 67 N 1 0 0 1 0 0 Ref: 711 711 N 1 0 0 1 208 179 EndChar StartChar: ccaron Encoding: 269 269 205 Width: 556 Flags: W Ref: 99 99 N 1 0 0 1 0 0 Ref: 711 711 N 1 0 0 1 122 0 EndChar StartChar: Dcaron Encoding: 270 270 206 Width: 722 Flags: W Ref: 68 68 N 1 0 0 1 0 0 Ref: 711 711 N 1 0 0 1 171 179 EndChar StartChar: dcaron Encoding: 271 271 207 Width: 611 Flags: W Ref: 100 100 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 486 789 EndChar StartChar: Dcroat Encoding: 272 272 208 Width: 722 Flags: W Fore 77 339 m 1 0 339 l 1 0 419 l 1 77 419 l 1 77 729 l 1 362 729 l 2 457.333 729 527.333 708.333 572 667 c 2 585 654 l 1 593 645 l 2 644.333 580.333 673.333 498.333 680 399 c 1 681 365 l 1 681 262.333 656 175 606 103 c 0 602 96.3333 597.667 90.3333 593 85 c 0 553 35 490.667 7 406 1 c 0 392 0.333333 377.333 -2.71051e-20 362 0 c 2 77 0 l 1 77 339 l 1 227 339 m 1 227 125 l 1 362 125 l 2 422 125 464.333 142 489 176 c 0 489 176.667 489.667 177.667 491 179 c 0 521.667 222.333 537 284 537 364 c 0 537 444.667 521.667 506.667 491 550 c 0 467 584.667 424 602.667 362 604 c 1 227 604 l 1 227 419 l 1 377 419 l 1 377 339 l 1 227 339 l 1 EndSplineSet EndChar StartChar: dcroat Encoding: 273 273 209 Width: 611 Flags: W Fore 405 596 m 1 272 596 l 1 272 663 l 1 405 663 l 1 405 729 l 1 545 729 l 1 545 663 l 1 605 663 l 1 605 596 l 1 545 596 l 1 545 0 l 1 405 0 l 1 405 55 l 1 370.333 3 320.667 -23 256 -23 c 0 188 -23 132 7 88 67 c 0 48.6667 120.333 29 185.333 29 262 c 0 29 353.333 55.3333 427 108 483 c 0 149.333 527 198.667 549 256 549 c 0 321.333 549 371 522.667 405 470 c 1 405 596 l 1 287 432 m 0 244.333 432 211.667 409 189 363 c 0 175.667 334.333 169 300.667 169 262 c 0 169 193.333 188 144.333 226 115 c 0 244 101 264.333 94 287 94 c 0 331.667 94 364.667 117.667 386 165 c 0 398.667 191.667 405 223.333 405 260 c 0 405 332.667 385.333 383.667 346 413 c 0 329.333 425.667 309.667 432 287 432 c 0 EndSplineSet EndChar StartChar: Emacron Encoding: 274 274 210 Width: 667 Flags: W Ref: 69 69 N 1 0 0 1 0 0 Ref: 175 175 N 1 0 0 1 179 179 EndChar StartChar: emacron Encoding: 275 275 211 Width: 556 Flags: W Ref: 101 101 N 1 0 0 1 0 0 Ref: 175 175 N 1 0 0 1 115 0 EndChar StartChar: Ebreve Encoding: 276 276 212 Width: 667 Flags: W Ref: 69 69 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 175 224 EndChar StartChar: ebreve Encoding: 277 277 213 Width: 556 Flags: W Ref: 101 101 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 93 35 EndChar StartChar: Edotaccent Encoding: 278 278 214 Width: 667 Flags: W Ref: 69 69 N 1 0 0 1 0 0 Ref: 729 729 N 1 0 0 1 177 179 EndChar StartChar: edotaccent Encoding: 279 279 215 Width: 556 Flags: W Ref: 101 101 N 1 0 0 1 0 0 Ref: 729 729 N 1 0 0 1 112 0 EndChar StartChar: Eogonek Encoding: 280 280 216 Width: 667 Flags: W Fore 229 314 m 1 229 125 l 1 624 125 l 1 624 0 l 1 552 -38.6667 515.667 -81.6667 515 -129 c 0 515 -164.333 540.333 -182 591 -182 c 0 609 -182 628 -180.333 648 -177 c 1 648 -224 l 1 621.333 -230 596.667 -233 574 -233 c 0 493.333 -233 445 -210.667 429 -166 c 0 426.333 -158 425 -148.667 425 -138 c 0 425 -86.6667 462 -43 536 -7 c 2 550 0 l 1 79 0 l 1 79 729 l 1 606 729 l 1 606 604 l 1 229 604 l 1 229 439 l 1 578 439 l 1 578 314 l 1 229 314 l 1 EndSplineSet EndChar StartChar: eogonek Encoding: 281 281 217 Width: 556 Flags: W Fore 478 -177 m 1 478 -224 l 1 452 -230.667 425.667 -234 399 -234 c 0 329 -234 284 -214.333 264 -175 c 0 258 -164.333 255 -151.667 255 -137 c 0 255 -104.333 272.333 -73.3333 307 -44 c 1 307 -43 l 1 308 -43 l 1 350 -11 l 1 319.333 -19.6667 292 -24 268 -24 c 0 174.667 -24 106.333 12.3333 63 85 c 0 35 131 21 188 21 256 c 0 21 371.333 55.6667 454.333 125 505 c 0 165 534.333 213.667 549 271 549 c 0 353.667 549 418.667 519.667 466 461 c 0 482 440.333 494.667 417.333 504 392 c 0 518 352.667 525 305.333 525 250 c 1 524 226 l 1 162 226 l 1 164 180.667 170.667 148.667 182 130 c 0 202 98.6667 232.667 83 274 83 c 0 325.333 83 360.333 104.667 379 148 c 0 379 149.333 379.333 150.667 380 152 c 1 518 152 l 1 508.667 119.333 494 90.6667 474 66 c 0 465.333 55.3333 452 40.3333 434 21 c 0 384 -33.6667 355.333 -75.3333 348 -104 c 1 345 -131 l 1 345 -165.667 370.333 -183 421 -183 c 0 440.333 -183 459.333 -181 478 -177 c 1 163 319 m 1 379 319 l 1 376.333 353 368.667 379 356 397 c 0 335.333 427 306.667 442 270 442 c 0 207.333 442 171.667 401 163 319 c 1 EndSplineSet EndChar StartChar: Ecaron Encoding: 282 282 218 Width: 667 Flags: W Ref: 69 69 N 1 0 0 1 0 0 Ref: 711 711 N 1 0 0 1 176 179 EndChar StartChar: ecaron Encoding: 283 283 219 Width: 556 Flags: W Ref: 101 101 N 1 0 0 1 0 0 Ref: 711 711 N 1 0 0 1 112 0 EndChar StartChar: Gcircumflex Encoding: 284 284 220 Width: 778 Flags: W Ref: 71 71 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 214 222 EndChar StartChar: gcircumflex Encoding: 285 285 221 Width: 611 Flags: W Ref: 103 103 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 190 33 EndChar StartChar: Gbreve Encoding: 286 286 222 Width: 778 Flags: W Ref: 71 71 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 231 179 EndChar StartChar: gbreve Encoding: 287 287 223 Width: 611 Flags: W Ref: 103 103 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 139 0 EndChar StartChar: Gdotaccent Encoding: 288 288 224 Width: 778 Flags: W Ref: 71 71 N 1 0 0 1 0 0 Ref: 729 729 N 1 0 0 1 214 208 EndChar StartChar: gdotaccent Encoding: 289 289 225 Width: 611 Flags: W Ref: 103 103 N 1 0 0 1 0 0 Ref: 729 729 N 1 0 0 1 190 19 EndChar StartChar: Gcommaaccent Encoding: 290 290 226 Width: 778 Flags: W Ref: 71 71 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 220 0 EndChar StartChar: gcommaaccent Encoding: 291 291 227 Width: 611 Flags: W Ref: 103 103 N 1 0 0 1 0 0 Ref: 63171 63171 N -1 0 0 -1 477 546 EndChar StartChar: Hcircumflex Encoding: 292 292 228 Width: 722 Flags: W Ref: 72 72 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 195 222 EndChar StartChar: hcircumflex Encoding: 293 293 229 Width: 611 Flags: W Ref: 104 104 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 109 222 EndChar StartChar: Hbar Encoding: 294 294 230 Width: 722 Flags: W Fore 507 331 m 1 218 331 l 1 218 0 l 1 68 0 l 1 68 729 l 1 218 729 l 1 218 456 l 1 506 456 l 1 506 729 l 1 657 729 l 1 657 0 l 1 507 0 l 1 507 331 l 1 EndSplineSet EndChar StartChar: hbar Encoding: 295 295 231 Width: 611 Flags: W Fore 67 729 m 1 207 729 l 1 207 462 l 1 245.667 520 298.333 549 365 549 c 0 413 549 453.333 535.333 486 508 c 0 522.667 477.333 541 428.667 541 362 c 2 541 0 l 1 401 0 l 1 401 330 l 2 401 358.667 395.667 381 385 397 c 0 369 419 345.667 430 315 430 c 0 271 430 239.333 412.667 220 378 c 0 211.333 362 207 344 207 324 c 2 207 0 l 1 67 0 l 1 67 729 l 1 EndSplineSet EndChar StartChar: Itilde Encoding: 296 296 232 Width: 278 Flags: W Ref: 73 73 N 1 0 0 1 0 0 Ref: 732 732 N 1 0 0 1 -30 208 EndChar StartChar: itilde Encoding: 297 297 233 Width: 278 Flags: W Ref: 305 305 N 1 0 0 1 0 0 Ref: 732 732 N 1 0 0 1 -31 19 EndChar StartChar: Imacron Encoding: 298 298 234 Width: 278 Flags: W Ref: 73 73 N 1 0 0 1 0 0 Ref: 175 175 N 0.909668 0 0 1 -12 179 EndChar StartChar: imacron Encoding: 299 299 235 Width: 278 Flags: W Ref: 305 305 N 1 0 0 1 0 0 Ref: 175 175 N 0.866211 0 0 1 -6 0 EndChar StartChar: Ibreve Encoding: 300 300 236 Width: 278 Flags: W Ref: 73 73 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 -29 224 EndChar StartChar: ibreve Encoding: 301 301 237 Width: 278 Flags: W Ref: 305 305 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 -30 35 EndChar StartChar: Iogonek Encoding: 302 302 238 Width: 278 Flags: W Fore 213 729 m 1 213 0 l 1 154.333 -42 124.667 -85.6667 124 -131 c 0 124 -155 137 -171 163 -179 c 1 187 -182 l 1 235 -177 l 1 237 -177 l 1 237 -224 l 1 211 -230 187.667 -233 167 -233 c 0 103 -233 61.6667 -213.667 43 -175 c 0 37 -163.667 34 -150.667 34 -136 c 0 34 -85.3333 71.6667 -40 147 0 c 1 63 0 l 1 63 729 l 1 213 729 l 1 EndSplineSet EndChar StartChar: iogonek Encoding: 303 303 239 Width: 278 Flags: W Fore 207 540 m 1 207 0 l 1 152.333 -38.6667 124.667 -81.3333 124 -128 c 0 124 -148 131.333 -162.333 146 -171 c 0 158 -178.333 171.667 -182 187 -182 c 1 231 -177 l 1 231 -224 l 1 204.333 -230 183.333 -233 168 -233 c 0 102 -233 60 -213.333 42 -174 c 0 36.6667 -162.667 34 -150 34 -136 c 0 34 -88.6667 70.6667 -43.3333 144 0 c 1 67 0 l 1 67 540 l 1 207 540 l 1 207 729 m 1 207 604 l 1 67 604 l 1 67 729 l 1 207 729 l 1 EndSplineSet EndChar StartChar: Idotaccent Encoding: 304 304 240 Width: 278 Flags: W Ref: 73 73 N 1 0 0 1 0 0 Ref: 729 729 N 1 0 0 1 -29 179 EndChar StartChar: dotlessi Encoding: 305 305 241 Width: 278 Flags: W Fore 207 540 m 1 207 0 l 1 67 0 l 1 67 540 l 1 207 540 l 1 EndSplineSet EndChar StartChar: IJ Encoding: 306 306 242 Width: 808 Flags: W Ref: 73 73 N 1 0 0 1 0 0 Ref: 74 74 N 1 0 0 1 254 0 Ligature: 0 0 'liga' I J EndChar StartChar: ij Encoding: 307 307 243 Width: 492 Flags: W Ref: 105 105 N 1 0 0 1 0 0 Ref: 106 106 N 1 0 0 1 208 0 Ligature: 0 0 'liga' i j EndChar StartChar: Jcircumflex Encoding: 308 308 244 Width: 556 Flags: W Ref: 74 74 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 244 222 EndChar StartChar: jcircumflex Encoding: 309 309 245 Width: 278 Flags: W Fore 210 540 m 1 210 -94 l 2 210 -157.333 188.667 -196 146 -210 c 0 130 -215.333 110.333 -218 87 -218 c 1 4 -213 l 1 4 -101 l 1 28 -105 l 1 29 -105 l 2 52.3333 -105 65.6667 -96.3333 69 -79 c 1 69 -78 l 1 70 -63 l 1 70 540 l 1 210 540 l 1 89 783 m 1 196 783 l 1 299 633 l 1 221 633 l 1 139 733 l 1 57 633 l 1 -19 633 l 1 89 783 l 1 EndSplineSet EndChar StartChar: Kcommaaccent Encoding: 310 310 246 Width: 722 Flags: W Ref: 75 75 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 203 0 EndChar StartChar: kcommaaccent Encoding: 311 311 247 Width: 556 Flags: W Ref: 107 107 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 117 0 EndChar StartChar: kgreenlandic Encoding: 312 312 248 Width: 573 Flags: W Ref: 1082 1082 N 1 0 0 1 0 0 EndChar StartChar: Lacute Encoding: 313 313 249 Width: 611 Flags: W Ref: 76 76 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 -19 179 EndChar StartChar: lacute Encoding: 314 314 250 Width: 278 Flags: W Ref: 108 108 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 -39 179 EndChar StartChar: Lcommaaccent Encoding: 315 315 251 Width: 611 Flags: W Ref: 76 76 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 157 0 EndChar StartChar: lcommaaccent Encoding: 316 316 252 Width: 278 Flags: W Ref: 108 108 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 -34 0 EndChar StartChar: Lcaron Encoding: 317 317 253 Width: 611 Flags: W Ref: 76 76 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 218 789 EndChar StartChar: lcaron Encoding: 318 318 254 Width: 278 Flags: W Ref: 108 108 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 148 788 EndChar StartChar: Ldot Encoding: 319 319 255 Width: 611 Flags: W Ref: 76 76 N 1 0 0 1 0 0 Ref: 183 183 N 1 0 0 1 271 150 EndChar StartChar: ldot Encoding: 320 320 256 Width: 556 Flags: W Ref: 108 108 N 1 0 0 1 0 0 Ref: 183 183 N 1 0 0 1 256 136 EndChar StartChar: Lslash Encoding: 321 321 257 Width: 611 Flags: W Fore 230 423 m 1 395 535 l 1 395 447 l 1 230 334 l 1 230 125 l 1 597 125 l 1 597 0 l 1 80 0 l 1 80 257 l 1 0 201 l 1 0 290 l 1 80 346 l 1 80 729 l 1 230 729 l 1 230 423 l 1 EndSplineSet EndChar StartChar: lslash Encoding: 322 322 258 Width: 278 Flags: W Fore 196 442 m 1 252 482 l 1 252 403 l 1 196 363 l 1 196 0 l 1 56 0 l 1 56 294 l 1 0 254 l 1 0 333 l 1 56 373 l 1 56 729 l 1 196 729 l 1 196 442 l 1 EndSplineSet EndChar StartChar: Nacute Encoding: 323 323 259 Width: 722 Flags: W Ref: 78 78 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 183 179 EndChar StartChar: nacute Encoding: 324 324 260 Width: 611 Flags: W Ref: 110 110 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 123 0 EndChar StartChar: Ncommaaccent Encoding: 325 325 261 Width: 722 Flags: W Ref: 78 78 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 188 0 EndChar StartChar: ncommaaccent Encoding: 326 326 262 Width: 611 Flags: W Ref: 110 110 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 132 0 EndChar StartChar: Ncaron Encoding: 327 327 263 Width: 722 Flags: W Ref: 78 78 N 1 0 0 1 0 0 Ref: 711 711 N 1 0 0 1 198 179 EndChar StartChar: ncaron Encoding: 328 328 264 Width: 611 Flags: W Ref: 110 110 N 1 0 0 1 0 0 Ref: 711 711 N 1 0 0 1 131 0 EndChar StartChar: napostrophe Encoding: 329 329 265 Width: 611 Flags: W Fore 63 540 m 1 203 540 l 1 203 462 l 1 239.667 516.667 289.333 545.667 352 549 c 0 358 549 358 549 365 549 c 0 449.667 549 505.333 515.333 532 448 c 0 541.333 423.333 546 394.667 546 362 c 2 546 0 l 1 406 0 l 1 406 333 l 2 406 397.667 376 430 316 430 c 0 266.667 430 232.667 411.333 214 374 c 0 206.667 359.333 203 342.667 203 324 c 2 203 0 l 1 63 0 l 1 63 540 l 1 EndSplineSet EndChar StartChar: Eng Encoding: 330 330 266 Width: 722 Flags: W Fore 511 0 m 1 218 504 l 1 218 0 l 1 68 0 l 1 68 729 l 1 222 729 l 1 511 233 l 1 511 729 l 1 661 729 l 1 661 0 l 1 511 0 l 1 EndSplineSet EndChar StartChar: eng Encoding: 331 331 267 Width: 611 Flags: W Fore 63 540 m 1 203 540 l 1 203 462 l 1 239.667 516.667 289.333 545.667 352 549 c 0 358 549 358 549 365 549 c 0 449.667 549 505.333 515.333 532 448 c 0 541.333 423.333 546 394.667 546 362 c 2 546 0 l 1 406 0 l 1 406 333 l 2 406 397.667 376 430 316 430 c 0 266.667 430 232.667 411.333 214 374 c 0 206.667 359.333 203 342.667 203 324 c 2 203 0 l 1 63 0 l 1 63 540 l 1 EndSplineSet EndChar StartChar: Omacron Encoding: 332 332 268 Width: 778 Flags: W Ref: 79 79 N 1 0 0 1 0 0 Ref: 175 175 N 1 0 0 1 225 179 EndChar StartChar: omacron Encoding: 333 333 269 Width: 611 Flags: W Ref: 111 111 N 1 0 0 1 0 0 Ref: 175 175 N 1 0 0 1 136 0 EndChar StartChar: Obreve Encoding: 334 334 270 Width: 778 Flags: W Ref: 79 79 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 224 224 EndChar StartChar: obreve Encoding: 335 335 271 Width: 611 Flags: W Ref: 111 111 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 135 35 EndChar StartChar: Ohungarumlaut Encoding: 336 336 272 Width: 778 Flags: W Ref: 79 79 N 1 0 0 1 0 0 Ref: 733 733 N 1 0 0 1 309 179 EndChar StartChar: ohungarumlaut Encoding: 337 337 273 Width: 611 Flags: W Ref: 111 111 N 1 0 0 1 0 0 Ref: 733 733 N 1 0 0 1 219 0 EndChar StartChar: OE Encoding: 338 338 274 Width: 1000 Flags: W Fore 624 314 m 1 624 125 l 1 970 125 l 1 970 0 l 1 480 0 l 1 480 59 l 1 446 16.3333 411.333 -9.33333 376 -18 c 0 361.333 -21.3333 344.333 -23 325 -23 c 0 237 -23 165 14 109 88 c 0 55 158.667 28 249 28 359 c 0 28 483 61 581 127 653 c 0 181.667 711.667 249 741 329 741 c 0 379 741 421.667 726.667 457 698 c 1 480 677 l 1 480 729 l 1 951 729 l 1 951 604 l 1 624 604 l 1 624 439 l 1 923 439 l 1 923 314 l 1 624 314 l 1 474 178 m 1 474 540 l 1 448 586 412.333 610.333 367 613 c 2 356 613 l 2 292.667 613 244.667 581.667 212 519 c 0 212 518.333 211.667 517.667 211 517 c 1 211 517 l 1 189 473.667 178 421 178 359 c 0 178 261.667 203.333 190 254 144 c 0 282.667 118 316.333 105 355 105 c 0 405 105 443.333 127.333 470 172 c 0 474 178 l 1 EndSplineSet EndChar StartChar: oe Encoding: 339 339 275 Width: 944 Flags: W Fore 776 152 m 1 914 152 l 1 893.333 83.3333 850.333 33.6667 785 3 c 0 753.667 -11.6667 719.333 -20 682 -22 c 0 676 -22.6667 670 -23 664 -23 c 0 588.667 -23 529 2 485 52 c 1 433.667 2 368.667 -23 290 -23 c 0 186 -23 111 15.3333 65 92 c 0 37 138 23 195 23 263 c 0 23 375.667 59.6667 456.667 133 506 c 0 175.667 534.667 228 549 290 549 c 0 371.333 549 436.333 523.667 485 473 c 1 528.333 523.667 588.333 549 665 549 c 0 750.333 549 816.333 518.333 863 457 c 0 878.333 437.667 890.333 416 899 392 c 0 913 351.333 920 304 920 250 c 1 919 226 l 1 557 226 l 1 557.667 184.667 564.667 153.333 578 132 c 0 596.667 100.667 627.667 84.6667 671 84 c 0 711 84 741.667 98.6667 763 128 c 0 769 135.333 773.333 143.333 776 152 c 1 290 436 m 1 241.333 436 205.667 411.333 183 362 c 0 169.667 334 163 301 163 263 c 0 163 192.333 183.333 141.667 224 111 c 0 243.333 97 265.333 90 290 90 c 0 336.667 90 371.667 113.333 395 160 c 0 409.667 188.667 417 222.333 417 261 c 0 417 336.333 395.667 388.333 353 417 c 0 337 428.333 316 434.667 290 436 c 1 559 319 m 1 774 319 l 1 770.667 353.667 763 379.667 751 397 c 0 731.667 425 703.333 440 666 442 c 1 629.333 442 601.333 427.333 582 398 c 2 576 388 l 1 567.333 370.667 561.667 347.667 559 319 c 1 EndSplineSet EndChar StartChar: Racute Encoding: 340 340 276 Width: 722 Flags: W Ref: 82 82 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 177 179 EndChar StartChar: racute Encoding: 341 341 277 Width: 389 Flags: W Ref: 114 114 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 31 0 EndChar StartChar: Rcommaaccent Encoding: 342 342 278 Width: 722 Flags: W Ref: 82 82 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 206 0 EndChar StartChar: rcommaaccent Encoding: 343 343 279 Width: 389 Flags: W Ref: 114 114 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 -38 0 EndChar StartChar: Rcaron Encoding: 344 344 280 Width: 722 Flags: W Ref: 82 82 N 1 0 0 1 0 0 Ref: 711 711 N 1 0 0 1 191 179 EndChar StartChar: rcaron Encoding: 345 345 281 Width: 389 Flags: W Ref: 114 114 N 1 0 0 1 0 0 Ref: 711 711 N 1 0 0 1 45 0 EndChar StartChar: Sacute Encoding: 346 346 282 Width: 667 Flags: W Ref: 83 83 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 148 179 EndChar StartChar: sacute Encoding: 347 347 283 Width: 556 Flags: W Ref: 115 115 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 102 0 EndChar StartChar: Scircumflex Encoding: 348 348 284 Width: 667 Flags: W Ref: 83 83 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 230 222 EndChar StartChar: scircumflex Encoding: 349 349 285 Width: 556 Flags: W Ref: 115 115 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 112 33 EndChar StartChar: Scedilla Encoding: 350 350 286 Width: 667 Flags: W Fore 340 -23 m 1 323 -62 l 1 338.333 -58 352 -56 364 -56 c 0 404.667 -56 429.333 -72.3333 438 -105 c 1 441 -127 l 1 441 -177.667 411 -207.667 351 -217 c 0 339 -219 326 -220 312 -220 c 0 274 -220 228 -210.667 174 -192 c 1 193 -140 l 1 238.333 -160 273.333 -170 298 -170 c 0 324.667 -170 342.333 -161.333 351 -144 c 0 353 -140 354.333 -135 355 -129 c 0 355 -112.333 344.667 -101.333 324 -96 c 2 323 -96 l 1 323 -96 l 1 322 -96 l 1 304 -94 l 1 288 -94 271.667 -98 255 -106 c 1 297 -23 l 1 157 -8.33333 72.6667 49.3333 44 150 c 0 38 170.667 34 193.333 32 218 c 1 178 218 l 1 182 151.333 221 112 295 100 c 1 342 97 l 1 414 97 460 117 480 157 c 0 486 168.333 489 181 489 195 c 0 489 233.667 469.667 261.667 431 279 c 0 411.667 287.667 385.333 295 352 301 c 2 250 321 l 2 154 339 92.6667 372.333 66 421 c 2 65 422 l 1 65 423 l 1 64 424 l 2 51.3333 448.667 45 479.667 45 517 c 0 45 612.333 86.6667 678 170 714 c 0 212 732 262.333 741 321 741 c 0 427 741 505.333 713.333 556 658 c 0 590 620.667 607 570.333 607 507 c 1 467 507 l 1 462.333 574.333 420.667 612 342 620 c 1 314 621 l 2 254 621 215 603.333 197 568 c 2 196 567 l 2 190.667 556.333 188 544.333 188 531 c 0 188 500.333 202 478 230 464 c 0 245.333 456 266.667 449 294 443 c 0 294.667 443 295.333 442.667 296 442 c 2 326 436 l 1 440 414 l 2 536.667 395.333 596.667 355.667 620 295 c 0 628.667 272.333 633 245.333 633 214 c 0 633 65.3333 535.333 -13.6667 340 -23 c 1 EndSplineSet EndChar StartChar: scedilla Encoding: 351 351 287 Width: 556 Flags: W Fore 283 -23 m 1 264 -63 l 1 278 -58.3333 292 -56 306 -56 c 0 346 -56 370.333 -72 379 -104 c 0 381 -110.667 382 -118.333 382 -127 c 0 382 -177.667 352.333 -207.667 293 -217 c 0 281.667 -219 268.667 -220 254 -220 c 0 217.333 -220 173 -211.333 121 -194 c 0 115 -192 l 1 134 -140 l 1 180 -160 215 -170 239 -170 c 0 265.667 -170 283.333 -161.333 292 -144 c 0 294 -140 295.333 -135 296 -129 c 0 296 -112.333 285.667 -101.333 265 -96 c 2 264 -96 l 1 264 -96 l 1 263 -96 l 1 245 -94 l 1 229 -94 212.667 -98 196 -106 c 1 239 -22 l 1 137.667 -10 73.6667 23.6667 47 79 c 0 36.3333 100.333 30.3333 126.333 29 157 c 1 166 157 l 1 171.333 133 180.333 116 193 106 c 1 212.333 93.3333 240 87 276 87 c 0 336 87 370 101 378 129 c 0 379.333 132.333 380 136 380 140 c 0 380 157.333 369.667 170 349 178 c 0 344.333 180 339 182 333 184 c 2 166 236 l 2 124.667 249.333 96.3333 263.333 81 278 c 2 78 281 l 2 58 303 48 332.333 48 369 c 0 48 441 80 492.333 144 523 c 0 178.667 540.333 220.667 549 270 549 c 0 371.333 549 441 518.667 479 458 c 0 495.667 432 504.333 401.333 505 366 c 1 370 366 l 1 369.333 414 335.667 438.333 269 439 c 0 226.333 439 200.333 427.333 191 404 c 1 191 403 l 1 188 389 l 1 188 374.333 196 363.333 212 356 c 2 213 356 l 1 237 347 l 1 414 296 l 2 484 275.333 519.333 230 520 160 c 0 520 96 492.667 47 438 13 c 0 400 -11 354.333 -23 301 -23 c 2 283 -23 l 1 EndSplineSet EndChar StartChar: Scaron Encoding: 352 352 288 Width: 667 Flags: W Ref: 83 83 N 1 0 0 1 0 0 Ref: 711 711 N 1 0 0 1 160 179 EndChar StartChar: scaron Encoding: 353 353 289 Width: 556 Flags: W Ref: 115 115 N 1 0 0 1 0 0 Ref: 711 711 N 1 0 0 1 113 0 EndChar StartChar: uni0162 Encoding: 354 354 290 Width: 611 Flags: W Ref: 84 84 N 1 0 0 1 0 0 Ref: 184 184 N 1 0 0 1 149 0 EndChar StartChar: uni0163 Encoding: 355 355 291 Width: 333 Flags: W Ref: 116 116 N 1 0 0 1 0 0 Ref: 184 184 N 1 0 0 1 31 -23 EndChar StartChar: Tcaron Encoding: 356 356 292 Width: 611 Flags: W Ref: 84 84 N 1 0 0 1 0 0 Ref: 711 711 N 1 0 0 1 142 179 EndChar StartChar: tcaron Encoding: 357 357 293 Width: 333 Flags: W Ref: 116 116 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 164 888 EndChar StartChar: Tbar Encoding: 358 358 294 Width: 611 Flags: W Fore 385 604 m 1 385 0 l 1 235 0 l 1 235 604 l 1 14 604 l 1 14 729 l 1 598 729 l 1 598 604 l 1 385 604 l 1 EndSplineSet EndChar StartChar: tbar Encoding: 359 359 295 Width: 333 Flags: W Fore 301 529 m 1 301 436 l 1 223 436 l 1 223 142 l 2 223 111.333 229 93 241 87 c 2 242 87 l 2 248 84.3333 257 83 269 83 c 1 301 86 l 1 301 -12 l 1 278.333 -19.3333 251.333 -23 220 -23 c 0 129.333 -23 83.6667 19.3333 83 104 c 1 83 436 l 1 14 436 l 1 14 529 l 1 83 529 l 1 83 674 l 1 223 674 l 1 223 529 l 1 301 529 l 1 EndSplineSet EndChar StartChar: Utilde Encoding: 360 360 296 Width: 722 Flags: W Ref: 85 85 N 1 0 0 1 0 0 Ref: 732 732 N 1 0 0 1 197 208 EndChar StartChar: utilde Encoding: 361 361 297 Width: 611 Flags: W Ref: 117 117 N 1 0 0 1 0 0 Ref: 732 732 N 1 0 0 1 131 19 EndChar StartChar: Umacron Encoding: 362 362 298 Width: 722 Flags: W Ref: 85 85 N 1 0 0 1 0 0 Ref: 175 175 N 1 0 0 1 199 179 EndChar StartChar: umacron Encoding: 363 363 299 Width: 611 Flags: W Ref: 117 117 N 1 0 0 1 0 0 Ref: 175 175 N 1 0 0 1 134 0 EndChar StartChar: Ubreve Encoding: 364 364 300 Width: 722 Flags: W Ref: 85 85 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 198 224 EndChar StartChar: ubreve Encoding: 365 365 301 Width: 611 Flags: W Ref: 117 117 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 132 35 EndChar StartChar: Uring Encoding: 366 366 302 Width: 722 Flags: W Ref: 85 85 N 1 0 0 1 0 0 Ref: 730 730 N 1 0 0 1 198 179 EndChar StartChar: uring Encoding: 367 367 303 Width: 611 Flags: W Ref: 117 117 N 1 0 0 1 0 0 Ref: 730 730 N 1 0 0 1 131 0 EndChar StartChar: Uhungarumlaut Encoding: 368 368 304 Width: 722 Flags: W Ref: 85 85 N 1 0 0 1 0 0 Ref: 733 733 N 1 0 0 1 281 179 EndChar StartChar: uhungarumlaut Encoding: 369 369 305 Width: 611 Flags: W Ref: 117 117 N 1 0 0 1 0 0 Ref: 733 733 N 1 0 0 1 218 0 EndChar StartChar: Uogonek Encoding: 370 370 306 Width: 722 Flags: W Fore 597 -177 m 1 597 -224 l 1 571 -230.667 544.333 -234 517 -234 c 0 490.333 -234 465 -230 441 -222 c 0 396.333 -207.333 373.667 -179.333 373 -138 c 0 373 -102 392.667 -68.6667 432 -38 c 2 433 -38 l 1 477 -7 l 1 437.667 -17.6667 401.333 -23 368 -23 c 0 275.333 -23 201.667 1.66667 147 51 c 0 99.6667 93 76 154.333 76 235 c 2 76 729 l 1 226 729 l 1 226 235 l 2 226 151 272.333 107.667 365 105 c 1 455 105 501.333 148.333 504 235 c 1 504 729 l 1 654 729 l 1 654 235 l 2 654 169.667 636.667 114.333 602 69 c 0 590.667 55 565.667 27.6667 527 -13 c 0 483.667 -59.6667 462 -99.3333 462 -132 c 0 462 -166 487.667 -183 539 -183 c 0 558.333 -183 577.667 -181 597 -177 c 1 EndSplineSet EndChar StartChar: uogonek Encoding: 371 371 307 Width: 611 Flags: W Fore 465 0 m 1 401 0 l 1 401 64 l 1 364.333 9.33333 314.667 -19.6667 252 -23 c 2 239 -23 l 2 154.333 -23 98.6667 10.6667 72 78 c 0 62.6667 102.667 58 131.333 58 164 c 2 58 540 l 1 198 540 l 1 198 193 l 2 198 128.333 228 96 288 96 c 0 336.667 96 370.333 114.333 389 151 c 0 397 165.667 401 182.667 401 202 c 2 401 540 l 1 541 540 l 1 541 0 l 1 467.667 -37.3333 430.667 -80.3333 430 -129 c 0 430 -164.333 455.333 -182 506 -182 c 0 522.667 -182 540.667 -180.667 560 -178 c 2 561 -177 l 1 564 -177 l 1 564 -224 l 1 540 -230 515 -233 489 -233 c 0 410.333 -233 362.667 -211.667 346 -169 c 0 342 -159.667 340 -149.333 340 -138 c 0 340 -100 358.667 -66.3333 396 -37 c 0 403.333 -31 411 -25.6667 419 -21 c 0 428.333 -15 443.667 -8 465 0 c 1 EndSplineSet EndChar StartChar: Wcircumflex Encoding: 372 372 308 Width: 944 Flags: W Ref: 87 87 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 305 222 EndChar StartChar: wcircumflex Encoding: 373 373 309 Width: 778 Flags: W Ref: 119 119 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 218 33 EndChar StartChar: Ycircumflex Encoding: 374 374 310 Width: 667 Flags: W Ref: 89 89 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 171 222 EndChar StartChar: ycircumflex Encoding: 375 375 311 Width: 556 Flags: W Ref: 121 121 N 1 0 0 1 0 0 Ref: 710 710 N 1 0 0 1 106 33 EndChar StartChar: Ydieresis Encoding: 376 376 312 Width: 667 Flags: W Ref: 89 89 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 176 179 EndChar StartChar: Zacute Encoding: 377 377 313 Width: 611 Flags: W Ref: 90 90 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 124 179 EndChar StartChar: zacute Encoding: 378 378 314 Width: 500 Flags: W Ref: 122 122 N 1 0 0 1 0 0 Ref: 180 180 N 1 0 0 1 70 0 EndChar StartChar: Zdotaccent Encoding: 379 379 315 Width: 611 Flags: W Ref: 90 90 N 1 0 0 1 0 0 Ref: 729 729 N 1 0 0 1 140 179 EndChar StartChar: zdotaccent Encoding: 380 380 316 Width: 500 Flags: W Ref: 122 122 N 1 0 0 1 0 0 Ref: 729 729 N 1 0 0 1 84 0 EndChar StartChar: Zcaron Encoding: 381 381 317 Width: 611 Flags: W Ref: 90 90 N 1 0 0 1 0 0 Ref: 711 711 N 1 0 0 1 139 179 EndChar StartChar: zcaron Encoding: 382 382 318 Width: 500 Flags: W Ref: 122 122 N 1 0 0 1 0 0 Ref: 711 711 N 1 0 0 1 83 0 EndChar StartChar: longs Encoding: 383 383 319 Width: 333 Flags: W Fore 230 0 m 1 90 0 l 1 90 436 l 1 14 436 l 1 14 529 l 1 90 529 l 1 90 594 l 2 90 684 136 729 228 729 c 1 308 726 l 1 308 621 l 1 268 624 l 1 244 624 231.333 610 230 582 c 1 230 0 l 1 EndSplineSet EndChar StartChar: florin Encoding: 402 402 320 Width: 556 Flags: W Fore 500 480 m 1 500 383 l 1 363 383 l 1 304 1 l 2 291.333 -81.6667 268.667 -139.333 236 -172 c 0 204 -204 162.333 -220 111 -220 c 0 79.6667 -220 49.6667 -212.667 21 -198 c 1 45 -83 l 1 68.3333 -97 87.3333 -104 102 -104 c 0 125.333 -104 142.333 -88.3333 153 -57 c 0 158.333 -41.6667 163 -20.3333 167 7 c 1 227 383 l 1 104 383 l 1 104 480 l 1 242 480 l 1 253 539 l 1 271 650.333 314 716 382 736 c 0 398.667 741.333 417.667 744 439 744 c 0 465.667 744 497.667 738.333 535 727 c 1 515 612 l 1 491 622.667 472.667 628 460 628 c 0 421.333 628 396 593 384 523 c 1 384 522 l 1 384 521 l 1 377 480 l 1 500 480 l 1 EndSplineSet EndChar StartChar: Scommaaccent Encoding: 536 536 321 Width: 667 Flags: W Ref: 83 83 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 170 0 EndChar StartChar: scommaaccent Encoding: 537 537 322 Width: 556 Flags: W Ref: 115 115 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 115 0 EndChar StartChar: Tcommaaccent Encoding: 538 538 323 Width: 611 Flags: W Ref: 84 84 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 140 0 EndChar StartChar: tcommaaccent Encoding: 539 539 324 Width: 333 Flags: W Ref: 116 116 N 1 0 0 1 0 0 Ref: 63171 63171 N 1 0 0 1 15 0 EndChar StartChar: circumflex Encoding: 710 710 325 Width: 333 Flags: W Fore 116 757 m 1 223 757 l 1 326 607 l 1 248 607 l 1 166 707 l 1 84 607 l 1 8 607 l 1 116 757 l 1 EndSplineSet EndChar StartChar: caron Encoding: 711 711 326 Width: 333 Flags: W Fore 219 607 m 1 112 607 l 1 9 757 l 1 87 757 l 1 169 660 l 1 251 757 l 1 327 757 l 1 219 607 l 1 EndSplineSet EndChar StartChar: breve Encoding: 728 728 327 Width: 333 Flags: W Fore 299 748 m 1 299 737 l 2 299 689.667 280 653 242 627 c 0 220 612.333 195 605 167 605 c 0 119 605 82.3333 624 57 662 c 1 57 663 l 1 42.3333 685 35 710 35 738 c 2 35 748 l 1 91 748 l 1 97 704 122.667 682 168 682 c 0 208.667 682 233.333 701.667 242 741 c 1 243 748 l 1 299 748 l 1 EndSplineSet EndChar StartChar: dotaccent Encoding: 729 729 328 Width: 333 Flags: W Fore 222 743 m 1 222 621 l 1 112 621 l 1 112 743 l 1 222 743 l 1 EndSplineSet EndChar StartChar: ring Encoding: 730 730 329 Width: 333 Flags: W Fore 168 770 m 0 202 770 227.667 755.333 245 726 c 0 253 712 257 696.333 257 679 c 0 257 645.667 242.333 620.333 213 603 c 0 199 594.333 183.667 590 167 590 c 0 133 590 107.333 604.333 90 633 c 2 89 634 l 1 89 635 l 1 81.6667 648.333 77.6667 663.333 77 680 c 0 77 714 91.6667 739.667 121 757 c 0 135 765.667 150.667 770 168 770 c 0 168 722 m 1 148.667 722 135.333 713 128 695 c 1 125 680 l 1 125 661.333 133.667 648.333 151 641 c 1 168 638 l 1 185.333 638 197.667 646.333 205 663 c 1 206 664 l 1 209 680 l 1 209 698.667 200.333 711.667 183 719 c 1 168 722 l 1 EndSplineSet EndChar StartChar: ogonek Encoding: 731 731 330 Width: 333 Flags: W Fore 169 0 m 1 244 0 l 1 189.333 -34 156 -63.3333 144 -88 c 0 138 -100.667 135 -115.667 135 -133 c 0 135 -166.333 160.333 -183 211 -183 c 0 231 -183 250 -181 268 -177 c 1 268 -224 l 1 242 -230.667 215.667 -234 189 -234 c 0 119.667 -234 74.6667 -215 54 -177 c 0 48 -165.667 45 -153 45 -139 c 0 45 -90.3333 72 -50.6667 126 -20 c 0 139.333 -12 153.667 -5.33333 169 0 c 1 EndSplineSet EndChar StartChar: tilde Encoding: 732 732 331 Width: 333 Flags: W Fore 282 749 m 1 345 749 l 1 341 664.333 309.333 622 250 622 c 0 234 622 215.667 626 195 634 c 2 124 660 l 2 112 664 102 666 94 666 c 0 74 666 61.3333 654.333 56 631 c 0 54 621 l 1 -9 621 l 1 -5.66667 686.333 16.3333 726 57 740 c 0 65.6667 743.333 75 745 85 745 c 0 98.3333 745 115.667 741 137 733 c 2 141 732 l 1 212 707 l 2 221.333 703 232.667 701 246 701 c 0 267.333 701 279.333 717 282 749 c 1 EndSplineSet EndChar StartChar: hungarumlaut Encoding: 733 733 332 Width: 333 Flags: W Fore 152 757 m 1 26 610 l 1 -44 610 l 1 26 757 l 1 152 757 l 1 340 757 m 1 214 610 l 1 144 610 l 1 214 757 l 1 340 757 l 1 EndSplineSet EndChar StartChar: dieresistonos Encoding: 901 901 333 Width: 494 Flags: W Fore 434 745 m 1 279 557 l 1 157 557 l 1 247 745 l 1 434 745 l 1 374 403 m 1 232 403 l 1 232 553 l 1 374 553 l 1 374 403 l 1 192 403 m 1 50 403 l 1 50 553 l 1 192 553 l 1 192 403 l 1 EndSplineSet EndChar StartChar: Alphatonos Encoding: 902 902 334 Width: 764 Flags: W Fore 725 -25 m 1 565 -25 l 1 481 193 l 1 216 193 l 1 138 -25 l 1 -18 -25 l 1 277 741 l 1 412 741 l 1 725 -25 l 1 346 549 m 1 327 496 l 1 262 319 l 1 432 319 l 1 371 483 l 1 360 512 l 1 346 549 l 1 244 739 m 1 89 551 l 1 -33 551 l 1 57 739 l 1 244 739 l 1 EndSplineSet EndChar StartChar: anoteleia Encoding: 903 903 335 Width: 474 Flags: W Fore 357 350 m 0 357 326 351.667 302.333 341 279 c 1 328.333 255 311 236.333 289 223 c 1 268.333 208.333 241.333 201 208 201 c 0 175.333 201 148.667 208.333 128 223 c 1 104.667 237 87 255.667 75 279 c 0 64.3333 301.667 59 325.333 59 350 c 0 59 374 64.3333 397.667 75 421 c 0 86.3333 445 104 464.333 128 479 c 0 151.333 492.333 178 499 208 499 c 0 238.667 499 265.667 492.333 289 479 c 1 313 463 330.333 443.667 341 421 c 0 351 399 356.333 375.333 357 350 c 0 EndSplineSet EndChar StartChar: Epsilontonos Encoding: 904 904 336 Width: 866 Flags: W Fore 247 739 m 1 92 551 l 1 -30 551 l 1 60 739 l 1 247 739 l 1 791 -25 m 1 207 -25 l 1 207 741 l 1 775 741 l 1 775 607 l 1 351 607 l 1 351 437 l 1 747 437 l 1 747 303 l 1 351 303 l 1 351 109 l 1 791 109 l 1 791 -25 l 1 EndSplineSet EndChar StartChar: Etatonos Encoding: 905 905 337 Width: 903 Flags: W Fore 244 739 m 1 89 551 l 1 -33 551 l 1 57 739 l 1 244 739 l 1 814 -25 m 1 670 -25 l 1 670 313 l 1 348 313 l 1 348 -25 l 1 204 -25 l 1 204 741 l 1 348 741 l 1 348 447 l 1 670 447 l 1 670 741 l 1 814 741 l 1 814 -25 l 1 EndSplineSet EndChar StartChar: Iotatonos Encoding: 906 906 338 Width: 430 Flags: W Fore 245 747 m 1 90 559 l 1 -32 559 l 1 58 747 l 1 245 747 l 1 349 -23 m 1 205 -23 l 1 205 743 l 1 349 743 l 1 349 -23 l 1 EndSplineSet EndChar StartChar: Omicrontonos Encoding: 908 908 339 Width: 898 Flags: W Fore 236 749 m 1 81 561 l 1 -41 561 l 1 49 749 l 1 236 749 l 1 860 358 m 0 860 230 826 130 758 58 c 0 690 -14.6667 601.667 -51 493 -51 c 128 384.333 -51 296 -14.6667 228 58 c 0 160 130 126 230 126 358 c 0 126 483.333 160 582 228 654 c 1 294.667 726.667 383 763 493 763 c 0 603 763 691.333 726.667 758 654 c 1 826 582 860 483.333 860 358 c 0 714 356 m 0 714 456 692 527 648 569 c 0 603.333 610.333 551.667 631 493 631 c 0 435.667 631 384 610.333 338 569 c 1 294 527 272 456 272 356 c 128 272 256 294 185 338 143 c 1 383.333 101.667 435 81 493 81 c 0 551.667 81 603.333 101.667 648 143 c 0 692 185 714 256 714 356 c 0 EndSplineSet EndChar StartChar: Upsilontonos Encoding: 910 910 340 Width: 965 Flags: W Fore 243 741 m 1 88 553 l 1 -34 553 l 1 56 741 l 1 243 741 l 1 924 741 m 1 615 296 l 1 615 -25 l 1 471 -25 l 1 471 296 l 1 173 741 l 1 348 741 l 1 497 514 l 1 549 429 l 1 605 520 l 1 752 741 l 1 924 741 l 1 EndSplineSet EndChar StartChar: Omegatonos Encoding: 911 911 341 Width: 844 Flags: W Fore 249 745 m 1 94 557 l 1 -28 557 l 1 62 745 l 1 249 745 l 1 787 -25 m 1 463 -25 l 1 463 96 l 1 529 123.333 576.333 160.333 605 207 c 0 633 253.667 647 310 647 376 c 2 647 384 l 2 647 446.667 626.333 502.667 585 552 c 1 545 598 492.667 621 428 621 c 0 365.333 621 315.667 597.667 279 551 c 0 239.667 501.667 220 443 220 375 c 1 219 368 l 1 219 306 232.333 253.333 259 210 c 1 285 162.667 329 125 391 97 c 1 391 -25 l 1 77 -25 l 1 77 101 l 1 199 101 l 1 169 127.667 144.667 156.667 126 188 c 1 100 236 86.3333 299 85 377 c 1 83 379 l 1 83 477 115.333 562.333 180 635 c 1 244.667 709.667 326.667 747 426 747 c 0 531.333 747 618 711 686 639 c 0 753.333 567.667 787 484 787 388 c 0 787 303.333 772.667 236.333 744 187 c 0 726 155.667 701 127 669 101 c 1 787 101 l 1 787 -25 l 1 EndSplineSet EndChar StartChar: Alpha Encoding: 913 913 342 Width: 764 Flags: W Fore 725 -25 m 1 565 -25 l 1 481 193 l 1 216 193 l 1 138 -25 l 1 -18 -25 l 1 277 741 l 1 412 741 l 1 725 -25 l 1 346 549 m 1 327 496 l 1 262 319 l 1 432 319 l 1 371 483 l 1 360 512 l 1 346 549 l 1 EndSplineSet EndChar StartChar: Beta Encoding: 914 914 343 Width: 688 Flags: W Fore 640 212 m 0 640 190.667 637.667 171.333 633 154 c 0 619 99.3333 593 57.3333 555 28 c 0 509.667 -7.33333 440 -25 346 -25 c 2 49 -25 l 1 49 741 l 1 342 741 l 2 387.333 741 428.667 735 466 723 c 1 500 710.333 527.667 694 549 674 c 1 570.333 652.667 585 630 593 606 c 128 601 582 605 558 605 534 c 0 605 497.333 595.333 463.667 576 433 c 0 562 412.333 548.333 396.667 535 386 c 1 551 377 l 1 609.667 336.333 639.333 281.333 640 212 c 0 461 522 m 0 461 540 456.667 556.333 448 571 c 0 439.333 585.667 426.667 595 410 599 c 0 386 604.333 353.333 607 312 607 c 2 193 607 l 1 193 441 l 1 324 441 l 2 365.333 441 393 443.333 407 448 c 0 442.333 458 460.333 482.667 461 522 c 0 491 208 m 0 491 230.667 485.667 249.333 475 264 c 0 463.667 278 448.667 288 430 294 c 0 409.333 301.333 377.333 305 334 305 c 2 193 305 l 1 193 109 l 1 346 109 l 1 379 110 l 1 453 116 490.333 148.667 491 208 c 0 EndSplineSet EndChar StartChar: Gamma Encoding: 915 915 344 Width: 642 Flags: W Fore 591 607 m 1 203 607 l 1 203 -25 l 1 57 -25 l 1 57 741 l 1 591 741 l 1 591 607 l 1 EndSplineSet EndChar StartChar: Delta Encoding: 916 916 345 Width: 744 Flags: W Fore 721 -26 m 1 581 -23 l 1 -24 -26 l 1 272 741 l 1 407 741 l 1 721 -26 l 1 509 109 m 1 366 483 l 1 331 578 l 1 327 587.333 321 606.333 313 635 c 1 362 638 l 1 360 621.333 354.667 597.333 346 566 c 1 323 496 l 1 183 109 l 1 509 109 l 1 EndSplineSet EndChar StartChar: Epsilon Encoding: 917 917 346 Width: 710 Flags: W Fore 639 -25 m 1 55 -25 l 1 55 741 l 1 623 741 l 1 623 607 l 1 199 607 l 1 199 437 l 1 595 437 l 1 595 303 l 1 199 303 l 1 199 109 l 1 639 109 l 1 639 -25 l 1 EndSplineSet EndChar StartChar: Zeta Encoding: 918 918 347 Width: 688 Flags: W Fore 626 -25 m 1 10 -25 l 1 10 97 l 1 383 562 l 1 420 607 l 1 52 607 l 1 52 741 l 1 614 741 l 1 614 623 l 1 206 120 l 1 197 109 l 1 626 109 l 1 626 -25 l 1 EndSplineSet EndChar StartChar: Eta Encoding: 919 919 348 Width: 743 Flags: W Fore 650 -25 m 1 506 -25 l 1 506 313 l 1 184 313 l 1 184 -25 l 1 40 -25 l 1 40 741 l 1 184 741 l 1 184 447 l 1 506 447 l 1 506 741 l 1 650 741 l 1 650 -25 l 1 EndSplineSet EndChar StartChar: Theta Encoding: 920 920 349 Width: 810 Flags: W Fore 754 358 m 0 754 279.333 738 210 706 150 c 0 675.333 92 631 45.6667 573 11 c 0 517.667 -21 455.667 -37 387 -37 c 0 326.333 -37 267.667 -24 211 2 c 1 151.667 31.3333 105.667 74.3333 73 131 c 1 37.6667 189 20 262 20 350 c 0 20 410 28.6667 466 46 518 c 1 64.6667 570 90 612.667 122 646 c 1 154 682 193 709 239 727 c 1 283 745.667 332.333 755 387 755 c 0 433.667 755 478 747.667 520 733 c 0 565.333 716.333 605 692 639 660 c 0 675.667 626.667 703.667 584.667 723 534 c 1 743.667 484 754 425.333 754 358 c 0 606 358 m 0 606 398.667 600.667 436 590 470 c 0 580 501.333 565.333 529 546 553 c 0 526.667 575.667 503.667 593 477 605 c 0 449 617 419 623 387 623 c 0 353 623 322 617 294 605 c 0 267.333 593.667 244.667 576.667 226 554 c 0 206.667 530.667 192 502.333 182 469 c 0 171.333 432.333 166 392 166 348 c 0 166 308.667 171.667 273 183 241 c 1 191.667 212.333 207 186 229 162 c 1 247.667 139.333 270.667 122.667 298 112 c 0 324 100.667 353 95 385 95 c 0 428.333 95 466.667 105 500 125 c 0 534 145.667 560 175.333 578 214 c 0 596.667 252 606 300 606 358 c 0 578 303 m 1 192 303 l 1 192 437 l 1 578 437 l 1 578 303 l 1 EndSplineSet EndChar StartChar: Iota Encoding: 921 921 350 Width: 296 Flags: W Fore 188 -25 m 1 44 -25 l 1 44 741 l 1 188 741 l 1 188 -25 l 1 EndSplineSet EndChar StartChar: Kappa Encoding: 922 922 351 Width: 744 Flags: W Fore 716 -25 m 1 527 -25 l 1 279 323 l 1 193 237 l 1 193 -25 l 1 49 -25 l 1 49 741 l 1 193 741 l 1 193 423 l 1 511 741 l 1 703 741 l 1 385 423 l 1 716 -25 l 1 EndSplineSet EndChar StartChar: Lambda Encoding: 923 923 352 Width: 744 Flags: W Fore 715 -25 m 1 555 -25 l 1 361 483 l 1 326 578 l 1 320.667 588.667 314.667 607.667 308 635 c 1 357 638 l 1 353.667 616 348.333 592 341 566 c 1 317 496 l 1 127 -25 l 1 -28 -25 l 1 267 741 l 1 402 741 l 1 715 -25 l 1 EndSplineSet EndChar StartChar: Mu Encoding: 924 924 353 Width: 860 Flags: W Fore 773 -25 m 1 631 -25 l 1 631 451 l 1 466 -25 l 1 344 -25 l 1 181 457 l 1 181 -25 l 1 39 -25 l 1 39 741 l 1 226 741 l 1 399 219 l 1 413 179 l 1 422 153 l 1 425 145 l 1 426 141 l 1 415 197 l 1 424 226 l 1 602 741 l 1 773 741 l 1 773 -25 l 1 EndSplineSet EndChar StartChar: Nu Encoding: 925 925 354 Width: 714 Flags: W Fore 645 -25 m 1 510 -25 l 1 173 479 l 1 173 -25 l 1 31 -25 l 1 31 741 l 1 168 741 l 1 505 237 l 1 505 741 l 1 645 741 l 1 645 -25 l 1 EndSplineSet EndChar StartChar: Xi Encoding: 926 926 355 Width: 690 Flags: W Fore 613 607 m 1 45 607 l 1 45 741 l 1 613 741 l 1 613 607 l 1 557 301 m 1 107 301 l 1 107 435 l 1 557 435 l 1 557 301 l 1 629 -25 m 1 45 -25 l 1 45 109 l 1 629 109 l 1 629 -25 l 1 EndSplineSet EndChar StartChar: Omicron Encoding: 927 927 356 Width: 822 Flags: W Fore 754 358 m 0 754 230 720 130 652 58 c 0 584 -14.6667 495.667 -51 387 -51 c 0 277 -51 188.667 -14.6667 122 58 c 1 54 130 20 230 20 358 c 0 20 483.333 54 582 122 654 c 1 188.667 726.667 277 763 387 763 c 0 497 763 585.333 726.667 652 654 c 1 720 582 754 483.333 754 358 c 0 608 356 m 0 608 456 586 527 542 569 c 0 497.333 610.333 445.667 631 387 631 c 128 328.333 631 276.667 610.333 232 569 c 0 188 527 166 456 166 356 c 128 166 256 188 185 232 143 c 0 276.667 101.667 328.333 81 387 81 c 128 445.667 81 497.333 101.667 542 143 c 0 586 185 608 256 608 356 c 0 EndSplineSet EndChar StartChar: Pi Encoding: 928 928 357 Width: 781 Flags: W Fore 665 -25 m 1 521 -25 l 1 521 607 l 1 199 607 l 1 199 -25 l 1 55 -25 l 1 55 741 l 1 665 741 l 1 665 -25 l 1 EndSplineSet EndChar StartChar: Rho Encoding: 929 929 358 Width: 698 Flags: W Fore 649 510 m 0 649 463.333 639.667 422.667 621 388 c 0 601.667 350 569.667 320 525 298 c 0 481 277.333 424.667 267 356 267 c 2 197 267 l 1 197 -25 l 1 53 -25 l 1 53 741 l 1 348 741 l 2 402.667 741 442.667 738.667 468 734 c 0 510.667 726 545.667 710 573 686 c 0 600.333 662.667 619.667 635.333 631 604 c 0 643 574 649 542.667 649 510 c 0 501 506 m 0 501 557.333 479.667 589.333 437 602 c 1 418.333 605.333 391.333 607 356 607 c 2 197 607 l 1 197 401 l 1 358 401 l 2 410 401 447.667 410 471 428 c 0 491 442.667 501 468.667 501 506 c 0 EndSplineSet EndChar StartChar: Sigma Encoding: 931 931 359 Width: 688 Flags: W Fore 631 -25 m 1 15 -25 l 1 15 98 l 1 244 386 l 1 49 625 l 1 49 743 l 1 611 743 l 1 611 609 l 1 243 609 l 1 261 586 l 1 279 564 l 1 425 386 l 1 211 120 l 1 202 109 l 1 631 109 l 1 631 -25 l 1 EndSplineSet EndChar StartChar: Tau Encoding: 932 932 360 Width: 688 Flags: W Fore 632 607 m 1 394 607 l 1 394 -25 l 1 250 -25 l 1 250 607 l 1 14 607 l 1 14 741 l 1 632 741 l 1 632 607 l 1 EndSplineSet EndChar StartChar: Upsilon Encoding: 933 933 361 Width: 744 Flags: W Fore 718 741 m 1 409 296 l 1 409 -25 l 1 265 -25 l 1 265 296 l 1 -33 741 l 1 142 741 l 1 291 514 l 1 343 429 l 1 399 520 l 1 546 741 l 1 718 741 l 1 EndSplineSet EndChar StartChar: Phi Encoding: 934 934 362 Width: 777 Flags: W Fore 713 353 m 0 713 263 683 189.667 623 133 c 1 571 81.6667 505 53.6667 425 49 c 1 425 -25 l 1 292 -25 l 1 292 49 l 1 212 53.6667 146 81.6667 94 133 c 1 34 189.667 4 263 4 353 c 0 4 397 11.6667 438 27 476 c 0 42.3333 513.333 64.6667 546.667 94 576 c 0 147.333 628 213.667 656.667 293 662 c 1 293 745 l 1 424 745 l 1 424 662 l 1 503.333 656.667 569.333 628 622 576 c 0 682.667 515.333 713 441 713 353 c 0 572 358 m 0 572 409.333 555.667 451 523 483 c 0 497 509 464.333 526.667 425 536 c 1 425 171 l 1 463 179.667 496 198 524 226 c 1 556 260 572 304 572 358 c 0 292 171 m 1 292 536 l 1 253.333 526.667 220.667 509 194 483 c 0 161.333 452.333 145 410.667 145 358 c 0 145 304 161 260 193 226 c 1 220.333 198.667 253.333 180.333 292 171 c 1 EndSplineSet EndChar StartChar: Chi Encoding: 935 935 363 Width: 783 Flags: W Fore 736 -25 m 1 557 -25 l 1 368 242 l 1 358 258 l 1 365 268 l 1 366 270 l 1 359 259 l 1 349 244 l 2 345.667 238.667 343.667 235.667 343 235 c 2 156 -25 l 1 -21 -25 l 1 276 374 l 1 14 741 l 1 187 741 l 1 325 547 l 1 345 520 l 1 361 497 l 1 363 492 l 1 366 497 l 2 367.333 499 368.333 500 369 500 c 1 371 503 l 1 399 541 l 1 551 741 l 1 717 741 l 1 446 378 l 1 736 -25 l 1 EndSplineSet EndChar StartChar: Psi Encoding: 936 936 364 Width: 805 Flags: W Fore 719 368 m 2 719 301.333 704 248.667 674 210 c 0 643.333 169.333 604 143 556 131 c 1 533.333 124.333 496 121 444 121 c 2 445 121 l 1 445 -27 l 1 301 -27 l 1 301 121 l 1 302 121 l 2 249.333 121 211.667 124.333 189 131 c 1 159 137.667 131.333 151.667 106 173 c 0 82 193 62.6667 219.667 48 253 c 0 34 283.667 27 322 27 368 c 2 27 746 l 1 167 742 l 1 167 380 l 2 167 347.333 171.333 322 180 304 c 0 186.667 288 199.333 276 218 268 c 0 238 258.667 266.667 254 304 254 c 2 305 254 l 1 305 743 l 1 441 743 l 1 441 254 l 1 442 254 l 2 477.333 254 506 258.667 528 268 c 0 546 275.333 558.667 287.333 566 304 c 0 574.667 322 579 347.333 579 380 c 2 579 742 l 1 719 746 l 1 719 368 l 2 EndSplineSet EndChar StartChar: Omega Encoding: 937 937 365 Width: 780 Flags: W Fore 729 370 m 0 729 300 714 239 684 187 c 0 664.667 154.333 639.667 125.667 609 101 c 1 727 101 l 1 727 -25 l 1 403 -25 l 1 403 96 l 1 469 123.333 516.333 160.333 545 207 c 0 573.667 255 588 308.667 588 368 c 0 588 402 583 434 573 464 c 0 562.333 496 548 523.667 530 547 c 0 511.333 570.333 488.333 588.333 461 601 c 0 433 614.333 402 621 368 621 c 0 324.667 621 287.667 609.333 257 586 c 0 225 562 200.667 530.667 184 492 c 0 167.333 454 159 411.667 159 365 c 0 159 307.667 172.333 256 199 210 c 1 225 161.333 269 123.667 331 97 c 1 331 -25 l 1 17 -25 l 1 17 101 l 1 139 101 l 1 109 127.667 84.6667 156.667 66 188 c 0 36.6667 240 22 299.333 22 366 c 0 22 428.667 35.3333 489 62 547 c 0 88.6667 605.667 128 654 180 692 c 1 233.333 728.667 295.333 747 366 747 c 0 444.667 747 511.667 728.667 567 692 c 0 621 655.333 662 608 690 550 c 1 716 492 729 432 729 370 c 0 EndSplineSet EndChar StartChar: Iotadieresis Encoding: 938 938 366 Width: 367 Flags: W Fore 313 735 m 1 171 735 l 1 171 885 l 1 313 885 l 1 313 735 l 1 131 735 m 1 -11 735 l 1 -11 885 l 1 131 885 l 1 131 735 l 1 223 -25 m 1 79 -25 l 1 79 741 l 1 223 741 l 1 223 -25 l 1 EndSplineSet EndChar StartChar: Upsilondieresis Encoding: 939 939 367 Width: 744 Flags: W Fore 495 735 m 1 353 735 l 1 353 885 l 1 495 885 l 1 495 735 l 1 313 735 m 1 171 735 l 1 171 885 l 1 313 885 l 1 313 735 l 1 718 741 m 1 409 296 l 1 409 -25 l 1 265 -25 l 1 265 296 l 1 -33 741 l 1 142 741 l 1 291 514 l 1 343 429 l 1 399 520 l 1 546 741 l 1 718 741 l 1 EndSplineSet EndChar StartChar: alphatonos Encoding: 940 940 368 Width: 656 Flags: W Fore 525 789 m 1 377 603 l 1 252 603 l 1 343 789 l 1 525 789 l 1 393 262 m 0 393 312 382.667 353.333 362 386 c 0 343.333 414.667 314.667 429 276 429 c 0 237.333 429 208.667 416 190 390 c 0 168 360 157 316 157 258 c 0 157 201.333 167.333 158.667 188 130 c 0 206.667 104 235.333 91 274 91 c 0 352.667 91 392.333 148 393 262 c 0 420 7 m 1 380.667 -22.3333 332.667 -37 276 -37 c 0 194 -37 132 -12.3333 90 37 c 0 48 87 27 162 27 262 c 0 27 308.667 33 351.333 45 390 c 0 57 428 75 459.333 99 484 c 0 123 508 149.667 525.667 179 537 c 0 207.667 549 240 555 276 555 c 1 308.667 553.667 336 549.333 358 542 c 1 381.333 532.667 402.333 519.333 421 502 c 1 421 545 l 1 543 545 l 1 543 99 l 1 543 93 l 1 577 117 l 1 613 -5 l 1 568.333 -27 531.667 -38 503 -38 c 0 486.333 -38 470 -33.3333 454 -24 c 0 438.667 -14.6667 427.333 -4.33333 420 7 c 1 EndSplineSet EndChar StartChar: epsilontonos Encoding: 941 941 369 Width: 570 Flags: W Fore 505 161 m 1 498.333 112.333 485 73.6667 465 45 c 1 446.333 16.3333 419.333 -4 384 -16 c 0 350 -28.6667 306.333 -35 253 -35 c 0 94.3333 -35 14.6667 22 14 136 c 0 14 178.667 25 211.333 47 234 c 0 57.6667 244.667 68.3333 253.667 79 261 c 1 65 270.333 54.3333 279 47 287 c 0 25 311.667 14 344.667 14 386 c 0 14 442.667 33.3333 485 72 513 c 0 111.333 541.667 171.667 556.333 253 557 c 2 262 557 l 2 313.333 557 355 550.667 387 538 c 0 421 524.667 447.333 504 466 476 c 0 484.667 447.333 497.667 409 505 361 c 1 378 361 l 1 374 391 360.667 411 338 421 c 0 316 431.667 286.667 437 250 437 c 0 182 437 147.333 418 146 380 c 1 148.667 357.333 156.667 341.333 170 332 c 0 185.333 320.667 211.667 315 249 315 c 2 320 315 l 1 320 206 l 1 249 206 l 2 209 206 182.667 200.667 170 190 c 0 156.667 180 148.667 163.667 146 141 c 1 147.333 103.667 182 85 250 85 c 0 286.667 85 316 90.3333 338 101 c 0 360.667 111 374 131 378 161 c 1 505 161 l 1 481 789 m 1 333 603 l 1 208 603 l 1 299 789 l 1 481 789 l 1 EndSplineSet EndChar StartChar: etatonos Encoding: 942 942 370 Width: 596 Flags: W Fore 505 789 m 1 357 603 l 1 232 603 l 1 323 789 l 1 505 789 l 1 171 494 m 1 177 505 l 2 180.333 510.333 189.333 517 204 525 c 0 218.667 533 236 540 256 546 c 0 277.333 552 298.667 555 320 555 c 0 358 555 392 548.333 422 535 c 0 451.333 521.667 475 500.667 493 472 c 0 510.333 444.667 520 411.667 522 373 c 1 523 320 l 1 523 -215 l 1 385 -177 l 1 385 316 l 2 385 348 382 371.667 376 387 c 0 364 415 339.333 429 302 429 c 0 227.333 429 189.667 380.667 189 284 c 1 189 -25 l 1 51 -25 l 1 51 414 l 1 52 421 l 1 54 426 l 1 18 418 l 1 -5 536 l 1 31.6667 549.333 61.6667 556 85 556 c 0 111.667 556 134 545.667 152 525 c 0 159.333 516.333 165.667 506 171 494 c 1 EndSplineSet EndChar StartChar: iotatonos Encoding: 943 943 371 Width: 334 Flags: W Fore 302 -1 m 1 251.333 -22.3333 210.667 -33 180 -33 c 0 137.333 -33 101.333 -19.3333 72 8 c 1 44.6667 35.3333 31 77 31 133 c 2 31 545 l 1 169 545 l 1 169 150 l 1 169 137 l 1 169 131 l 1 171 123 l 1 171.667 116.333 175.333 110.667 182 106 c 1 189 104 l 1 194 104 l 2 204.667 105.333 224.667 114 254 130 c 1 302 -1 l 1 329 789 m 1 181 603 l 1 56 603 l 1 147 789 l 1 329 789 l 1 EndSplineSet EndChar StartChar: upsilondieresistonos Encoding: 944 944 372 Width: 575 Flags: W Fore 482 881 m 1 327 693 l 1 205 693 l 1 295 881 l 1 482 881 l 1 422 539 m 1 280 539 l 1 280 689 l 1 422 689 l 1 422 539 l 1 240 539 m 1 98 539 l 1 98 689 l 1 240 689 l 1 240 539 l 1 503 198 m 2 503 156.667 500 124.667 494 102 c 0 488.667 78.6667 479.333 56.3333 466 35 c 1 456 23 433.333 6.33333 398 -15 c 1 368.667 -31 323.333 -39 262 -39 c 0 195.333 -39 147.667 -31 119 -15 c 1 85 5.66667 62.6667 22.3333 52 35 c 1 38.6667 54.3333 29.3333 76.6667 24 102 c 0 18 124.667 15 156.667 15 198 c 2 15 543 l 1 153 543 l 1 153 232 l 2 153 190 155.333 159 160 139 c 1 165.333 123 171 113.333 177 110 c 0 188.333 102 198 96.6667 206 94 c 0 218 89.3333 236 87 260 87 c 0 282.667 87 300 89.3333 312 94 c 0 321.333 97.3333 330.667 102.667 340 110 c 0 347.333 115.333 353.333 125 358 139 c 1 362.667 158.333 365 189.333 365 232 c 2 365 543 l 1 503 543 l 1 503 198 l 2 EndSplineSet EndChar StartChar: alpha Encoding: 945 945 373 Width: 656 Flags: W Fore 393 262 m 0 393 312 382.667 353.333 362 386 c 0 343.333 414.667 314.667 429 276 429 c 0 237.333 429 208.667 416 190 390 c 0 168 360 157 316 157 258 c 0 157 201.333 167.333 158.667 188 130 c 0 206.667 104 235.333 91 274 91 c 0 352.667 91 392.333 148 393 262 c 0 420 7 m 1 380.667 -22.3333 332.667 -37 276 -37 c 0 194 -37 132 -12.3333 90 37 c 0 48 87 27 162 27 262 c 0 27 308.667 33 351.333 45 390 c 0 57 428 75 459.333 99 484 c 0 123 508 149.667 525.667 179 537 c 0 207.667 549 240 555 276 555 c 1 308.667 553.667 336 549.333 358 542 c 1 381.333 532.667 402.333 519.333 421 502 c 1 421 545 l 1 543 545 l 1 543 99 l 1 543 93 l 1 577 117 l 1 613 -5 l 1 568.333 -27 531.667 -38 503 -38 c 0 486.333 -38 470 -33.3333 454 -24 c 0 438.667 -14.6667 427.333 -4.33333 420 7 c 1 EndSplineSet EndChar StartChar: beta Encoding: 946 946 374 Width: 576 Flags: W Fore 529 200 m 0 529 156.667 520 117 502 81 c 1 485.333 44.3333 459 15.3333 423 -6 c 0 387.667 -28 346 -39 298 -39 c 0 259.333 -39 226 -33.6667 198 -23 c 0 184.667 -17.6667 172.333 -11 161 -3 c 1 161 -223 l 1 25 -223 l 1 25 490 l 2 25 555.333 32.3333 605 47 639 c 1 59 663.667 74.3333 685.333 93 704 c 1 111.667 720.667 134.667 734 162 744 c 0 188 752.667 217.333 757 250 757 c 0 290 757 326 750.333 358 737 c 1 435.333 702.333 474.333 638 475 544 c 1 472.333 479.333 451 430.333 411 397 c 2 410 396 l 1 409 395 l 1 437.667 383 461.667 366.333 481 345 c 0 513 309 529 260.667 529 200 c 0 389 202 m 0 389 240.667 379.333 267.667 360 283 c 0 334 303 298 313 252 313 c 2 177 313 l 1 177 437 l 1 244 437 l 2 282.667 437 310.333 447.333 327 468 c 0 344.333 489.333 353 515.333 353 546 c 0 353 574.667 344.333 596.667 327 612 c 0 309.667 627.333 288.333 635 263 635 c 0 229.667 635 202.333 623.667 181 601 c 0 167.667 587.667 161 549.333 161 486 c 1 162 148 l 1 168.667 129.333 181.333 114.333 200 103 c 0 218 91 244.667 85 280 85 c 0 300.667 85 319 89 335 97 c 0 351 105 364 117.667 374 135 c 0 384 151.667 389 174 389 202 c 0 EndSplineSet EndChar StartChar: gamma Encoding: 947 947 375 Width: 591 Flags: W Fore 559 543 m 1 360 28 l 1 360 -223 l 1 224 -223 l 1 224 27 l 1 81 373 l 1 72.3333 400.333 65.3333 418.333 60 427 c 1 57 429 l 1 51 429 35 423.667 9 413 c 1 0 517 l 1 0 521 2.66667 526.667 8 534 c 0 13.3333 541.333 22 546.333 34 549 c 0 47.3333 553 58.3333 555 67 555 c 0 106.333 555 134.333 546.667 151 530 c 1 167.667 511.333 182.667 484.333 196 449 c 1 291 205 l 1 418 543 l 1 559 543 l 1 EndSplineSet EndChar StartChar: delta Encoding: 948 948 376 Width: 620 Flags: W Fore 554 250 m 0 554 186 544.333 132.667 525 90 c 1 506.333 45.3333 475 12 431 -10 c 0 390.333 -30.6667 338.333 -41 275 -41 c 0 195 -41 130.667 -16.6667 82 32 c 0 35.3333 79.3333 12 149.333 12 242 c 0 12 292.667 19.6667 337.333 35 376 c 0 51 414 71.3333 443.333 96 464 c 0 120 485.333 147 501.333 177 512 c 0 201.667 520 226 524 250 524 c 2 271 523 l 1 288 520 l 1 269 475 l 1 48 633 l 1 48 743 l 1 496 743 l 1 496 621 l 1 279 621 l 1 392 539 l 2 427.333 513 453.667 491.333 471 474 c 0 526.333 416.667 554 342 554 250 c 0 416 252 m 0 416 281.333 411.667 307 403 329 c 0 394.333 351.667 380 370.333 360 385 c 0 341.333 399.667 315 407 281 407 c 0 255.667 407 233.667 400.333 215 387 c 1 195 374.333 180 356.333 170 333 c 1 158 309 152 281.333 152 250 c 0 152 144 193 91 275 91 c 0 311 91 339.333 98.6667 360 114 c 0 380 128.667 394.333 148 403 172 c 0 411.667 198 416 224.667 416 252 c 0 EndSplineSet EndChar StartChar: epsilon Encoding: 949 949 377 Width: 570 Flags: W Fore 505 161 m 1 498.333 112.333 485 73.6667 465 45 c 1 446.333 16.3333 419.333 -4 384 -16 c 0 350 -28.6667 306.333 -35 253 -35 c 0 94.3333 -35 14.6667 22 14 136 c 0 14 178.667 25 211.333 47 234 c 0 57.6667 244.667 68.3333 253.667 79 261 c 1 65 270.333 54.3333 279 47 287 c 0 25 311.667 14 344.667 14 386 c 0 14 442.667 33.3333 485 72 513 c 0 111.333 541.667 171.667 556.333 253 557 c 2 262 557 l 2 313.333 557 355 550.667 387 538 c 0 421 524.667 447.333 504 466 476 c 0 484.667 447.333 497.667 409 505 361 c 1 378 361 l 1 374 391 360.667 411 338 421 c 0 316 431.667 286.667 437 250 437 c 0 182 437 147.333 418 146 380 c 1 148.667 357.333 156.667 341.333 170 332 c 0 185.333 320.667 211.667 315 249 315 c 2 320 315 l 1 320 206 l 1 249 206 l 2 209 206 182.667 200.667 170 190 c 0 156.667 180 148.667 163.667 146 141 c 1 147.333 103.667 182 85 250 85 c 0 286.667 85 316 90.3333 338 101 c 0 360.667 111 374 131 378 161 c 1 505 161 l 1 EndSplineSet EndChar StartChar: zeta Encoding: 950 950 378 Width: 522 Flags: W Fore 465 -42 m 0 465 -83.3333 448.667 -144.667 416 -226 c 1 292 -180 l 1 320.667 -120 335 -81.3333 335 -64 c 0 335 -48.6667 332.667 -39 328 -35 c 0 324 -31 312.667 -29 294 -29 c 0 232 -29 167.667 -7.33333 101 36 c 0 42.3333 73.3333 13 134.667 13 220 c 0 13 312.667 35.6667 397.667 81 475 c 0 115.667 533 156 581.667 202 621 c 1 29 621 l 1 29 743 l 1 435 743 l 1 435 643 l 1 351.667 595.667 283.667 535.667 231 463 c 1 180.333 391 155 315.333 155 236 c 0 155 194.667 167.333 163 192 141 c 1 210.667 125.667 227.667 115.667 243 111 c 0 255 106.333 275.667 102.333 305 99 c 0 329 97 348.667 94.3333 364 91 c 0 388 86.3333 409 76 427 60 c 1 452.333 32.6667 465 -1.33333 465 -42 c 0 EndSplineSet EndChar StartChar: eta Encoding: 951 951 379 Width: 586 Flags: W Fore 171 494 m 1 177 505 l 2 180.333 510.333 189.333 517 204 525 c 0 218.667 533 236 540 256 546 c 0 277.333 552 298.667 555 320 555 c 0 358 555 392 548.333 422 535 c 0 451.333 521.667 475 500.667 493 472 c 0 510.333 444.667 520 411.667 522 373 c 1 523 320 l 1 523 -215 l 1 385 -177 l 1 385 316 l 2 385 348 382 371.667 376 387 c 0 364 415 339.333 429 302 429 c 0 227.333 429 189.667 380.667 189 284 c 1 189 -25 l 1 51 -25 l 1 51 414 l 1 52 421 l 1 54 426 l 1 18 418 l 1 -5 536 l 1 31.6667 549.333 61.6667 556 85 556 c 0 111.667 556 134 545.667 152 525 c 0 159.333 516.333 165.667 506 171 494 c 1 EndSplineSet EndChar StartChar: theta Encoding: 952 952 380 Width: 586 Flags: W Fore 515 360 m 0 515 265.333 506.333 189 489 131 c 0 470.333 71 442 27.6667 404 1 c 1 365.333 -24.3333 320 -37 268 -37 c 0 227.333 -37 192 -30 162 -16 c 0 130 -1.33333 103.667 22 83 54 c 0 60.3333 88.6667 44.6667 130.333 36 179 c 1 25.3333 224.333 20 284.667 20 360 c 0 20 437.333 28 504.667 44 562 c 1 58.6667 619.333 85 666 123 702 c 0 160.333 737.333 208.667 755 268 755 c 0 326.667 755 374.667 737.333 412 702 c 0 450 666 476.667 619 492 561 c 0 507.333 506.333 515 439.333 515 360 c 0 381 427 m 1 379 486.333 370 536.333 354 577 c 0 338.667 614.333 310 633 268 633 c 0 232 633 205.333 616.333 188 583 c 0 168.667 548.333 158 496.333 156 427 c 1 381 427 l 1 381 305 m 1 156 305 l 1 157.333 262.333 161 226.333 167 197 c 0 173 163 185 135 203 113 c 0 218.333 95.6667 240 87 268 87 c 0 294 87 314.667 94.6667 330 110 c 0 347.333 127.333 360 153 368 187 c 0 374.667 215.667 379 255 381 305 c 1 EndSplineSet EndChar StartChar: iota Encoding: 953 953 381 Width: 346 Flags: W Fore 302 -1 m 1 251.333 -22.3333 210.667 -33 180 -33 c 0 137.333 -33 101.333 -19.3333 72 8 c 1 44.6667 35.3333 31 77 31 133 c 2 31 545 l 1 169 545 l 1 169 150 l 1 169 137 l 1 169 131 l 1 171 123 l 1 171.667 116.333 175.333 110.667 182 106 c 1 189 104 l 1 194 104 l 2 204.667 105.333 224.667 114 254 130 c 1 302 -1 l 1 EndSplineSet EndChar StartChar: kappa Encoding: 954 954 382 Width: 576 Flags: W Fore 543 -25 m 1 374 -25 l 1 211 227 l 1 179 196 l 1 179 -25 l 1 41 -25 l 1 41 543 l 1 179 543 l 1 179 369 l 1 351 543 l 1 537 543 l 1 310 323 l 1 543 -25 l 1 EndSplineSet EndChar StartChar: lambda Encoding: 955 955 383 Width: 620 Flags: W Fore 586 2 m 1 539.333 -22.6667 502.333 -35 475 -35 c 0 429 -35 398.667 -13.6667 384 29 c 1 371 59 l 1 283 295 l 2 267 338.333 255 379 247 417 c 1 296 415 l 1 278 352 l 1 271 330 l 1 258 294 l 1 144 -23 l 1 -6 -23 l 1 201 521 l 1 197 534 l 2 189.667 558.667 182 577.667 174 591 c 0 168 601 159 609.667 147 617 c 0 141.667 619.667 132.667 621 120 621 c 2 96 619 l 1 82 616 l 1 66 613 l 1 37 609 l 1 53 738 l 1 86.3333 750.667 112.667 757 132 757 c 0 160 757 182.333 752.667 199 744 c 0 215.667 736 234 721 254 699 c 1 271.333 678.333 285 656 295 632 c 0 299 624 311 593 331 539 c 2 483 129 l 1 496 103 l 1 502 98 l 1 513 100 l 1 528 107 l 1 552 120 l 1 586 2 l 1 EndSplineSet EndChar StartChar: uni03BC Encoding: 956 956 384 Width: 667 Flags: W Fore 595 12 m 1 573 -3.33333 555.667 -13.6667 543 -19 c 0 533 -23 522 -25 510 -25 c 0 477.333 -25 452.667 -15.6667 436 3 c 0 430 9 425.333 15.3333 422 22 c 1 413.333 11.3333 401.667 1.33333 387 -8 c 0 359.667 -26 329 -35 295 -35 c 0 261 -35 231.667 -28 207 -14 c 2 190 -3 l 1 190 -225 l 1 52 -225 l 1 52 543 l 1 190 543 l 1 190 208 l 2 190 159.333 211.333 122.667 254 98 c 0 263.333 92 278 89 298 89 c 0 334.667 89 360 101.667 374 127 c 2 386 148 l 1 390 155 l 2 392 158.333 393 160.333 393 161 c 1 397 177 l 1 398 208 l 1 398 543 l 1 534 543 l 1 534 152 l 2 534 124.667 535.333 107.333 538 100 c 1 532 100 528.667 101.333 528 104 c 1 528 105 l 1 559 91 l 1 595 12 l 1 EndSplineSet EndChar StartChar: nu Encoding: 957 957 385 Width: 564 Flags: W Fore 524 543 m 1 309 -25 l 1 193 -25 l 1 -22 543 l 1 124 543 l 1 242 216 l 1 259 164 l 1 262 154 l 1 264 148 l 1 251 195 l 1 250.333 190.333 248.333 183.333 245 174 c 1 240 156 l 1 238 150 l 1 243 165 l 1 251 188 l 2 254.333 197.333 257.333 205.333 260 212 c 1 380 543 l 1 524 543 l 1 EndSplineSet EndChar StartChar: xi Encoding: 958 958 386 Width: 530 Flags: W Fore 466 -39 m 0 466 -81.6667 449.333 -144 416 -226 c 1 297 -181 l 1 322.333 -111 335.667 -69 337 -55 c 1 338 -46 l 1 338 -36.6667 336.667 -31.6667 334 -31 c 0 326 -27 304.333 -25 269 -25 c 2 250 -25 l 2 203.333 -25 161 -18.6667 123 -6 c 0 83 8 51 31 27 63 c 128 3 95 -9 137 -9 189 c 1 -5.66667 227 -4.33681e-19 256 8 276 c 0 16.6667 297.333 31 317.333 51 336 c 2 53 338 l 2 69 352.667 87.6667 366 109 378 c 1 97.6667 384 87 393 77 405 c 1 50.3333 433.667 37 470.667 37 516 c 0 37 551.333 46 583 64 611 c 1 68 616 l 1 73 623 l 1 13 623 l 1 13 743 l 1 435 743 l 1 435 623 l 1 244 623 l 2 230.667 623 218.333 618.333 207 609 c 0 193 598.333 182.667 584.333 176 567 c 1 167.333 551.667 163 534.667 163 516 c 0 163 477.333 187.333 450.667 236 436 c 1 247.333 431.333 269.333 429 302 429 c 2 409 429 l 1 409 315 l 1 274 315 l 2 247.333 315 222 310 198 300 c 0 176.667 291.333 158.667 277 144 257 c 1 131.333 241.667 125 222 125 198 c 0 125 174 131.333 155.333 144 142 c 1 159.333 124 176.667 112.333 196 107 c 1 218.667 99 240.667 95 262 95 c 0 316.667 95 353 92.6667 371 88 c 1 403.667 82 427 68.3333 441 47 c 1 457.667 25 466 -3.66667 466 -39 c 0 EndSplineSet EndChar StartChar: omicron Encoding: 959 959 387 Width: 610 Flags: W Fore 543 260 m 0 543 197.333 531.667 144.667 509 102 c 1 487 56.6667 455.333 22 414 -2 c 0 372.667 -25.3333 326.667 -37 276 -37 c 0 228 -37 183.333 -26.3333 142 -5 c 1 100.667 17.6667 68.3333 51.6667 45 97 c 1 21 141 9 195.333 9 260 c 0 9 357.333 34 431 84 481 c 0 134.667 530.333 198.667 555 276 555 c 0 353.333 555 417.333 530.333 468 481 c 0 518 431 543 357.333 543 260 c 0 403 260 m 0 403 286.667 400 311.667 394 335 c 0 388.667 354.333 379.667 372.667 367 390 c 0 357.667 404 344.667 414.667 328 422 c 0 313.333 429.333 296 433 276 433 c 128 256 433 238.667 429.333 224 422 c 0 207.333 414.667 194.333 404 185 390 c 0 173 372.667 164.333 354.333 159 335 c 0 152.333 311 149 286 149 260 c 0 149 200.667 161 157 185 129 c 1 207 101 237.333 87 276 87 c 0 313.333 87 343.667 101 367 129 c 0 391 157 403 200.667 403 260 c 0 EndSplineSet EndChar StartChar: pi Encoding: 960 960 388 Width: 721 Flags: W Fore 647 -1 m 1 582 -23 l 2 568.667 -27 555.667 -29 543 -29 c 0 497.667 -29 466.333 -15.3333 449 12 c 0 435 34 428 68 428 114 c 2 428 425 l 1 242 425 l 1 242 -24 l 1 98 -28 l 1 99 425 l 1 29 425 l 1 28 545 l 1 630 545 l 1 630 425 l 1 566 425 l 1 566 116 l 2 566 98.6667 567 88.6667 569 86 c 1 570 88 l 1 571 89 l 1 573 89 l 1 574 88 l 1 575.333 89.3333 579.333 92.3333 586 97 c 2 616 119 l 1 647 -1 l 1 EndSplineSet EndChar StartChar: rho Encoding: 961 961 389 Width: 626 Flags: W Fore 566 270 m 0 566 201.333 557.333 149.667 540 115 c 0 524 83 508.333 59.3333 493 44 c 0 478.333 28.6667 455 11.6667 423 -7 c 1 388.333 -25.6667 346.333 -35 297 -35 c 0 262.333 -35 230 -28.3333 200 -15 c 1 170 2 l 1 170 -225 l 1 32 -225 l 1 32 270 l 2 32 370 58.6667 443 112 489 c 0 163.333 534.333 225 557 297 557 c 0 377 557 442 531 492 479 c 0 541.333 427.667 566 358 566 270 c 0 426 264 m 0 426 321.333 413.333 364.333 388 393 c 0 364 421 333.667 435 297 435 c 0 259 435 229 421.333 207 394 c 1 182.333 367.333 170 323.333 170 262 c 0 170 200.667 182.333 156.667 207 130 c 1 230.333 102.667 260.333 89 297 89 c 0 333 89 363.333 102.333 388 129 c 1 413.333 159 426 204 426 264 c 0 EndSplineSet EndChar StartChar: sigma1 Encoding: 962 962 390 Width: 595 Flags: W Fore 526 299 m 1 385 299 l 1 385 350.333 375.667 385.333 357 404 c 1 335.667 423.333 306.667 433 270 433 c 0 248.667 433 228.667 428 210 418 c 0 189.333 406.667 173.333 390 162 368 c 1 149.333 346 143 314.667 143 274 c 0 143 247.333 147 224 155 204 c 0 170.333 168.667 206.667 142 264 124 c 0 276.667 120 294 117.667 316 117 c 1 367 112 l 2 421 105.333 459.667 92.6667 483 74 c 0 511 51.3333 525 17.3333 525 -28 c 0 525 -47.3333 521 -69 513 -93 c 1 467 -214 l 1 327 -165 l 1 345.667 -125 362.667 -81.3333 378 -34 c 1 378 -31.3333 372 -30 360 -30 c 1 296 -24 l 2 264 -22 235.333 -18 210 -12 c 0 182 -4.66667 148.667 13.3333 110 42 c 1 78.6667 63.3333 51.3333 96 28 140 c 1 7.33333 176 -3 221.333 -3 276 c 0 -3 336 9.33333 387.333 34 430 c 0 60 473.333 94.3333 506 137 528 c 0 179 550 226 561 278 561 c 0 348.667 561 407.667 540 455 498 c 1 502.333 454.667 526 388.333 526 299 c 1 EndSplineSet EndChar StartChar: sigma Encoding: 963 963 391 Width: 676 Flags: W Fore 615 419 m 1 501 419 l 1 529 371 543 318 543 260 c 0 543 197.333 531.667 144.667 509 102 c 1 487 56.6667 455.333 22 414 -2 c 0 372.667 -25.3333 326.667 -37 276 -37 c 0 228 -37 183.333 -26.3333 142 -5 c 1 100.667 17.6667 68.3333 51.6667 45 97 c 1 21 141 9 195.333 9 260 c 0 9 357.333 34 431 84 481 c 0 134.667 530.333 198.667 555 276 555 c 0 296.667 555 314 553.667 328 551 c 1 615 551 l 1 615 419 l 1 403 260 m 0 403 286.667 400 311.667 394 335 c 0 388.667 354.333 379.667 372.667 367 390 c 0 357.667 404 344.667 414.667 328 422 c 0 313.333 429.333 296 433 276 433 c 128 256 433 238.667 429.333 224 422 c 0 207.333 414.667 194.333 404 185 390 c 0 173 372.667 164.333 354.333 159 335 c 0 152.333 311 149 286 149 260 c 0 149 200.667 161 157 185 129 c 1 207 101 237.333 87 276 87 c 0 313.333 87 343.667 101 367 129 c 0 391 157 403 200.667 403 260 c 0 EndSplineSet EndChar StartChar: tau Encoding: 964 964 392 Width: 592 Flags: W Fore 519 425 m 1 319 425 l 1 319 152 l 1 321 114 l 1 321.667 111.333 323.667 109 327 107 c 1 344 105 l 1 352 106 l 1 396 115 l 1 426 -13 l 1 364 -26 l 1 350 -28 338 -29 328 -29 c 0 293.333 -29 264.667 -22.6667 242 -10 c 0 218 3.33333 202 21 194 43 c 0 190 52.3333 186.667 65.3333 184 82 c 1 181 143 l 1 181 144 l 1 181 425 l 1 17 425 l 1 17 543 l 1 519 543 l 1 519 425 l 1 EndSplineSet EndChar StartChar: upsilon Encoding: 965 965 393 Width: 575 Flags: W Fore 503 198 m 2 503 156.667 500 124.667 494 102 c 0 488.667 78.6667 479.333 56.3333 466 35 c 1 456 23 433.333 6.33333 398 -15 c 1 368.667 -31 323.333 -39 262 -39 c 0 195.333 -39 147.667 -31 119 -15 c 1 85 5.66667 62.6667 22.3333 52 35 c 1 38.6667 54.3333 29.3333 76.6667 24 102 c 0 18 124.667 15 156.667 15 198 c 2 15 543 l 1 153 543 l 1 153 232 l 2 153 190 155.333 159 160 139 c 1 165.333 123 171 113.333 177 110 c 0 188.333 102 198 96.6667 206 94 c 0 218 89.3333 236 87 260 87 c 0 282.667 87 300 89.3333 312 94 c 0 321.333 97.3333 330.667 102.667 340 110 c 0 347.333 115.333 353.333 125 358 139 c 1 362.667 158.333 365 189.333 365 232 c 2 365 543 l 1 503 543 l 1 503 198 l 2 EndSplineSet EndChar StartChar: phi Encoding: 966 966 394 Width: 801 Flags: W Fore 588 250 m 0 588 278 582.333 304 571 328 c 0 559.667 352.667 543 371.667 521 385 c 0 498.333 399.667 473 407 445 407 c 1 445 96 l 1 477 96 503 103 523 117 c 0 543.667 131 559.667 150 571 174 c 1 582.333 195.333 588 220.667 588 250 c 0 180 528 m 1 260 424 l 1 223.333 398 197 371.667 181 345 c 1 163.667 313.667 155 283.333 155 254 c 0 155 226 162 199.667 176 175 c 0 187.333 153 206 133.667 232 117 c 1 256 103 283 96 313 96 c 1 313 547 l 1 421 547 l 2 485.667 547 540.333 532.667 585 504 c 1 629.667 477.333 664 440.333 688 393 c 0 710.667 349 722 301 722 249 c 0 722 201 711.667 155 691 111 c 0 671.667 69.6667 641 34.3333 599 5 c 1 557.667 -21.6667 509 -35 453 -35 c 2 446 -35 l 1 446 -225 l 1 308 -225 l 1 308 -35 l 1 311 -35 l 2 267 -35 226 -27.3333 188 -12 c 0 153.333 2 122.667 23.3333 96 52 c 1 72 76 53 106.667 39 144 c 0 27 179.333 21 214.667 21 250 c 0 21 288 27.6667 325 41 361 c 0 53 396.333 72.3333 429.667 99 461 c 0 117.667 483 144.667 505.333 180 528 c 1 EndSplineSet EndChar StartChar: chi Encoding: 967 967 395 Width: 632 Flags: W Fore 598 -217 m 1 568 -230.333 542.667 -237 522 -237 c 2 514 -237 l 2 485.333 -237 458.333 -226.333 433 -205 c 0 413 -189 394.333 -165.333 377 -134 c 1 299 24 l 1 132 -225 l 1 -32 -225 l 1 219 161 l 1 77 408 l 1 69 420.667 63.6667 428 61 430 c 0 59 432 53.3333 433 44 433 c 1 34 430.333 16.6667 429 -8 429 c 1 -8 554 l 1 45 561 l 1 73 563 l 1 100.333 563 123.333 557 142 545 c 1 160.667 535 177.333 517 192 491 c 1 302 287 l 1 440 543 l 1 593 543 l 1 384 160 l 1 509 -79 l 1 524 -99 l 2 526 -101 531 -102 539 -102 c 2 552 -100 l 2 556.667 -100 572 -94.6667 598 -84 c 1 598 -217 l 1 EndSplineSet EndChar StartChar: psi Encoding: 968 968 396 Width: 722 Flags: W Fore 645 214 m 2 645 134 620 73.3333 570 32 c 0 526 -4 469 -23.3333 399 -26 c 1 399 -225 l 1 263 -225 l 1 263 -26 l 1 193 -23.3333 136 -4 92 32 c 0 42 72.6667 17 133.333 17 214 c 2 17 543 l 1 157 543 l 1 157 242 l 2 157 204.667 161.333 175.333 170 154 c 0 178 135.333 190.667 121.333 208 112 c 1 224 104.667 242.333 100 263 98 c 1 263 525 l 1 399 525 l 1 399 98 l 1 419.667 100 436.667 104 450 110 c 0 466.667 116.667 479.667 130.333 489 151 c 1 499.667 171 505 201.333 505 242 c 2 505 543 l 1 645 543 l 1 645 214 l 2 EndSplineSet EndChar StartChar: omega Encoding: 969 969 397 Width: 800 Flags: W Fore 729 241 m 0 729 201 724.667 166 716 136 c 0 706.667 102 693.333 73 676 49 c 0 657.333 23 634.667 2.66667 608 -12 c 0 581.333 -26.6667 550 -34 514 -34 c 0 474.667 -34 440.333 -24.3333 411 -5 c 0 395.667 5.66667 382 18.6667 370 34 c 1 358 18.6667 344.333 5.66667 329 -5 c 0 299.667 -24.3333 265.333 -34 226 -34 c 0 188.667 -34 157.667 -26.6667 133 -12 c 1 105 2 81.6667 22.3333 63 49 c 0 45.6667 74.3333 32.6667 103.667 24 137 c 0 15.3333 166.333 11 201 11 241 c 0 11 275.667 16.6667 313.667 28 355 c 0 40 397.667 54.6667 435 72 467 c 0 92 503.667 116 532.667 144 554 c 1 273 513 l 1 229 465 200.333 428 187 402 c 1 173 377.333 162 349 154 317 c 0 148 290.333 145 263 145 235 c 0 145 192.333 152.333 155.667 167 125 c 1 179.667 101 200 88.6667 228 88 c 1 249.333 89.3333 260.333 90.3333 261 91 c 2 282 107 l 1 296 119.667 303 135 303 153 c 2 303 401 l 1 437 401 l 1 437 153 l 2 437 135.667 443.667 120.333 457 107 c 1 479 91 l 1 511 88 l 1 539 88 559.667 100.333 573 125 c 1 587.667 155 595 191.667 595 235 c 0 595 262.333 592 289.667 586 317 c 0 579.333 344.333 568.667 372.667 554 402 c 1 537.333 430.667 508.667 467.333 468 512 c 1 597 555 l 1 625 531 648.667 501.667 668 467 c 0 685.333 435 700 397.667 712 355 c 0 723.333 315 729 277 729 241 c 0 EndSplineSet EndChar StartChar: iotadieresis Encoding: 970 970 398 Width: 372 Flags: W Fore 276 595 m 1 134 595 l 1 134 745 l 1 276 745 l 1 276 595 l 1 94 595 m 1 -48 595 l 1 -48 745 l 1 94 745 l 1 94 595 l 1 314 -1 m 1 263.333 -22.3333 222.667 -33 192 -33 c 0 146 -33 110 -19 84 9 c 1 56.6667 36.3333 43 77.6667 43 133 c 2 43 545 l 1 181 545 l 1 181 150 l 1 181 137 l 1 182 129 l 1 183 123 l 1 183.667 116.333 187.333 110.667 194 106 c 1 201 104 l 1 206 104 l 2 216.667 105.333 236.667 114 266 130 c 1 314 -1 l 1 EndSplineSet EndChar StartChar: upsilondieresis Encoding: 971 971 399 Width: 575 Flags: W Fore 423 597 m 1 281 597 l 1 281 747 l 1 423 747 l 1 423 597 l 1 241 597 m 1 99 597 l 1 99 747 l 1 241 747 l 1 241 597 l 1 503 198 m 2 503 156.667 500 124.667 494 102 c 0 488.667 78.6667 479.333 56.3333 466 35 c 1 456 23 433.333 6.33333 398 -15 c 1 368.667 -31 323.333 -39 262 -39 c 0 195.333 -39 147.667 -31 119 -15 c 1 85 5.66667 62.6667 22.3333 52 35 c 1 38.6667 54.3333 29.3333 76.6667 24 102 c 0 18 124.667 15 156.667 15 198 c 2 15 543 l 1 153 543 l 1 153 232 l 2 153 190 155.333 159 160 139 c 1 165.333 123 171 113.333 177 110 c 0 188.333 102 198 96.6667 206 94 c 0 218 89.3333 236 87 260 87 c 0 282.667 87 300 89.3333 312 94 c 0 321.333 97.3333 330.667 102.667 340 110 c 0 347.333 115.333 353.333 125 358 139 c 1 362.667 158.333 365 189.333 365 232 c 2 365 543 l 1 503 543 l 1 503 198 l 2 EndSplineSet EndChar StartChar: omicrontonos Encoding: 972 972 400 Width: 610 Flags: W Fore 505 789 m 1 357 603 l 1 232 603 l 1 323 789 l 1 505 789 l 1 543 260 m 0 543 197.333 531.667 144.667 509 102 c 1 487 56.6667 455.333 22 414 -2 c 0 372.667 -25.3333 326.667 -37 276 -37 c 0 228 -37 183.333 -26.3333 142 -5 c 1 100.667 17.6667 68.3333 51.6667 45 97 c 1 21 141 9 195.333 9 260 c 0 9 357.333 34 431 84 481 c 0 134.667 530.333 198.667 555 276 555 c 0 353.333 555 417.333 530.333 468 481 c 0 518 431 543 357.333 543 260 c 0 403 260 m 0 403 286.667 400 311.667 394 335 c 0 388.667 354.333 379.667 372.667 367 390 c 0 357.667 404 344.667 414.667 328 422 c 0 313.333 429.333 296 433 276 433 c 128 256 433 238.667 429.333 224 422 c 0 207.333 414.667 194.333 404 185 390 c 0 173 372.667 164.333 354.333 159 335 c 0 152.333 311 149 286 149 260 c 0 149 200.667 161 157 185 129 c 1 207 101 237.333 87 276 87 c 0 313.333 87 343.667 101 367 129 c 0 391 157 403 200.667 403 260 c 0 EndSplineSet EndChar StartChar: upsilontonos Encoding: 973 973 401 Width: 575 Flags: W Fore 503 198 m 2 503 156.667 500 124.667 494 102 c 0 488.667 78.6667 479.333 56.3333 466 35 c 1 456 23 433.333 6.33333 398 -15 c 1 368.667 -31 323.333 -39 262 -39 c 0 195.333 -39 147.667 -31 119 -15 c 1 85 5.66667 62.6667 22.3333 52 35 c 1 38.6667 54.3333 29.3333 76.6667 24 102 c 0 18 124.667 15 156.667 15 198 c 2 15 543 l 1 153 543 l 1 153 232 l 2 153 190 155.333 159 160 139 c 1 165.333 123 171 113.333 177 110 c 0 188.333 102 198 96.6667 206 94 c 0 218 89.3333 236 87 260 87 c 0 282.667 87 300 89.3333 312 94 c 0 321.333 97.3333 330.667 102.667 340 110 c 0 347.333 115.333 353.333 125 358 139 c 1 362.667 158.333 365 189.333 365 232 c 2 365 543 l 1 503 543 l 1 503 198 l 2 481 789 m 1 333 603 l 1 208 603 l 1 299 789 l 1 481 789 l 1 EndSplineSet EndChar StartChar: omegatonos Encoding: 974 974 402 Width: 800 Flags: W Fore 729 241 m 0 729 201 724.667 166 716 136 c 0 706.667 102 693.333 73 676 49 c 0 657.333 23 634.667 2.66667 608 -12 c 0 581.333 -26.6667 550 -34 514 -34 c 0 474.667 -34 440.333 -24.3333 411 -5 c 0 395.667 5.66667 382 18.6667 370 34 c 1 358 18.6667 344.333 5.66667 329 -5 c 0 299.667 -24.3333 265.333 -34 226 -34 c 0 188.667 -34 157.667 -26.6667 133 -12 c 1 105 2 81.6667 22.3333 63 49 c 0 45.6667 74.3333 32.6667 103.667 24 137 c 0 15.3333 166.333 11 201 11 241 c 0 11 275.667 16.6667 313.667 28 355 c 0 40 397.667 54.6667 435 72 467 c 0 92 503.667 116 532.667 144 554 c 1 273 513 l 1 229 465 200.333 428 187 402 c 1 173 377.333 162 349 154 317 c 0 148 290.333 145 263 145 235 c 0 145 192.333 152.333 155.667 167 125 c 1 179.667 101 200 88.6667 228 88 c 1 249.333 89.3333 260.333 90.3333 261 91 c 2 282 107 l 1 296 119.667 303 135 303 153 c 2 303 401 l 1 437 401 l 1 437 153 l 2 437 135.667 443.667 120.333 457 107 c 1 479 91 l 1 511 88 l 1 539 88 559.667 100.333 573 125 c 1 587.667 155 595 191.667 595 235 c 0 595 262.333 592 289.667 586 317 c 0 579.333 344.333 568.667 372.667 554 402 c 1 537.333 430.667 508.667 467.333 468 512 c 1 597 555 l 1 625 531 648.667 501.667 668 467 c 0 685.333 435 700 397.667 712 355 c 0 723.333 315 729 277 729 241 c 0 601 789 m 1 453 603 l 1 328 603 l 1 419 789 l 1 601 789 l 1 EndSplineSet EndChar StartChar: uni0400 Encoding: 1024 1024 403 Width: 667 Flags: W Ref: 69 69 N 1 0 0 1 0 0 Ref: 96 96 N 1 0 0 1 228 222 EndChar StartChar: afii10023 Encoding: 1025 1025 404 Width: 709 Flags: W Fore 232 314 m 1 232 125 l 1 627 125 l 1 627 0 l 1 82 0 l 1 82 729 l 1 609 729 l 1 609 604 l 1 232 604 l 1 232 439 l 1 581 439 l 1 581 314 l 1 232 314 l 1 310 922 m 1 310 800 l 1 200 800 l 1 200 922 l 1 310 922 l 1 496 922 m 1 496 800 l 1 386 800 l 1 386 922 l 1 496 922 l 1 EndSplineSet EndChar StartChar: afii10051 Encoding: 1026 1026 405 Width: 790 Flags: W Fore 352 504 m 1 540 504 l 2 607.333 504 663 482.333 707 439 c 0 741 405.667 758 367.333 758 324 c 2 758 323 l 1 758 0 l 1 752 -44.6667 744 -75.3333 734 -92 c 0 720.667 -115.333 698.667 -133.333 668 -146 c 1 630.667 -154.667 594.333 -160 559 -162 c 2 538 -163 l 1 468 -164 l 1 468 -70 l 1 528 -70 l 2 572 -69.3333 598 -51.3333 606 -16 c 1 608 0 l 1 608 317 l 2 608 349 589.667 368.667 553 376 c 1 528 379 l 1 353 379 l 1 353 0 l 1 202 0 l 1 202 605 l 1 14 605 l 1 14 729 l 1 536 729 l 1 536 605 l 1 352 605 l 1 352 504 l 1 EndSplineSet EndChar StartChar: afii10052 Encoding: 1027 1027 406 Width: 611 Flags: W Fore 224 0 m 1 74 0 l 1 74 729 l 1 586 729 l 1 586 604 l 1 224 604 l 1 224 0 l 1 428 979 m 1 302 829 l 1 232 829 l 1 302 979 l 1 428 979 l 1 EndSplineSet EndChar StartChar: afii10053 Encoding: 1028 1028 407 Width: 722 Flags: W Fore 488 311 m 1 196 311 l 1 205.333 207 244 141.667 312 115 c 0 332 107 354 103 378 103 c 0 452 103 501.333 133 526 193 c 0 532.667 209.667 537 228.333 539 249 c 1 685 249 l 1 679.667 150.333 639 76.3333 563 27 c 0 511 -6.33333 448 -23 374 -23 c 0 259.333 -23 172.333 19.6667 113 105 c 0 67 171 44 255.333 44 358 c 0 44 496.667 84 600 164 668 c 0 221.333 716.667 292.667 741 378 741 c 0 485.333 741 568 705.667 626 635 c 2 633 626 l 2 661 589.333 677.333 541.333 682 482 c 1 539 482 l 1 531 516.667 520 542.667 506 560 c 0 478 595.333 437 613 383 613 c 0 309.667 613 256.333 580 223 514 c 0 211 491.333 202.333 465.333 197 436 c 1 488 436 l 1 488 311 l 1 EndSplineSet EndChar StartChar: afii10054 Encoding: 1029 1029 408 Width: 667 Flags: W Fore 607 507 m 1 467 507 l 1 462.333 574.333 420.667 612 342 620 c 1 314 621 l 2 254 621 215 603.333 197 568 c 2 196 567 l 2 190.667 556.333 188 544.333 188 531 c 0 188 500.333 202 478 230 464 c 0 245.333 456 266.667 449 294 443 c 0 294.667 443 295.333 442.667 296 442 c 2 326 436 l 1 440 414 l 2 536.667 395.333 596.667 355.667 620 295 c 0 628.667 272.333 633 245 633 213 c 0 633 119.667 592.333 53 511 13 c 0 463 -11 404 -23 334 -23 c 0 190.667 -23 97.6667 24.3333 55 119 c 0 41.6667 147.667 34 180.667 32 218 c 1 178 218 l 1 182 151.333 221 112 295 100 c 1 342 97 l 1 414 97 460 117 480 157 c 0 486 168.333 489 181 489 195 c 0 489 233.667 469.667 261.667 431 279 c 0 411.667 287.667 385.333 295 352 301 c 2 250 321 l 2 154 339 92.6667 372.333 66 421 c 2 65 422 l 1 65 423 l 1 64 424 l 2 51.3333 448.667 45 479.667 45 517 c 0 45 612.333 86.6667 678 170 714 c 0 212 732 262.333 741 321 741 c 0 427 741 505.333 713.333 556 658 c 0 590 620.667 607 570.333 607 507 c 1 EndSplineSet EndChar StartChar: afii10055 Encoding: 1030 1030 409 Width: 278 Flags: W Ref: 73 73 N 1 0 0 1 0 0 EndChar StartChar: afii10056 Encoding: 1031 1031 410 Width: 278 Flags: W Ref: 73 73 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 -27 179 EndChar StartChar: afii10057 Encoding: 1032 1032 411 Width: 556 Flags: W Ref: 74 74 N 1 0 0 1 0 0 EndChar StartChar: afii10058 Encoding: 1033 1033 412 Width: 1110 Flags: W Fore 507 0 m 1 507 604 l 1 285 604 l 1 285 414 l 2 285 195.333 235.667 63.3333 137 18 c 0 110.333 6 80 0 46 0 c 1 46 145 l 1 82.6667 144.333 107.333 176 120 240 c 0 130 287.333 135 360.667 135 460 c 2 135 461 l 1 135 729 l 1 657 729 l 1 657 435 l 1 844 435 l 2 926.667 435 987.667 403 1027 339 c 0 1051.67 299 1064 250.333 1064 193 c 2 1064 192 l 2 1064 126 1045 79 1007 51 c 2 1006 50 l 2 988 37.3333 961.667 25.3333 927 14 c 0 898.333 4.66667 865.667 4.33681e-19 829 0 c 2 507 0 l 1 657 310 m 1 657 125 l 1 797 125 l 2 844.333 125 874 127.667 886 133 c 2 887 134 l 1 888 134 l 2 895.333 138 901 143.667 905 151 c 0 909 159 911.667 169.667 913 183 c 1 914 200 l 1 914 201 l 2 914 268.333 881 304.333 815 309 c 2 814 309 l 1 813 310 l 1 797 310 l 1 657 310 l 1 EndSplineSet EndChar StartChar: afii10059 Encoding: 1034 1034 413 Width: 1113 Flags: W Fore 657 729 m 1 657 469 l 1 844 469 l 2 926.667 469 987.667 437 1027 373 c 0 1051.67 333 1064 284 1064 226 c 0 1064 114.667 1019 44 929 14 c 0 899.667 4.66667 866.333 4.33681e-19 829 0 c 2 507 0 l 1 507 311 l 1 218 311 l 1 218 0 l 1 68 0 l 1 68 729 l 1 218 729 l 1 218 436 l 1 506 436 l 1 506 729 l 1 657 729 l 1 657 344 m 1 657 125 l 1 797 125 l 2 869 125 907.667 155.667 913 217 c 0 913.667 222.333 914 228.333 914 235 c 0 914 302.333 881 338.333 815 343 c 2 814 343 l 1 813 344 l 1 797 344 l 1 657 344 l 1 EndSplineSet EndChar StartChar: afii10060 Encoding: 1035 1035 414 Width: 790 Flags: W Fore 352 504 m 1 540 504 l 2 607.333 504 663 482.333 707 439 c 0 741 405.667 758 367.333 758 324 c 2 758 323 l 1 758 0 l 1 608 0 l 1 608 317 l 2 608 349 589.667 368.667 553 376 c 1 528 379 l 1 353 379 l 1 353 0 l 1 202 0 l 1 202 605 l 1 14 605 l 1 14 729 l 1 536 729 l 1 536 605 l 1 352 605 l 1 352 504 l 1 EndSplineSet EndChar StartChar: afii10061 Encoding: 1036 1036 415 Width: 722 Flags: W Fore 224 0 m 1 74 0 l 1 74 729 l 1 224 729 l 1 224 450 l 1 509 729 l 1 686 729 l 1 320 378 l 1 717 0 l 1 538 0 l 1 224 285 l 1 224 0 l 1 478 929 m 1 352 779 l 1 282 779 l 1 352 929 l 1 478 929 l 1 EndSplineSet EndChar StartChar: uni040D Encoding: 1037 1037 416 Width: 726 Flags: W Fore 218 0 m 1 68 0 l 1 68 729 l 1 218 729 l 1 218 233 l 1 507 729 l 1 661 729 l 1 661 0 l 1 511 0 l 1 511 504 l 1 218 0 l 1 266 929 m 1 392 929 l 1 462 779 l 1 392 779 l 1 266 929 l 1 EndSplineSet EndChar StartChar: afii10062 Encoding: 1038 1038 417 Width: 718 Flags: W Fore 328 0 m 1 154 0 l 1 268 226 l 1 15 729 l 1 178 729 l 1 350 384 l 1 522 729 l 1 696 729 l 1 328 0 l 1 488 922 m 1 488 911 l 2 488 863.667 469 827 431 801 c 0 409 786.333 384 779 356 779 c 0 308 779 271.333 798 246 836 c 1 246 837 l 1 231.333 859 224 884 224 912 c 2 224 922 l 1 280 922 l 1 286 878 311.667 856 357 856 c 0 397.667 856 422.333 875.667 431 915 c 1 432 922 l 1 488 922 l 1 EndSplineSet EndChar StartChar: afii10145 Encoding: 1039 1039 418 Width: 722 Flags: W Fore 428 0 m 1 428 -150 l 1 298 -150 l 1 298 0 l 1 68 0 l 1 68 729 l 1 218 729 l 1 218 125 l 1 508 125 l 1 508 729 l 1 658 729 l 1 658 0 l 1 428 0 l 1 EndSplineSet EndChar StartChar: afii10017 Encoding: 1040 1040 419 Width: 722 Flags: W Ref: 65 65 N 1 0 0 1 0 0 KernsSLIF: 1058 -81 0 0 EndChar StartChar: afii10018 Encoding: 1041 1041 420 Width: 722 Flags: W Fore 395 463 m 2 511 463 591.667 420 637 334 c 0 656.333 297.333 666 260 666 222 c 0 666 172.667 651.333 127 622 85 c 0 613.333 72.3333 604 61.6667 594 53 c 0 552 17.6667 490.667 1.73472e-18 410 0 c 2 82 0 l 1 82 729 l 1 594 729 l 1 594 604 l 1 232 604 l 1 232 463 l 1 395 463 l 2 232 338 m 1 232 125 l 1 411 125 l 2 464.333 125 499 146 515 188 c 0 519.667 200.667 522 215 522 231 c 0 522 280.333 501.667 313 461 329 c 0 446.333 335 429.667 338 411 338 c 2 232 338 l 1 EndSplineSet EndChar StartChar: afii10019 Encoding: 1042 1042 421 Width: 722 Flags: W Ref: 66 66 N 1 0 0 1 0 0 EndChar StartChar: afii10020 Encoding: 1043 1043 422 Width: 611 Flags: W Fore 232 0 m 1 82 0 l 1 82 729 l 1 594 729 l 1 594 604 l 1 232 604 l 1 232 0 l 1 EndSplineSet EndChar StartChar: afii10021 Encoding: 1044 1044 423 Width: 900 Flags: W Fore 139 108 m 2 169.667 108 193.667 150.667 211 236 c 0 223.667 298 230 373 230 461 c 2 230 729 l 1 750 729 l 1 750 108 l 1 865 108 l 1 865 -150 l 1 735 -150 l 1 735 0 l 1 165 0 l 1 165 -150 l 1 35 -150 l 1 35 108 l 1 139 108 l 2 333 125 m 1 600 125 l 1 600 604 l 1 380 604 l 1 380 414 l 2 380 287.333 364.333 191 333 125 c 1 EndSplineSet EndChar StartChar: afii10022 Encoding: 1045 1045 424 Width: 709 Flags: W Fore 232 314 m 1 232 125 l 1 627 125 l 1 627 0 l 1 82 0 l 1 82 729 l 1 609 729 l 1 609 604 l 1 232 604 l 1 232 439 l 1 581 439 l 1 581 314 l 1 232 314 l 1 EndSplineSet EndChar StartChar: afii10024 Encoding: 1046 1046 425 Width: 1093 Flags: W Fore 475 285 m 1 206 0 l 1 22 0 l 1 379 378 l 1 66 729 l 1 230 729 l 1 475 450 l 1 475 729 l 1 625 729 l 1 625 450 l 1 870 729 l 1 1034 729 l 1 721 378 l 1 1078 0 l 1 894 0 l 1 625 285 l 1 625 0 l 1 475 0 l 1 475 285 l 1 EndSplineSet EndChar StartChar: afii10025 Encoding: 1047 1047 426 Width: 672 Flags: W Fore 250 428 m 1 326 428 l 2 417.333 428 463.333 462.333 464 531 c 0 464 571 442 598 398 612 c 0 380.667 618 360.667 621 338 621 c 0 248 621 197.667 587.667 187 521 c 0 185 511 l 0 185 510 185 510 185 507 c 1 45 507 l 1 45 569.667 62 620 96 658 c 0 146 713.333 224.333 741 331 741 c 0 454.333 741 537.333 703.667 580 629 c 0 598 597.667 607 560.333 607 517 c 0 607 455 586 408.333 544 377 c 1 598.667 347 628 299.333 632 234 c 1 633 213 l 1 633 119.667 592.333 53 511 13 c 0 463 -11 404 -23 334 -23 c 0 190.667 -23 97.6667 24.3333 55 119 c 0 41.6667 147.667 34 180.667 32 218 c 1 178 218 l 1 182 151.333 221 112 295 100 c 1 342 97 l 1 414 97 460 117 480 157 c 0 486 168.333 489 181 489 195 c 0 489 250.333 462.667 285.667 410 301 c 0 398 304.333 385 306.333 371 307 c 0 365 307.667 358.667 308 352 308 c 2 250 308 l 1 250 428 l 1 EndSplineSet EndChar StartChar: afii10026 Encoding: 1048 1048 427 Width: 757 Flags: W Fore 232 0 m 1 82 0 l 1 82 729 l 1 232 729 l 1 232 233 l 1 521 729 l 1 675 729 l 1 675 0 l 1 525 0 l 1 525 504 l 1 232 0 l 1 EndSplineSet EndChar StartChar: afii10027 Encoding: 1049 1049 428 Width: 757 Flags: W Fore 507 927 m 1 507 916 l 2 507 868.667 488 832 450 806 c 0 428 791.333 403 784 375 784 c 0 327 784 290.333 803 265 841 c 1 265 842 l 1 250.333 864 243 889 243 917 c 2 243 927 l 1 299 927 l 1 305 883 330.667 861 376 861 c 0 414 861 438 879 448 915 c 1 448 916 l 1 449 917 l 1 449 918 l 1 451 927 l 1 507 927 l 1 232 0 m 1 82 0 l 1 82 729 l 1 232 729 l 1 232 233 l 1 521 729 l 1 675 729 l 1 675 0 l 1 525 0 l 1 525 504 l 1 232 0 l 1 EndSplineSet EndChar StartChar: afii10028 Encoding: 1050 1050 429 Width: 750 Flags: W Fore 232 0 m 1 82 0 l 1 82 729 l 1 232 729 l 1 232 450 l 1 517 729 l 1 694 729 l 1 328 378 l 1 725 0 l 1 525 0 l 1 232 285 l 1 232 0 l 1 EndSplineSet EndChar StartChar: afii10029 Encoding: 1051 1051 430 Width: 729 Flags: W Fore 497 604 m 1 275 604 l 1 275 400 l 2 275 188 228.333 58 135 10 c 0 106.333 -4.66667 73.3333 -12 36 -12 c 1 36 133 l 1 70 132.333 93.6667 156.667 107 206 c 0 119 251.333 125 331.667 125 447 c 2 125 729 l 1 647 729 l 1 647 0 l 1 497 0 l 1 497 604 l 1 EndSplineSet EndChar StartChar: afii10030 Encoding: 1052 1052 431 Width: 874 Flags: W Fore 232 568 m 1 232 0 l 1 82 0 l 1 82 729 l 1 306 729 l 1 438 149 l 1 566 729 l 1 792 729 l 1 792 0 l 1 642 0 l 1 642 568 l 1 513 0 l 1 363 0 l 1 232 568 l 1 EndSplineSet EndChar StartChar: afii10031 Encoding: 1053 1053 432 Width: 753 Flags: W Fore 521 331 m 1 232 331 l 1 232 0 l 1 82 0 l 1 82 729 l 1 232 729 l 1 232 456 l 1 520 456 l 1 520 729 l 1 671 729 l 1 671 0 l 1 521 0 l 1 521 331 l 1 EndSplineSet EndChar StartChar: afii10032 Encoding: 1054 1054 433 Width: 778 Flags: W Ref: 79 79 N 1 0 0 1 0 0 EndChar StartChar: afii10033 Encoding: 1055 1055 434 Width: 753 Flags: W Fore 521 604 m 1 232 604 l 1 232 0 l 1 82 0 l 1 82 729 l 1 671 729 l 1 671 0 l 1 521 0 l 1 521 604 l 1 EndSplineSet EndChar StartChar: afii10034 Encoding: 1056 1056 435 Width: 671 Flags: W Fore 232 260 m 1 232 0 l 1 82 0 l 1 82 729 l 1 404 729 l 2 522 729 596 684 626 594 c 0 626 592 l 0 634.667 566 639 536.333 639 503 c 0 639 409.667 608.667 341.667 548 299 c 1 548 298 l 1 547 297 l 2 511 272.333 468.333 260 419 260 c 2 232 260 l 1 232 385 m 1 372 385 l 2 444.667 385 483.333 416.333 488 479 c 1 489 494 l 1 489 560.667 457 597 393 603 c 2 372 604 l 1 232 604 l 1 232 385 l 1 EndSplineSet EndChar StartChar: afii10035 Encoding: 1057 1057 436 Width: 722 Flags: W Ref: 67 67 N 1 0 0 1 0 0 EndChar StartChar: afii10036 Encoding: 1058 1058 437 Width: 611 Flags: W Ref: 84 84 N 1 0 0 1 0 0 KernsSLIF: 1040 -88 0 0 EndChar StartChar: afii10037 Encoding: 1059 1059 438 Width: 718 Flags: W Fore 328 0 m 1 154 0 l 1 268 226 l 1 15 729 l 1 178 729 l 1 350 384 l 1 522 729 l 1 696 729 l 1 328 0 l 1 EndSplineSet EndChar StartChar: afii10038 Encoding: 1060 1060 439 Width: 892 Flags: W Fore 371 0 m 1 371 94 l 1 310.333 94 266 96.6667 238 102 c 0 100 129.333 30.6667 220 30 374 c 0 30 545.333 126.333 633.333 319 638 c 0 330 638 330 638 342 638 c 0 298.667 638 308.333 638 371 638 c 1 371 729 l 1 521 729 l 1 521 638 l 1 594.333 638 648.667 633.333 684 624 c 0 776 600 832.333 544 853 456 c 0 859 431.333 862 404 862 374 c 0 862 184 754.667 90.6667 540 94 c 2 529 94 l 1 521 94 l 1 521 0 l 1 371 0 l 1 371 188 m 1 371 540 l 1 314.333 540 272.333 533.667 245 521 c 0 191.667 496.333 164.667 446 164 370 c 0 164 259.333 209.333 199 300 189 c 0 311.333 188.333 335 188 371 188 c 1 521 188 m 1 568.333 188 600 189.667 616 193 c 0 690 209.667 727.333 268.667 728 370 c 0 728 480.667 669.333 537.333 552 540 c 2 521 540 l 1 521 188 l 1 EndSplineSet EndChar StartChar: afii10039 Encoding: 1061 1061 440 Width: 667 Flags: W Ref: 88 88 N 1 0 0 1 0 0 EndChar StartChar: afii10040 Encoding: 1062 1062 441 Width: 816 Flags: W Fore 521 125 m 1 521 729 l 1 671 729 l 1 671 108 l 1 781 108 l 1 781 -150 l 1 651 -150 l 1 651 0 l 1 82 0 l 1 82 729 l 1 232 729 l 1 232 125 l 1 521 125 l 1 EndSplineSet EndChar StartChar: afii10041 Encoding: 1063 1063 442 Width: 685 Flags: W Fore 474 225 m 1 286 225 l 2 218.667 225 163 246.667 119 290 c 0 85 323.333 68 362 68 406 c 2 68 729 l 1 218 729 l 1 218 412 l 2 218 380 236.333 360.333 273 353 c 1 298 350 l 1 473 350 l 1 473 729 l 1 624 729 l 1 624 0 l 1 474 0 l 1 474 225 l 1 EndSplineSet EndChar StartChar: afii10042 Encoding: 1064 1064 443 Width: 1057 Flags: W Fore 967 0 m 1 68 0 l 1 68 729 l 1 218 729 l 1 218 125 l 1 437 125 l 1 437 729 l 1 587 729 l 1 587 125 l 1 817 125 l 1 817 729 l 1 967 729 l 1 967 0 l 1 EndSplineSet EndChar StartChar: afii10043 Encoding: 1065 1065 444 Width: 1183 Flags: W Fore 962 0 m 1 68 0 l 1 68 729 l 1 218 729 l 1 218 125 l 1 447 125 l 1 447 729 l 1 597 729 l 1 597 125 l 1 827 125 l 1 827 729 l 1 977 729 l 1 977 108 l 1 1097 108 l 1 1097 -150 l 1 962 -150 l 1 962 0 l 1 EndSplineSet EndChar StartChar: afii10044 Encoding: 1066 1066 445 Width: 928 Flags: W Fore 394 469 m 1 581 469 l 2 663.667 469 724.667 437 764 373 c 0 788.667 333 801 284 801 226 c 0 801 114.667 756 44 666 14 c 0 636.667 4.66667 603.333 4.33681e-19 566 0 c 2 244 0 l 1 244 604 l 1 14 605 l 1 14 729 l 1 394 729 l 1 394 469 l 1 394 344 m 1 394 125 l 1 534 125 l 2 606 125 644.667 155.667 650 217 c 0 650.667 222.333 651 228.333 651 235 c 0 651 302.333 618 338.333 552 343 c 2 551 343 l 1 550 344 l 1 534 344 l 1 394 344 l 1 EndSplineSet EndChar StartChar: afii10045 Encoding: 1067 1067 446 Width: 949 Flags: W Fore 884 729 m 1 884 0 l 1 734 0 l 1 734 729 l 1 884 729 l 1 218 469 m 1 405 469 l 2 487.667 469 548.667 437 588 373 c 0 612.667 333 625 284 625 226 c 0 625 114 579.333 43.3333 488 14 c 0 459.333 4.66667 426.667 4.33681e-19 390 0 c 2 68 0 l 1 68 729 l 1 218 729 l 1 218 469 l 1 218 344 m 1 218 125 l 1 358 125 l 2 430 125 468.667 155.667 474 217 c 0 474.667 222.333 475 228.333 475 235 c 0 475 302.333 442 338.333 376 343 c 2 358 344 l 1 218 344 l 1 EndSplineSet EndChar StartChar: afii10046 Encoding: 1068 1068 447 Width: 687 Flags: W Fore 226 469 m 1 413 469 l 2 495.667 469 556.667 437 596 373 c 0 620.667 333 633 284 633 226 c 0 633 114 587.333 43.3333 496 14 c 0 467.333 4.66667 434.667 4.33681e-19 398 0 c 2 76 0 l 1 76 729 l 1 226 729 l 1 226 469 l 1 226 344 m 1 226 125 l 1 366 125 l 2 438 125 476.667 155.667 482 217 c 0 482.667 222.333 483 228.333 483 235 c 0 483 302.333 450 338.333 384 343 c 2 366 344 l 1 226 344 l 1 EndSplineSet EndChar StartChar: afii10047 Encoding: 1069 1069 448 Width: 722 Flags: W Fore 241 311 m 1 241 436 l 1 532 436 l 1 517.333 520 478.667 574.667 416 600 c 0 394.667 608.667 371.333 613 346 613 c 0 292 613 251 595.333 223 560 c 0 209 542.667 198 516.667 190 482 c 1 47 482 l 1 51.6667 540.667 68 588.667 96 626 c 0 151.333 699.333 231.667 737.667 337 741 c 0 351 741 l 0 468.333 741 557 697.333 617 610 c 0 662.333 544 685 460 685 358 c 0 685 221.333 645.667 118.667 567 50 c 0 510.333 1.33333 439.667 -23 355 -23 c 0 245 -23 161.667 12 105 82 c 0 67.6667 127.333 47.3333 183 44 249 c 1 190 249 l 1 196.667 177 230.333 131.333 291 112 c 0 309 106 329 103 351 103 c 0 430.333 103 484.667 142.333 514 221 c 0 523.333 247.667 529.667 277.667 533 311 c 1 241 311 l 1 EndSplineSet EndChar StartChar: afii10048 Encoding: 1070 1070 449 Width: 1109 Flags: W Fore 367 436 m 1 380.333 517.333 412.333 585.333 463 640 c 0 525 707.333 604.333 741 701 741 c 0 789.667 741 863 714 921 660 c 1 941 640 l 1 1006.33 570 1040.33 479 1043 367 c 1 1043 354 l 2 1043 265.333 1019.33 186.333 972 117 c 0 962.667 103 952.333 90 941 78 c 0 883 15.3333 810.667 -18 724 -22 c 0 718 -22.6667 710.667 -23 702 -23 c 0 610 -23 534 6.66667 474 66 c 1 470.667 70 467 74 463 78 c 0 406.333 138.667 373.333 216.333 364 311 c 1 218 311 l 1 218 0 l 1 68 0 l 1 68 729 l 1 218 729 l 1 218 436 l 1 367 436 l 1 702 613 m 0 626.667 613 572.333 577.333 539 506 c 0 520.333 465.333 511 416.333 511 359 c 0 511 255 539.333 181.667 596 139 c 2 597 138 l 2 626.333 116 661.333 105 702 105 c 0 775.333 105 828.667 138.667 862 206 c 0 882.667 247.333 893 297 893 355 c 0 893 468.333 861.667 545.333 799 586 c 0 771.667 604 739.333 613 702 613 c 0 EndSplineSet EndChar StartChar: afii10049 Encoding: 1071 1071 450 Width: 698 Flags: W Fore 422 260 m 1 201 0 l 1 22 0 l 1 242 265 l 1 183.333 276.333 138.667 309.667 108 365 c 0 86.6667 404.333 76 450.333 76 503 c 0 76 615 121.667 685.667 213 715 c 0 241.667 724.333 274.333 729 311 729 c 2 633 729 l 1 633 0 l 1 483 0 l 1 483 260 l 1 422 260 l 1 483 385 m 1 483 604 l 1 343 604 l 2 271 604 232.333 573.333 227 512 c 1 226 494 l 1 226 426.667 259 390.667 325 386 c 2 343 385 l 1 483 385 l 1 EndSplineSet EndChar StartChar: afii10065 Encoding: 1072 1072 451 Width: 556 Flags: W Ref: 97 97 N 1 0 0 1 0 0 EndChar StartChar: afii10066 Encoding: 1073 1073 452 Width: 606 Flags: W Fore 438 776 m 1 542 777 l 1 542 729.667 535.667 697.333 523 680 c 1 510 667 l 1 509 666 l 2 480.333 645.333 438.333 632 383 626 c 0 393 626.667 387.333 626 366 624 c 0 316 618 278.333 607.333 253 592 c 0 199.667 559.333 171.667 517.667 169 467 c 0 169 464 169 464 169 462 c 1 197.667 520 254 549 338 549 c 0 394.667 549 443.333 529 484 489 c 0 492.667 480.333 500.333 471.333 507 462 c 0 545.667 406.667 565 340.333 565 263 c 0 565 159.667 533.333 82 470 30 c 0 426 -5.33333 371 -23 305 -23 c 0 201 -23 130 11 92 79 c 0 64 128.333 50 199.333 50 292 c 0 50 475.333 90.6667 600.333 172 667 c 0 179.333 673 187.333 678.667 196 684 c 0 220.667 699.333 272 711.333 350 720 c 2 360 721 l 1 386 724 l 2 414 727.333 431 743 437 771 c 1 437 772 l 1 438 776 l 1 307 432 m 0 263 432 230 408.333 208 361 c 1 208 361 l 1 195.333 333.667 189 301.667 189 265 c 0 189 192.333 209 141.667 249 113 c 0 265.667 100.333 285 94 307 94 c 0 349.667 94 382.333 117 405 163 c 0 418.333 191 425 224 425 262 c 0 425 330 406.333 379.333 369 410 c 0 350.333 424.667 329.667 432 307 432 c 0 EndSplineSet EndChar StartChar: afii10067 Encoding: 1074 1074 453 Width: 572 Flags: W Fore 60 0 m 1 60 540 l 1 326 540 l 2 381.333 540 424 527 454 501 c 0 484.667 474.333 501 440 503 398 c 1 503 361.333 489.667 330.667 463 306 c 0 453 296.667 441.667 290 429 286 c 1 471 273.333 498.667 244 512 198 c 0 516 184.667 518 170.333 518 155 c 0 518 111.667 503 75.3333 473 46 c 2 472 45 l 1 471 45 l 2 465 39 l 0 434.333 13 389 0 329 0 c 2 60 0 l 1 200 430 m 1 200 333 l 1 294 333 l 2 332.667 333 355.667 340.667 363 356 c 1 364 356 l 1 366.667 362 368 370 368 380 c 0 368 406 355.667 421.667 331 427 c 2 330 427 l 1 294 430 l 1 200 430 l 1 200 223 m 1 200 110 l 1 300 110 l 2 344.667 110 370.333 123 377 149 c 0 378.333 154.333 379 161.333 379 170 c 0 379 197.333 367.667 213.667 345 219 c 0 335 221.667 320 223 300 223 c 2 200 223 l 1 EndSplineSet EndChar StartChar: afii10068 Encoding: 1075 1075 454 Width: 454 Flags: W Fore 408 540 m 1 408 427 l 1 200 427 l 1 200 0 l 1 60 0 l 1 60 540 l 1 408 540 l 1 EndSplineSet EndChar StartChar: afii10069 Encoding: 1076 1076 455 Width: 685 Flags: W Fore 580 101 m 1 662 101 l 1 662 -125 l 1 552 -125 l 1 552 0 l 1 133 0 l 1 133 -125 l 1 23 -125 l 1 23 101 l 1 85 101 l 2 117.667 101.667 140.667 152.333 154 253 c 0 159.333 294.333 162 339.333 162 388 c 2 162 540 l 1 580 540 l 1 580 101 l 1 263 113 m 1 440 113 l 1 440 427 l 1 302 427 l 1 302 376 l 2 302 259.333 289 171.667 263 113 c 1 EndSplineSet EndChar StartChar: afii10070 Encoding: 1077 1077 456 Width: 556 Flags: W Ref: 101 101 N 1 0 0 1 0 0 EndChar StartChar: afii10072 Encoding: 1078 1078 457 Width: 809 Flags: W Fore 332 198 m 1 195 0 l 1 16 0 l 1 229 296 l 1 52 540 l 1 200 540 l 1 332 351 l 1 332 540 l 1 472 540 l 1 472 351 l 1 604 540 l 1 752 540 l 1 575 296 l 1 788 0 l 1 609 0 l 1 472 198 l 1 472 0 l 1 332 0 l 1 332 198 l 1 EndSplineSet EndChar StartChar: afii10073 Encoding: 1079 1079 458 Width: 546 Flags: W Fore 206 208 m 1 206 318 l 1 300 318 l 2 341.333 318 363 334.667 365 368 c 0 365 374 l 2 365 389 l 2 365 411.667 350 427 320 435 c 0 309.333 437.667 297.333 439 284 439 c 0 218 439 184.333 414.667 183 366 c 1 48 366 l 1 49.3333 441.333 84.3333 494.333 153 525 c 0 189.667 541 233 549 283 549 c 0 375.667 549 440.667 521 478 465 c 0 492 443.667 500.667 419.333 504 392 c 1 505 369 l 1 505 332.333 495 303 475 281 c 1 461 271 l 1 500.333 246.333 520 209.333 520 160 c 0 520 106 500 62 460 28 c 0 458.667 26.6667 457.333 25.6667 456 25 c 0 416 -7 358.667 -23 284 -23 c 0 129.333 -23 45 29.3333 31 134 c 0 29.6667 141.333 29 149 29 157 c 1 166 157 l 1 171.333 133 180.333 116 193 106 c 1 212.333 93.3333 240 87 276 87 c 0 336 87 370 101 378 129 c 0 379.333 132.333 380 136 380 140 c 0 380 168 371.667 186.667 355 196 c 2 354 197 l 1 354 197 l 1 354 197 l 1 354 197 l 1 340.667 204.333 322 208 298 208 c 2 206 208 l 1 EndSplineSet EndChar StartChar: afii10074 Encoding: 1080 1080 459 Width: 615 Flags: W Fore 60 540 m 1 200 540 l 1 200 202 l 1 395 540 l 1 555 540 l 1 555 0 l 1 415 0 l 1 415 338 l 1 220 0 l 1 60 0 l 1 60 540 l 1 EndSplineSet EndChar StartChar: afii10075 Encoding: 1081 1081 460 Width: 615 Flags: W Fore 60 540 m 1 200 540 l 1 200 202 l 1 395 540 l 1 555 540 l 1 555 0 l 1 415 0 l 1 415 338 l 1 220 0 l 1 60 0 l 1 60 540 l 1 440 723 m 1 440 712 l 2 440 664.667 421 628 383 602 c 0 361 587.333 336 580 308 580 c 0 260 580 223.333 599 198 637 c 1 198 638 l 1 183.333 660 176 685 176 713 c 2 176 723 l 1 232 723 l 1 238 679 263.667 657 309 657 c 0 349.667 657 374.333 676.667 383 716 c 1 384 723 l 1 440 723 l 1 EndSplineSet EndChar StartChar: afii10076 Encoding: 1082 1082 461 Width: 573 Flags: W Fore 200 351 m 1 362 540 l 1 510 540 l 1 296 296 l 1 549 0 l 1 367 0 l 1 200 198 l 1 200 0 l 1 60 0 l 1 60 540 l 1 200 540 l 1 200 351 l 1 EndSplineSet EndChar StartChar: afii10077 Encoding: 1083 1083 462 Width: 577 Flags: W Fore 104 540 m 1 517 540 l 1 517 0 l 1 377 0 l 1 377 427 l 1 244 427 l 1 244 366 l 2 244 193.333 214.333 81.6667 155 31 c 0 126.333 6.33333 89.6667 -7.33333 45 -10 c 2 29 -10 l 1 29 125 l 1 67 125.667 90.3333 161.333 99 232 c 0 102.333 261.333 104 310 104 378 c 2 104 540 l 1 EndSplineSet EndChar StartChar: afii10078 Encoding: 1084 1084 463 Width: 666 Flags: W Fore 369 0 m 1 297 0 l 1 200 297 l 1 200 0 l 1 60 0 l 1 60 540 l 1 235 540 l 1 333 213 l 1 431 540 l 1 606 540 l 1 606 0 l 1 466 0 l 1 466 297 l 1 369 0 l 1 EndSplineSet EndChar StartChar: afii10079 Encoding: 1085 1085 464 Width: 603 Flags: W Fore 60 540 m 1 200 540 l 1 200 320 l 1 403 320 l 1 403 540 l 1 543 540 l 1 543 0 l 1 403 0 l 1 403 207 l 1 200 207 l 1 200 0 l 1 60 0 l 1 60 540 l 1 EndSplineSet EndChar StartChar: afii10080 Encoding: 1086 1086 465 Width: 611 Flags: W Ref: 111 111 N 1 0 0 1 0 0 EndChar StartChar: afii10081 Encoding: 1087 1087 466 Width: 603 Flags: W Fore 60 540 m 1 543 540 l 1 543 0 l 1 403 0 l 1 403 427 l 1 200 427 l 1 200 0 l 1 60 0 l 1 60 540 l 1 EndSplineSet EndChar StartChar: afii10082 Encoding: 1088 1088 467 Width: 611 Flags: W Fore 200 540 m 1 200 460 l 1 233.333 519.333 283.333 549 350 549 c 0 404 549 451.667 530.333 493 493 c 1 502.333 483.667 510.667 474 518 464 c 0 554.667 412.667 574 345.333 576 262 c 1 576 169.333 549.667 95.3333 497 40 c 0 455.667 -2.66667 406.667 -24 350 -24 c 0 283.333 -24 233.333 5.33333 200 64 c 1 200 -218 l 1 60 -218 l 1 60 540 l 1 200 540 l 1 318 432 m 0 273.333 432 240.333 408 219 360 c 0 206.333 332.667 200 300 200 262 c 0 200 191.333 219.333 141.667 258 113 c 0 276 99.6667 296 93 318 93 c 0 361.333 93 394 116 416 162 c 0 429.333 190 436 222.667 436 260 c 0 436 332.667 416.333 383.667 377 413 c 0 360.333 425.667 340.667 432 318 432 c 0 EndSplineSet EndChar StartChar: afii10083 Encoding: 1089 1089 468 Width: 556 Flags: W Ref: 99 99 N 1 0 0 1 0 0 EndChar StartChar: afii10084 Encoding: 1090 1090 469 Width: 454 Flags: W Fore 431 540 m 1 431 427 l 1 296 427 l 1 296 0 l 1 156 0 l 1 156 427 l 1 21 427 l 1 21 540 l 1 431 540 l 1 EndSplineSet EndChar StartChar: afii10085 Encoding: 1091 1091 470 Width: 556 Flags: W Ref: 121 121 N 1 0 0 1 0 0 EndChar StartChar: afii10086 Encoding: 1092 1092 471 Width: 957 Flags: W Fore 404 64 m 1 370.667 5.33333 320.667 -24 254 -24 c 0 184.667 -24 128.333 6.33333 85 67 c 0 47 120.333 28 185.333 28 262 c 0 28 340 46.3333 405.667 83 459 c 2 86 464 l 2 115.333 505.333 156.667 532 210 544 c 0 222 546.667 236.667 548.333 254 549 c 0 320.667 549 370.667 519.333 404 460 c 1 404 719 l 1 544 719 l 1 544 460 l 1 577.333 519.333 627.333 549 694 549 c 0 748 549 795.667 530.333 837 493 c 1 846.333 483.667 854.667 474 862 464 c 0 898.667 412.667 918 345.333 920 262 c 1 920 169.333 893.667 95.3333 841 40 c 0 799.667 -2.66667 750.667 -24 694 -24 c 0 627.333 -24 577.333 5.33333 544 64 c 1 544 -218 l 1 404 -218 l 1 404 64 l 1 286 432 m 0 240 432 206.667 407.333 186 358 c 0 174 330.667 168 298 168 260 c 0 168 193.333 186.667 145 224 115 c 0 242.667 100.333 263.333 93 286 93 c 0 330.667 93 363.667 117 385 165 c 0 397.667 192.333 404 224.667 404 262 c 0 404 332 384.667 382 346 412 c 2 345 412 l 2 327.667 425.333 308 432 286 432 c 0 662 432 m 0 617.333 432 584.333 408 563 360 c 0 550.333 332.667 544 300 544 262 c 0 544 191.333 563.333 141.667 602 113 c 0 620 99.6667 640 93 662 93 c 0 704.667 93 737 115.667 759 161 c 0 773 189 780 222 780 260 c 0 780 332.667 760.333 383.667 721 413 c 1 721 413 l 1 721 413 l 1 720 413 l 2 702.667 425.667 683.333 432 662 432 c 0 EndSplineSet EndChar StartChar: afii10087 Encoding: 1093 1093 472 Width: 556 Flags: W Ref: 120 120 N 1 0 0 1 0 0 EndChar StartChar: afii10088 Encoding: 1094 1094 473 Width: 652 Flags: W Fore 60 0 m 1 60 540 l 1 200 540 l 1 200 113 l 1 403 113 l 1 403 540 l 1 543 540 l 1 543 101 l 1 629 101 l 1 629 -125 l 1 519 -125 l 1 519 0 l 1 60 0 l 1 EndSplineSet EndChar StartChar: afii10089 Encoding: 1095 1095 474 Width: 578 Flags: W Fore 60 540 m 1 200 540 l 1 200 326 l 2 200 300 209.667 284.667 229 280 c 1 258 278 l 1 378 278 l 1 378 540 l 1 518 540 l 1 518 0 l 1 378 0 l 1 378 165 l 1 260 165 l 2 156.667 165 93 198.333 69 265 c 1 69 266 l 1 63 283.333 60 303 60 325 c 2 60 540 l 1 EndSplineSet EndChar StartChar: afii10090 Encoding: 1096 1096 475 Width: 886 Flags: W Fore 826 0 m 1 60 0 l 1 60 540 l 1 200 540 l 1 200 113 l 1 371 113 l 1 371 540 l 1 511 540 l 1 511 113 l 1 686 113 l 1 686 540 l 1 826 540 l 1 826 0 l 1 EndSplineSet EndChar StartChar: afii10091 Encoding: 1097 1097 476 Width: 968 Flags: W Fore 835 0 m 1 60 0 l 1 60 540 l 1 200 540 l 1 200 113 l 1 371 113 l 1 371 540 l 1 511 540 l 1 511 113 l 1 685 113 l 1 685 540 l 1 825 540 l 1 825 101 l 1 945 101 l 1 945 -125 l 1 835 -125 l 1 835 0 l 1 EndSplineSet EndChar StartChar: afii10092 Encoding: 1098 1098 477 Width: 693 Flags: W Fore 191 0 m 1 191 427 l 1 20 427 l 1 20 540 l 1 331 540 l 1 331 359 l 1 439 359 l 2 534.333 359 600.333 328.333 637 267 c 0 654.333 238.333 663 205.333 663 168 c 0 663 128 651.667 92 629 60 c 0 623 51.3333 616.667 44.3333 610 39 c 0 579.333 13 534 0 474 0 c 2 191 0 l 1 331 249 m 1 331 110 l 1 440 110 l 2 491.333 110 519.333 133.333 524 180 c 1 524 218.667 501.667 241.333 457 248 c 0 450.333 248.667 443 249 435 249 c 2 331 249 l 1 EndSplineSet EndChar StartChar: afii10093 Encoding: 1099 1099 478 Width: 811 Flags: W Fore 308 359 m 2 403.333 359 469.333 328.333 506 267 c 0 523.333 238.333 532 205.333 532 168 c 0 532 128 520.667 92 498 60 c 0 492 51.3333 485.667 44.3333 479 39 c 0 448.333 13 403 0 343 0 c 2 60 0 l 1 60 540 l 1 200 540 l 1 200 359 l 1 308 359 l 2 200 249 m 1 200 110 l 1 309 110 l 2 360.333 110 388.333 133.333 393 180 c 1 393 218.667 370.667 241.333 326 248 c 0 319.333 248.667 312 249 304 249 c 2 200 249 l 1 718 540 m 1 718 0 l 1 578 0 l 1 578 540 l 1 718 540 l 1 EndSplineSet EndChar StartChar: afii10094 Encoding: 1100 1100 479 Width: 562 Flags: W Fore 308 359 m 2 403.333 359 469.333 328.333 506 267 c 0 523.333 238.333 532 205.333 532 168 c 0 532 128 520.667 92 498 60 c 0 492 51.3333 485.667 44.3333 479 39 c 0 448.333 13 403 0 343 0 c 2 60 0 l 1 60 540 l 1 200 540 l 1 200 359 l 1 308 359 l 2 200 249 m 1 200 110 l 1 309 110 l 2 360.333 110 388.333 133.333 393 180 c 1 393 218.667 370.667 241.333 326 248 c 0 319.333 248.667 312 249 304 249 c 2 200 249 l 1 EndSplineSet EndChar StartChar: afii10095 Encoding: 1101 1101 480 Width: 564 Flags: W Fore 203 207 m 1 203 320 l 1 377 320 l 1 371.667 349.333 364.333 372.667 355 390 c 0 338.333 420.667 309.333 436 268 436 c 0 227.333 436 199 419 183 385 c 0 177 372.333 172 356.667 168 338 c 1 34 338 l 1 40.6667 426 78.3333 487.667 147 523 c 0 181.667 540.333 221.667 549 267 549 c 0 373 549 447 506.667 489 422 c 0 511 377.333 522 323 522 259 c 0 522 139 483.333 56.3333 406 11 c 0 368 -11.6667 322.333 -23 269 -23 c 0 183.667 -23 119.333 7.66667 76 69 c 0 52.6667 101.667 38.6667 141 34 187 c 1 168 187 l 1 181.333 135 203.667 104 235 94 c 0 244.333 91.3333 255.333 90 268 90 c 0 317.333 90 351 117.333 369 172 c 0 373 182.667 376 194.333 378 207 c 1 203 207 l 1 EndSplineSet EndChar StartChar: afii10096 Encoding: 1102 1102 481 Width: 908 Flags: W Fore 302 207 m 1 200 207 l 1 200 0 l 1 60 0 l 1 60 540 l 1 200 540 l 1 200 320 l 1 302 320 l 1 317.333 431.333 368.667 502.333 456 533 c 0 485.333 543.667 518 549 554 549 c 0 673.333 549 751.667 499.333 789 400 c 0 804.333 360 812 313 812 259 c 0 812 145 775.667 64.3333 703 17 c 0 662.333 -9.66667 613 -23 555 -23 c 0 441.667 -23 365 24.3333 325 119 c 0 313.667 145 306 174.333 302 207 c 1 555 436 m 0 503 436 467.667 406.333 449 347 c 0 441.667 323 438 295 438 263 c 0 438 182.333 459.667 129.333 503 104 c 2 504 103 l 2 517.333 95.6667 534.333 91.3333 555 90 c 1 605.667 90 640.333 118 659 174 c 0 667.667 199.333 672 228.333 672 261 c 0 672 349 648 404.333 600 427 c 0 586.667 433 571.667 436 555 436 c 0 EndSplineSet EndChar StartChar: afii10097 Encoding: 1103 1103 482 Width: 596 Flags: W Fore 347 207 m 1 204 0 l 1 25 0 l 1 180 218 l 1 118.667 234.667 78.6667 270.333 60 325 c 0 54 343.667 51 363.667 51 385 c 0 51 428.333 66 464.667 96 494 c 2 104 501 l 2 134.667 527 180 540 240 540 c 2 531 540 l 1 531 0 l 1 391 0 l 1 391 207 l 1 347 207 l 1 391 317 m 1 391 430 l 1 269 430 l 2 224.333 430 198.667 417 192 391 c 1 190 370 l 1 190 342.667 201.333 326.333 224 321 c 1 224 321 l 1 234 318.333 249 317 269 317 c 2 391 317 l 1 EndSplineSet EndChar StartChar: uni0450 Encoding: 1104 1104 483 Width: 556 Flags: W Ref: 101 101 N 1 0 0 1 0 0 Ref: 96 96 N 1 0 0 1 145 33 EndChar StartChar: afii10071 Encoding: 1105 1105 484 Width: 556 Flags: W Ref: 101 101 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 114 0 EndChar StartChar: afii10099 Encoding: 1106 1106 485 Width: 606 Flags: W Fore 568 132 m 1 567 353 l 1 567 354 l 2 567 420 548.667 468.333 512 499 c 0 479.333 526.333 439 540 391 540 c 0 323.667 540 270.667 511 232 453 c 1 232 567 l 1 402 567 l 1 402 671 l 1 232 671 l 1 232 729 l 1 92 729 l 1 92 671 l 1 22 671 l 1 22 567 l 1 92 567 l 1 92 0 l 1 232 0 l 1 232 315 l 1 232 315 l 1 232 333.667 236.667 351.667 246 369 c 0 265.333 403.667 297 421 341 421 c 0 371.667 421 395 410 411 388 c 0 421.667 372 427 349.667 427 321 c 1 428 112 l 1 425.333 38 398.667 -22.3333 348 -69 c 0 320 -95.6667 293.333 -109.333 268 -110 c 1 268 -172 l 1 294 -178 333 -165.333 385 -134 c 0 455.667 -91.3333 507 -38 539 26 c 0 556.333 60.6667 566 96 568 132 c 1 EndSplineSet EndChar StartChar: afii10100 Encoding: 1107 1107 486 Width: 454 Flags: W Fore 408 540 m 1 408 427 l 1 200 427 l 1 200 0 l 1 60 0 l 1 60 540 l 1 408 540 l 1 332 790 m 1 206 640 l 1 136 640 l 1 206 790 l 1 332 790 l 1 EndSplineSet EndChar StartChar: afii10101 Encoding: 1108 1108 487 Width: 556 Flags: W Fore 353 207 m 1 178 207 l 1 188.667 143 216.333 105 261 93 c 1 288 90 l 1 328 90 356.667 108.333 374 145 c 1 374 146 l 1 375 147 l 1 379.667 158.333 384 171.667 388 187 c 1 522 187 l 1 513.333 104.333 477 44.6667 413 8 c 0 376.333 -12.6667 334.333 -23 287 -23 c 0 181.667 -23 108.333 18.3333 67 101 c 0 45 144.333 34 197 34 259 c 0 34 383.667 73.6667 469.333 153 516 c 0 191 538 236.333 549 289 549 c 0 381 549 447.333 516.333 488 451 c 1 500.667 429 510 404.667 516 378 c 1 522 338 l 1 388 338 l 1 376.667 389.333 356.333 420 327 430 c 2 326 430 l 2 315.333 434 302.667 436 288 436 c 0 246.667 436 217.667 420.667 201 390 c 0 191.667 372.667 184.333 349.333 179 320 c 1 353 320 l 1 353 207 l 1 EndSplineSet EndChar StartChar: afii10102 Encoding: 1109 1109 488 Width: 556 Flags: W Fore 505 366 m 1 370 366 l 1 369.333 414 335.667 438.333 269 439 c 0 226.333 439 200.333 427.333 191 404 c 1 191 403 l 1 188 389 l 1 188 374.333 196 363.333 212 356 c 2 213 356 l 1 237 347 l 1 414 296 l 2 484 275.333 519.333 230 520 160 c 0 520 106 500 62 460 28 c 0 458.667 26.6667 457.333 25.6667 456 25 c 0 416 -7 358.667 -23 284 -23 c 0 129.333 -23 45 29.3333 31 134 c 0 29.6667 141.333 29 149 29 157 c 1 166 157 l 1 171.333 133 180.333 116 193 106 c 1 212.333 93.3333 240 87 276 87 c 0 336 87 370 101 378 129 c 0 379.333 132.333 380 136 380 140 c 0 380 157.333 369.667 170 349 178 c 0 344.333 180 339 182 333 184 c 2 166 236 l 2 124.667 249.333 96.3333 263.333 81 278 c 2 78 281 l 2 58 303 48 332.333 48 369 c 0 48 441 80 492.333 144 523 c 0 178.667 540.333 220.667 549 270 549 c 0 371.333 549 441 518.667 479 458 c 0 495.667 432 504.333 401.333 505 366 c 1 EndSplineSet EndChar StartChar: afii10103 Encoding: 1110 1110 489 Width: 278 Flags: W Ref: 105 105 N 1 0 0 1 0 0 EndChar StartChar: afii10104 Encoding: 1111 1111 490 Width: 278 Flags: W Ref: 305 305 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 -27 0 EndChar StartChar: afii10105 Encoding: 1112 1112 491 Width: 278 Flags: W Ref: 106 106 N 1 0 0 1 0 0 EndChar StartChar: afii10106 Encoding: 1113 1113 492 Width: 900 Flags: W Fore 403 0 m 1 403 427 l 1 244 427 l 1 244 376 l 2 244 203.333 214.333 91.6667 155 41 c 0 126.333 16.3333 89.6667 2.66667 45 0 c 2 29 0 l 1 29 135 l 1 67 135.667 90.3333 171.333 99 242 c 0 102.333 271.333 104 319.667 104 387 c 2 104 388 l 1 104 540 l 1 543 540 l 1 543 319 l 1 651 319 l 2 746.333 319 812.333 288.333 849 227 c 0 858.333 211.667 862.667 192.333 862 169 c 0 862 171.667 862 170 862 164 c 0 862 155 862 155 862 148 c 2 862 147 l 2 862 118.333 854 92 838 68 c 2 830 57 l 2 824 48.3333 817.667 41.3333 811 36 c 0 783 12 741.333 0 686 0 c 2 403 0 l 1 543 209 m 1 543 110 l 1 652 110 l 2 691.333 110 716 114 726 122 c 0 733.333 128.667 737.667 138.333 739 151 c 1 739 160 l 2 739 181.333 729 195 709 201 c 1 669 208 l 1 647 209 l 1 543 209 l 1 EndSplineSet EndChar StartChar: afii10107 Encoding: 1114 1114 493 Width: 611 Flags: W Fore 546 540 m 1 546 319 l 1 654 319 l 2 749.333 319 815.333 288.333 852 227 c 0 861.333 211.667 865.667 192.333 865 169 c 0 865 171.667 865 170 865 164 c 0 865 155 865 155 865 148 c 2 865 147 l 2 865 118.333 857 92 841 68 c 2 833 57 l 2 827 48.3333 820.667 41.3333 814 36 c 0 786 12 744.333 0 689 0 c 2 406 0 l 1 406 207 l 1 203 207 l 1 203 0 l 1 63 0 l 1 63 540 l 1 203 540 l 1 203 320 l 1 406 320 l 1 406 540 l 1 546 540 l 1 546 209 m 1 546 110 l 1 655 110 l 2 694.333 110 719 114 729 122 c 0 736.333 128.667 740.667 138.333 742 151 c 1 742 160 l 2 742 181.333 732 195 712 201 c 1 672 208 l 1 650 209 l 1 546 209 l 1 EndSplineSet EndChar StartChar: afii10108 Encoding: 1115 1115 494 Width: 606 Flags: W Fore 92 729 m 1 232 729 l 1 232 671 l 1 402 671 l 1 402 567 l 1 232 567 l 1 232 453 l 1 270.667 511 323.667 540 391 540 c 0 439 540 479.333 526.333 512 499 c 0 548.667 468.333 567 420 567 354 c 2 567 353 l 1 566 0 l 1 426 0 l 1 427 321 l 1 427 349.667 421.667 372 411 388 c 0 395 410 371.667 421 341 421 c 0 297 421 265.333 403.667 246 369 c 0 236.667 352.333 232 334.333 232 315 c 1 232 315 l 1 232 0 l 1 92 0 l 1 92 567 l 1 22 567 l 1 22 671 l 1 92 671 l 1 92 729 l 1 EndSplineSet EndChar StartChar: afii10109 Encoding: 1116 1116 495 Width: 573 Flags: W Fore 199 351 m 1 361 540 l 1 509 540 l 1 295 296 l 1 548 0 l 1 366 0 l 1 199 198 l 1 199 0 l 1 59 0 l 1 59 540 l 1 199 540 l 1 199 351 l 1 382 790 m 1 256 640 l 1 186 640 l 1 256 790 l 1 382 790 l 1 EndSplineSet EndChar StartChar: uni045D Encoding: 1117 1117 496 Width: 608 Flags: W Fore 60 540 m 1 200 540 l 1 200 197 l 1 388 540 l 1 543 540 l 1 543 0 l 1 403 0 l 1 403 343 l 1 215 0 l 1 60 0 l 1 60 540 l 1 204 790 m 1 330 790 l 1 400 640 l 1 330 640 l 1 204 790 l 1 EndSplineSet EndChar StartChar: afii10110 Encoding: 1118 1118 497 Width: 556 Flags: W Ref: 121 121 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 106 35 EndChar StartChar: afii10193 Encoding: 1119 1119 498 Width: 608 Flags: W Fore 357 0 m 1 357 -125 l 1 247 -125 l 1 247 0 l 1 60 0 l 1 60 540 l 1 200 540 l 1 200 113 l 1 404 113 l 1 404 540 l 1 544 540 l 1 544 0 l 1 357 0 l 1 EndSplineSet EndChar StartChar: uni048C Encoding: 1164 1164 499 Width: 687 Flags: W Fore 226 469 m 1 413 469 l 2 495.667 469 556.667 437 596 373 c 0 620.667 333 633 284 633 226 c 0 633 114 587.333 43.3333 496 14 c 0 467.333 4.66667 434.667 4.33681e-19 398 0 c 2 76 0 l 1 76 729 l 1 226 729 l 1 226 469 l 1 226 344 m 1 226 125 l 1 366 125 l 2 438 125 476.667 155.667 482 217 c 0 482.667 222.333 483 228.333 483 235 c 0 483 302.333 450 338.333 384 343 c 2 366 344 l 1 226 344 l 1 EndSplineSet EndChar StartChar: uni048D Encoding: 1165 1165 500 Width: 562 Flags: W Fore 316 333 m 2 437.333 333 509.667 291 533 207 c 0 537 191 539.333 173.667 540 155 c 0 540 111.667 525 75.3333 495 46 c 2 494 45 l 1 493 45 l 2 487 39 l 0 456.333 13 411 0 351 0 c 2 60 0 l 1 60 540 l 1 200 540 l 1 200 333 l 1 316 333 l 2 200 223 m 1 200 110 l 1 322 110 l 2 366.667 110 392.333 123 399 149 c 0 400.333 154.333 401 161.333 401 170 c 0 401 197.333 389.667 213.667 367 219 c 0 357 221.667 342 223 322 223 c 2 200 223 l 1 EndSplineSet EndChar StartChar: uni048E Encoding: 1166 1166 501 Width: 667 Flags: W Ref: 80 80 N 1 0 0 1 0 0 EndChar StartChar: uni048F Encoding: 1167 1167 502 Width: 611 Flags: W Ref: 112 112 N 1 0 0 1 0 0 EndChar StartChar: afii10050 Encoding: 1168 1168 503 Width: 611 Flags: W Fore 224 0 m 1 74 0 l 1 74 729 l 1 436 728 l 1 436 864 l 1 586 864 l 1 586 604 l 1 224 604 l 1 224 0 l 1 EndSplineSet EndChar StartChar: afii10098 Encoding: 1169 1169 504 Width: 454 Flags: W Fore 412 666 m 1 412 427 l 1 204 427 l 1 204 0 l 1 64 0 l 1 64 540 l 1 284 540 l 1 284 666 l 1 412 666 l 1 EndSplineSet EndChar StartChar: uni0492 Encoding: 1170 1170 505 Width: 611 Flags: W Fore 224 0 m 1 74 0 l 1 74 729 l 1 586 729 l 1 586 604 l 1 224 604 l 1 224 0 l 1 EndSplineSet EndChar StartChar: uni0493 Encoding: 1171 1171 506 Width: 454 Flags: W Fore 408 540 m 1 408 427 l 1 200 427 l 1 200 0 l 1 60 0 l 1 60 540 l 1 408 540 l 1 EndSplineSet EndChar StartChar: uni0494 Encoding: 1172 1172 507 Width: 611 Flags: W Fore 224 0 m 1 74 0 l 1 74 729 l 1 586 729 l 1 586 604 l 1 224 604 l 1 224 0 l 1 EndSplineSet EndChar StartChar: uni0495 Encoding: 1173 1173 508 Width: 454 Flags: W Fore 408 540 m 1 408 427 l 1 200 427 l 1 200 0 l 1 60 0 l 1 60 540 l 1 408 540 l 1 EndSplineSet EndChar StartChar: uni0496 Encoding: 1174 1174 509 Width: 1093 Flags: W Fore 475 285 m 1 201 0 l 1 22 0 l 1 379 378 l 1 66 729 l 1 230 729 l 1 475 450 l 1 475 729 l 1 625 729 l 1 625 450 l 1 870 729 l 1 1034 729 l 1 721 378 l 1 1078 0 l 1 899 0 l 1 625 285 l 1 625 0 l 1 475 0 l 1 475 285 l 1 EndSplineSet EndChar StartChar: uni0497 Encoding: 1175 1175 510 Width: 809 Flags: W Fore 332 198 m 1 195 0 l 1 16 0 l 1 229 296 l 1 52 540 l 1 200 540 l 1 332 351 l 1 332 540 l 1 472 540 l 1 472 351 l 1 604 540 l 1 752 540 l 1 575 296 l 1 788 0 l 1 609 0 l 1 472 198 l 1 472 0 l 1 332 0 l 1 332 198 l 1 EndSplineSet EndChar StartChar: uni0498 Encoding: 1176 1176 511 Width: 672 Flags: W Fore 250 428 m 1 326 428 l 2 417.333 428 463.333 462.333 464 531 c 0 464 571 442 598 398 612 c 0 380.667 618 360.667 621 338 621 c 0 248 621 197.667 587.667 187 521 c 0 185 511 l 0 185 510 185 510 185 507 c 1 45 507 l 1 45 569.667 62 620 96 658 c 0 146 713.333 224.333 741 331 741 c 0 454.333 741 537.333 703.667 580 629 c 0 598 597.667 607 560.333 607 517 c 0 607 455 586 408.333 544 377 c 1 598.667 347 628 299.333 632 234 c 1 633 213 l 1 633 119.667 592.333 53 511 13 c 0 463 -11 404 -23 334 -23 c 0 190.667 -23 97.6667 24.3333 55 119 c 0 41.6667 147.667 34 180.667 32 218 c 1 178 218 l 1 182 151.333 221 112 295 100 c 1 342 97 l 1 414 97 460 117 480 157 c 0 486 168.333 489 181 489 195 c 0 489 250.333 462.667 285.667 410 301 c 0 398 304.333 385 306.333 371 307 c 0 365 307.667 358.667 308 352 308 c 2 250 308 l 1 250 428 l 1 EndSplineSet EndChar StartChar: uni0499 Encoding: 1177 1177 512 Width: 546 Flags: W Fore 206 208 m 1 206 318 l 1 300 318 l 2 341.333 318 363 334.667 365 368 c 0 365 374 l 2 365 389 l 2 365 411.667 350 427 320 435 c 0 309.333 437.667 297.333 439 284 439 c 0 218 439 184.333 414.667 183 366 c 1 48 366 l 1 49.3333 441.333 84.3333 494.333 153 525 c 0 189.667 541 233 549 283 549 c 0 375.667 549 440.667 521 478 465 c 0 492 443.667 500.667 419.333 504 392 c 1 505 369 l 1 505 332.333 495 303 475 281 c 1 461 271 l 1 500.333 246.333 520 209.333 520 160 c 0 520 106 500 62 460 28 c 0 458.667 26.6667 457.333 25.6667 456 25 c 0 416 -7 358.667 -23 284 -23 c 0 129.333 -23 45 29.3333 31 134 c 0 29.6667 141.333 29 149 29 157 c 1 166 157 l 1 171.333 133 180.333 116 193 106 c 1 212.333 93.3333 240 87 276 87 c 0 336 87 370 101 378 129 c 0 379.333 132.333 380 136 380 140 c 0 380 168 371.667 186.667 355 196 c 2 354 197 l 1 354 197 l 1 354 197 l 1 354 197 l 1 340.667 204.333 322 208 298 208 c 2 206 208 l 1 EndSplineSet EndChar StartChar: uni049A Encoding: 1178 1178 513 Width: 722 Flags: W Fore 224 0 m 1 74 0 l 1 74 729 l 1 224 729 l 1 224 450 l 1 509 729 l 1 686 729 l 1 320 378 l 1 717 0 l 1 538 0 l 1 224 285 l 1 224 0 l 1 EndSplineSet EndChar StartChar: uni049B Encoding: 1179 1179 514 Width: 573 Flags: W Fore 199 351 m 1 361 540 l 1 509 540 l 1 295 296 l 1 548 0 l 1 366 0 l 1 199 198 l 1 199 0 l 1 59 0 l 1 59 540 l 1 199 540 l 1 199 351 l 1 EndSplineSet EndChar StartChar: uni049C Encoding: 1180 1180 515 Width: 722 Flags: W Fore 224 0 m 1 74 0 l 1 74 729 l 1 224 729 l 1 224 450 l 1 509 729 l 1 686 729 l 1 320 378 l 1 717 0 l 1 538 0 l 1 224 285 l 1 224 0 l 1 EndSplineSet EndChar StartChar: uni049D Encoding: 1181 1181 516 Width: 573 Flags: W Fore 199 351 m 1 361 540 l 1 509 540 l 1 295 296 l 1 548 0 l 1 366 0 l 1 199 198 l 1 199 0 l 1 59 0 l 1 59 540 l 1 199 540 l 1 199 351 l 1 EndSplineSet EndChar StartChar: uni049E Encoding: 1182 1182 517 Width: 722 Flags: W Fore 224 0 m 1 74 0 l 1 74 729 l 1 224 729 l 1 224 450 l 1 509 729 l 1 686 729 l 1 320 378 l 1 717 0 l 1 538 0 l 1 224 285 l 1 224 0 l 1 EndSplineSet EndChar StartChar: uni049F Encoding: 1183 1183 518 Width: 573 Flags: W Fore 199 351 m 1 361 540 l 1 509 540 l 1 295 296 l 1 548 0 l 1 366 0 l 1 199 198 l 1 199 0 l 1 59 0 l 1 59 540 l 1 199 540 l 1 199 351 l 1 EndSplineSet EndChar StartChar: uni04A0 Encoding: 1184 1184 519 Width: 722 Flags: W Fore 224 0 m 1 74 0 l 1 74 729 l 1 224 729 l 1 224 450 l 1 509 729 l 1 686 729 l 1 320 378 l 1 717 0 l 1 538 0 l 1 224 285 l 1 224 0 l 1 EndSplineSet EndChar StartChar: uni04A1 Encoding: 1185 1185 520 Width: 573 Flags: W Fore 199 351 m 1 361 540 l 1 509 540 l 1 295 296 l 1 548 0 l 1 366 0 l 1 199 198 l 1 199 0 l 1 59 0 l 1 59 540 l 1 199 540 l 1 199 351 l 1 EndSplineSet EndChar StartChar: uni04A2 Encoding: 1186 1186 521 Width: 722 Flags: W Ref: 72 72 N 1 0 0 1 0 0 EndChar StartChar: uni04A3 Encoding: 1187 1187 522 Width: 608 Flags: W Fore 60 540 m 1 200 540 l 1 200 320 l 1 403 320 l 1 403 540 l 1 543 540 l 1 543 0 l 1 403 0 l 1 403 207 l 1 200 207 l 1 200 0 l 1 60 0 l 1 60 540 l 1 EndSplineSet EndChar StartChar: uni04A4 Encoding: 1188 1188 523 Width: 722 Flags: W Ref: 72 72 N 1 0 0 1 0 0 EndChar StartChar: uni04A5 Encoding: 1189 1189 524 Width: 608 Flags: W Fore 60 540 m 1 200 540 l 1 200 320 l 1 403 320 l 1 403 540 l 1 543 540 l 1 543 0 l 1 403 0 l 1 403 207 l 1 200 207 l 1 200 0 l 1 60 0 l 1 60 540 l 1 EndSplineSet EndChar StartChar: uni04A6 Encoding: 1190 1190 525 Width: 722 Flags: W Fore 507 604 m 1 218 604 l 1 218 0 l 1 68 0 l 1 68 729 l 1 657 729 l 1 657 0 l 1 507 0 l 1 507 604 l 1 EndSplineSet EndChar StartChar: uni04A7 Encoding: 1191 1191 526 Width: 608 Flags: W Fore 60 540 m 1 543 540 l 1 543 0 l 1 403 0 l 1 403 427 l 1 200 427 l 1 200 0 l 1 60 0 l 1 60 540 l 1 EndSplineSet EndChar StartChar: uni04A8 Encoding: 1192 1192 527 Width: 722 Flags: W Ref: 67 67 N 1 0 0 1 0 0 EndChar StartChar: uni04A9 Encoding: 1193 1193 528 Width: 556 Flags: W Ref: 99 99 N 1 0 0 1 0 0 EndChar StartChar: uni04AA Encoding: 1194 1194 529 Width: 722 Flags: W Ref: 67 67 N 1 0 0 1 0 0 EndChar StartChar: uni04AB Encoding: 1195 1195 530 Width: 556 Flags: W Ref: 99 99 N 1 0 0 1 0 0 EndChar StartChar: uni04AC Encoding: 1196 1196 531 Width: 611 Flags: W Ref: 84 84 N 1 0 0 1 0 0 EndChar StartChar: uni04AD Encoding: 1197 1197 532 Width: 454 Flags: W Fore 431 540 m 1 431 427 l 1 296 427 l 1 296 0 l 1 156 0 l 1 156 427 l 1 21 427 l 1 21 540 l 1 431 540 l 1 EndSplineSet EndChar StartChar: uni04AE Encoding: 1198 1198 533 Width: 667 Flags: W Ref: 89 89 N 1 0 0 1 0 0 EndChar StartChar: uni04AF Encoding: 1199 1199 534 Width: 556 Flags: W Fore 350 0 m 1 203 0 l 1 14 540 l 1 162 540 l 1 279 145 l 1 388 540 l 1 536 540 l 1 350 0 l 1 EndSplineSet EndChar StartChar: uni04B0 Encoding: 1200 1200 535 Width: 667 Flags: W Ref: 89 89 N 1 0 0 1 0 0 EndChar StartChar: uni04B1 Encoding: 1201 1201 536 Width: 556 Flags: W Fore 350 0 m 1 203 0 l 1 14 540 l 1 162 540 l 1 279 145 l 1 388 540 l 1 536 540 l 1 350 0 l 1 EndSplineSet EndChar StartChar: uni04B2 Encoding: 1202 1202 537 Width: 667 Flags: W Ref: 88 88 N 1 0 0 1 0 0 EndChar StartChar: uni04B3 Encoding: 1203 1203 538 Width: 556 Flags: W Ref: 120 120 N 1 0 0 1 0 0 EndChar StartChar: uni04B4 Encoding: 1204 1204 539 Width: 814 Flags: W Fore 507 125 m 1 507 729 l 1 657 729 l 1 657 108 l 1 767 108 l 1 767 -150 l 1 637 -150 l 1 637 0 l 1 68 0 l 1 68 729 l 1 218 729 l 1 218 125 l 1 507 125 l 1 EndSplineSet EndChar StartChar: uni04B5 Encoding: 1205 1205 540 Width: 685 Flags: W Fore 60 0 m 1 60 540 l 1 200 540 l 1 200 113 l 1 403 113 l 1 403 540 l 1 543 540 l 1 543 101 l 1 639 101 l 1 639 -125 l 1 529 -125 l 1 529 0 l 1 60 0 l 1 EndSplineSet EndChar StartChar: uni04B6 Encoding: 1206 1206 541 Width: 675 Flags: W Fore 464 274 m 1 218 274 l 2 166 274.667 125.333 291 96 323 c 2 95 324 l 2 77 344 68 366.667 68 392 c 2 68 729 l 1 218 729 l 1 218 399 l 1 463 399 l 1 463 729 l 1 614 729 l 1 614 0 l 1 464 0 l 1 464 274 l 1 EndSplineSet EndChar StartChar: uni04B7 Encoding: 1207 1207 542 Width: 580 Flags: W Fore 60 540 m 1 200 540 l 1 200 278 l 1 378 278 l 1 378 540 l 1 518 540 l 1 518 0 l 1 378 0 l 1 378 165 l 1 200 165 l 2 107.333 165 60.6667 203 60 279 c 1 60 540 l 1 EndSplineSet EndChar StartChar: uni04B8 Encoding: 1208 1208 543 Width: 675 Flags: W Fore 464 274 m 1 218 274 l 2 166 274.667 125.333 291 96 323 c 2 95 324 l 2 77 344 68 366.667 68 392 c 2 68 729 l 1 218 729 l 1 218 399 l 1 463 399 l 1 463 729 l 1 614 729 l 1 614 0 l 1 464 0 l 1 464 274 l 1 EndSplineSet EndChar StartChar: uni04B9 Encoding: 1209 1209 544 Width: 580 Flags: W Fore 60 540 m 1 200 540 l 1 200 278 l 1 378 278 l 1 378 540 l 1 518 540 l 1 518 0 l 1 378 0 l 1 378 165 l 1 200 165 l 2 107.333 165 60.6667 203 60 279 c 1 60 540 l 1 EndSplineSet EndChar StartChar: uni04BA Encoding: 1210 1210 545 Width: 675 Flags: W Fore 218 455 m 1 464 455 l 2 516 454.333 556.667 438 586 406 c 2 587 405 l 2 605 385 614 362.333 614 337 c 2 614 0 l 1 464 0 l 1 464 330 l 1 219 330 l 1 219 0 l 1 68 0 l 1 68 729 l 1 218 729 l 1 218 455 l 1 EndSplineSet EndChar StartChar: uni04BB Encoding: 1211 1211 546 Width: 580 Flags: W Fore 518 0 m 1 378 0 l 1 378 262 l 1 200 262 l 1 200 0 l 1 60 0 l 1 60 540 l 1 200 540 l 1 200 375 l 1 378 375 l 2 470.667 375 517.333 337 518 261 c 1 518 0 l 1 EndSplineSet EndChar StartChar: uni04BC Encoding: 1212 1212 547 Width: 722 Flags: W Ref: 67 67 N 1 0 0 1 0 0 EndChar StartChar: uni04BD Encoding: 1213 1213 548 Width: 556 Flags: W Ref: 99 99 N 1 0 0 1 0 0 EndChar StartChar: uni04BE Encoding: 1214 1214 549 Width: 722 Flags: W Ref: 67 67 N 1 0 0 1 0 0 EndChar StartChar: uni04BF Encoding: 1215 1215 550 Width: 556 Flags: W Ref: 99 99 N 1 0 0 1 0 0 EndChar StartChar: uni04C0 Encoding: 1216 1216 551 Width: 278 Flags: W Ref: 73 73 N 1 0 0 1 0 0 EndChar StartChar: uni04C1 Encoding: 1217 1217 552 Width: 1093 Flags: W Ref: 1046 1046 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 383 174 EndChar StartChar: uni04C2 Encoding: 1218 1218 553 Width: 809 Flags: W Ref: 1078 1078 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 235 -15 EndChar StartChar: uni04C3 Encoding: 1219 1219 554 Width: 722 Flags: W Fore 224 0 m 1 74 0 l 1 74 729 l 1 224 729 l 1 224 450 l 1 509 729 l 1 686 729 l 1 320 378 l 1 717 0 l 1 538 0 l 1 224 285 l 1 224 0 l 1 EndSplineSet EndChar StartChar: uni04C4 Encoding: 1220 1220 555 Width: 573 Flags: W Fore 199 351 m 1 361 540 l 1 509 540 l 1 295 296 l 1 548 0 l 1 366 0 l 1 199 198 l 1 199 0 l 1 59 0 l 1 59 540 l 1 199 540 l 1 199 351 l 1 EndSplineSet EndChar StartChar: uni04C7 Encoding: 1223 1223 556 Width: 722 Flags: W Ref: 72 72 N 1 0 0 1 0 0 EndChar StartChar: uni04C8 Encoding: 1224 1224 557 Width: 608 Flags: W Fore 60 540 m 1 200 540 l 1 200 320 l 1 403 320 l 1 403 540 l 1 543 540 l 1 543 0 l 1 403 0 l 1 403 207 l 1 200 207 l 1 200 0 l 1 60 0 l 1 60 540 l 1 EndSplineSet EndChar StartChar: uni04CB Encoding: 1227 1227 558 Width: 675 Flags: W Fore 464 274 m 1 218 274 l 2 166 274.667 125.333 291 96 323 c 2 95 324 l 2 77 344 68 366.667 68 392 c 2 68 729 l 1 218 729 l 1 218 399 l 1 463 399 l 1 463 729 l 1 614 729 l 1 614 0 l 1 464 0 l 1 464 274 l 1 EndSplineSet EndChar StartChar: uni04CC Encoding: 1228 1228 559 Width: 580 Flags: W Fore 60 540 m 1 200 540 l 1 200 278 l 1 378 278 l 1 378 540 l 1 518 540 l 1 518 0 l 1 378 0 l 1 378 165 l 1 200 165 l 2 107.333 165 60.6667 203 60 279 c 1 60 540 l 1 EndSplineSet EndChar StartChar: uni04D0 Encoding: 1232 1232 560 Width: 722 Flags: W Ref: 728 728 N 1 0 0 1 193 179 Ref: 65 65 N 1 0 0 1 0 0 EndChar StartChar: uni04D1 Encoding: 1233 1233 561 Width: 556 Flags: W Ref: 728 728 N 1 0 0 1 108 0 Ref: 97 97 N 1 0 0 1 0 0 EndChar StartChar: uni04D2 Encoding: 1234 1234 562 Width: 722 Flags: W Ref: 168 168 N 1 0 0 1 198 179 Ref: 65 65 N 1 0 0 1 0 0 EndChar StartChar: uni04D3 Encoding: 1235 1235 563 Width: 556 Flags: W Ref: 168 168 N 1 0 0 1 106 0 Ref: 97 97 N 1 0 0 1 0 0 EndChar StartChar: uni04D4 Encoding: 1236 1236 564 Width: 1000 Flags: W Fore 430 152 m 1 207 152 l 1 154 0 l 1 1 0 l 1 264 729 l 1 946 729 l 1 946 604 l 1 580 604 l 1 580 439 l 1 919 439 l 1 919 314 l 1 580 314 l 1 580 125 l 1 966 125 l 1 966 0 l 1 430 0 l 1 430 152 l 1 430 277 m 1 430 604 l 1 363 604 l 1 249 277 l 1 430 277 l 1 EndSplineSet EndChar StartChar: uni04D5 Encoding: 1237 1237 565 Width: 889 Flags: W Fore 712 152 m 1 850 152 l 1 830 83.3333 787 33.6667 721 3 c 0 684.333 -14.3333 644 -23 600 -23 c 0 509.333 -23 442.667 11.6667 400 81 c 1 344.667 16.3333 283 -18.3333 215 -23 c 0 208.333 -23.6667 201.667 -24 195 -24 c 0 125 -24 76 1.66667 48 53 c 0 34 77.6667 27 107 27 141 c 0 27 231.667 74 287.333 168 308 c 2 186 312 l 1 242 322 l 2 287.333 329.333 315 335.333 325 340 c 2 330 343 l 2 345.333 351 353.333 364.333 354 383 c 0 354 418.333 325.667 436 269 436 c 0 223.667 436 195 423 183 397 c 0 179 387.667 176 376 174 362 c 1 43 362 l 1 45 486.667 121 549 271 549 c 0 349 549 407.333 532.333 446 499 c 1 487.333 532.333 539 549 601 549 c 0 690.333 549 758.333 516 805 450 c 1 806 450 l 1 818 432.667 828 413.333 836 392 c 0 850 352.667 857 305.333 857 250 c 1 856 226 l 1 494 226 l 1 494 184.667 500.667 153.667 514 133 c 0 535.333 100.333 566.667 84 608 84 c 0 646 84 675.667 97.6667 697 125 c 0 704.333 133.667 709.333 142.667 712 152 c 1 354 216 m 1 354 254 l 1 339.333 245.333 319.667 239 295 235 c 2 247 228 l 2 194.333 221.333 167.667 197 167 155 c 0 167 121 183.667 100 217 92 c 0 223.667 90 232.333 89 243 89 c 0 306.333 89 342.667 121 352 185 c 1 354 216 l 1 495 319 m 1 711 319 l 1 703.667 401 667.333 442 602 442 c 0 536.667 442 501 401 495 319 c 1 EndSplineSet EndChar StartChar: uni04D6 Encoding: 1238 1238 566 Width: 709 Flags: W Ref: 1045 1045 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 175 174 EndChar StartChar: uni04D7 Encoding: 1239 1239 567 Width: 556 Flags: W Ref: 101 101 N 1 0 0 1 0 0 Ref: 728 728 N 1 0 0 1 93 -15 EndChar StartChar: uni04D8 Encoding: 1240 1240 568 Width: 722 Flags: W Fore 522 249 m 1 190 249 l 1 196.667 177 230.333 131.333 291 112 c 0 309 106 329 103 351 103 c 0 428.333 103 482 141 512 217 c 1 522 249 l 1 535 355 m 1 535 356 l 2 535 468 504.333 544.333 443 585 c 0 419.667 601 393 610 363 612 c 0 357.667 612.667 352 613 346 613 c 0 292 613 251 595.333 223 560 c 0 209 542.667 198 516.667 190 482 c 1 47 482 l 1 51.6667 540.667 68 588.667 96 626 c 0 151.333 699.333 231.667 737.667 337 741 c 0 351 741 l 0 468.333 741 557 697.333 617 610 c 0 662.333 544 685 460 685 358 c 0 685 221.333 645.667 118.667 567 50 c 0 510.333 1.33333 439.667 -23 355 -23 c 0 239.667 -23 155 21.6667 101 111 c 0 63 173.667 44 255 44 355 c 1 535 355 l 1 EndSplineSet EndChar StartChar: afii10846 Encoding: 1241 1241 569 Width: 556 Flags: W Fore 382 266 m 1 382 267 l 2 382 348.333 360 400.667 316 424 c 0 301.333 432 285.333 436 268 436 c 0 228 436 199.333 417.667 182 381 c 1 182 380 l 1 168 339 l 1 34 339 l 1 42.6667 421.667 79 481.333 143 518 c 0 179.667 538.667 221.667 549 269 549 c 0 374.333 549 447.667 507.667 489 425 c 0 511 381.667 522 329 522 267 c 0 522 142.333 482.333 56.6667 403 10 c 0 379 -3.33333 352.333 -12.6667 323 -18 c 0 305.667 -21.3333 287 -23 267 -23 c 0 175 -23 108.667 9.66667 68 75 c 0 48.6667 107 37.3333 144.667 34 188 c 1 34 266 l 1 382 266 l 1 369 170 m 1 173 170 l 1 185 126 207 100.333 239 93 c 0 247 91 256.667 90 268 90 c 0 309.333 90 338.333 105.333 355 136 c 1 369 170 l 1 EndSplineSet EndChar StartChar: uni04DA Encoding: 1242 1242 570 Width: 722 Flags: W Ref: 1240 1240 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 191 208 EndChar StartChar: uni04DB Encoding: 1243 1243 571 Width: 556 Flags: W Ref: 1241 1241 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 109 -31 EndChar StartChar: uni04DC Encoding: 1244 1244 572 Width: 1093 Flags: W Ref: 1046 1046 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 384 158 EndChar StartChar: uni04DD Encoding: 1245 1245 573 Width: 809 Flags: W Ref: 1078 1078 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 236 -31 EndChar StartChar: uni04DE Encoding: 1246 1246 574 Width: 672 Flags: W Ref: 1047 1047 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 88 158 EndChar StartChar: uni04DF Encoding: 1247 1247 575 Width: 546 Flags: W Ref: 1079 1079 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 108 -31 EndChar StartChar: uni04E0 Encoding: 1248 1248 576 Width: 672 Flags: W Fore 250 428 m 1 326 428 l 2 417.333 428 463.333 462.333 464 531 c 0 464 571 442 598 398 612 c 0 380.667 618 360.667 621 338 621 c 0 248 621 197.667 587.667 187 521 c 0 185 511 l 0 185 510 185 510 185 507 c 1 45 507 l 1 45 569.667 62 620 96 658 c 0 146 713.333 224.333 741 331 741 c 0 454.333 741 537.333 703.667 580 629 c 0 598 597.667 607 560.333 607 517 c 0 607 455 586 408.333 544 377 c 1 598.667 347 628 299.333 632 234 c 1 633 213 l 1 633 119.667 592.333 53 511 13 c 0 463 -11 404 -23 334 -23 c 0 190.667 -23 97.6667 24.3333 55 119 c 0 41.6667 147.667 34 180.667 32 218 c 1 178 218 l 1 182 151.333 221 112 295 100 c 1 342 97 l 1 414 97 460 117 480 157 c 0 486 168.333 489 181 489 195 c 0 489 250.333 462.667 285.667 410 301 c 0 398 304.333 385 306.333 371 307 c 0 365 307.667 358.667 308 352 308 c 2 250 308 l 1 250 428 l 1 EndSplineSet EndChar StartChar: uni04E1 Encoding: 1249 1249 577 Width: 546 Flags: W Fore 206 208 m 1 206 318 l 1 300 318 l 2 341.333 318 363 334.667 365 368 c 0 365 374 l 2 365 389 l 2 365 411.667 350 427 320 435 c 0 309.333 437.667 297.333 439 284 439 c 0 218 439 184.333 414.667 183 366 c 1 48 366 l 1 49.3333 441.333 84.3333 494.333 153 525 c 0 189.667 541 233 549 283 549 c 0 375.667 549 440.667 521 478 465 c 0 492 443.667 500.667 419.333 504 392 c 1 505 369 l 1 505 332.333 495 303 475 281 c 1 461 271 l 1 500.333 246.333 520 209.333 520 160 c 0 520 106 500 62 460 28 c 0 458.667 26.6667 457.333 25.6667 456 25 c 0 416 -7 358.667 -23 284 -23 c 0 129.333 -23 45 29.3333 31 134 c 0 29.6667 141.333 29 149 29 157 c 1 166 157 l 1 171.333 133 180.333 116 193 106 c 1 212.333 93.3333 240 87 276 87 c 0 336 87 370 101 378 129 c 0 379.333 132.333 380 136 380 140 c 0 380 168 371.667 186.667 355 196 c 2 354 197 l 1 354 197 l 1 354 197 l 1 354 197 l 1 340.667 204.333 322 208 298 208 c 2 206 208 l 1 EndSplineSet EndChar StartChar: uni04E2 Encoding: 1250 1250 578 Width: 757 Flags: W Ref: 1048 1048 N 1 0 0 1 0 0 Ref: 175 175 N 1 0 0 1 199 139 EndChar StartChar: uni04E3 Encoding: 1251 1251 579 Width: 615 Flags: W Ref: 1080 1080 N 1 0 0 1 0 0 Ref: 175 175 N 1 0 0 1 136 -50 EndChar StartChar: uni04E4 Encoding: 1252 1252 580 Width: 757 Flags: W Ref: 1048 1048 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 198 158 EndChar StartChar: uni04E5 Encoding: 1253 1253 581 Width: 615 Flags: W Ref: 1080 1080 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 135 -31 EndChar StartChar: uni04E6 Encoding: 1254 1254 582 Width: 778 Flags: W Ref: 79 79 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 225 179 EndChar StartChar: uni04E7 Encoding: 1255 1255 583 Width: 611 Flags: W Ref: 111 111 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 136 0 EndChar StartChar: uni04E8 Encoding: 1256 1256 584 Width: 778 Flags: W Fore 390 741 m 0 494 741 577.333 707.333 640 640 c 0 705.333 570 739.333 479 742 367 c 1 742 354 l 2 742 265.333 718.333 186.333 671 117 c 0 661.667 103 651.333 90 640 78 c 0 577.333 10.6667 494.333 -23 391 -23 c 0 287.667 -23 204.667 10.6667 142 78 c 0 82 142 48.3333 224.333 41 325 c 1 40 359 l 1 40 463.667 69.3333 552 128 624 c 2 129 625 l 1 130 626 l 1 131 627 l 2 136 633 136 633 142 640 c 0 204 707.333 286.667 741 390 741 c 0 590 400 m 1 580 492 544.667 555.333 484 590 c 0 456.667 605.333 425.667 613 391 613 c 0 319 613 264.667 581.333 228 518 c 0 208.667 484.667 196.667 445.333 192 400 c 1 590 400 l 1 591 321 m 1 192 321 l 1 200 233 233 170.333 291 133 c 0 320.333 114.333 353.667 105 391 105 c 0 461 105 514.667 135.667 552 197 c 0 573.333 231.667 586.333 273 591 321 c 1 EndSplineSet EndChar StartChar: uni04E9 Encoding: 1257 1257 585 Width: 611 Flags: W Fore 301 549 m 0 411 549 488.333 507.333 533 424 c 0 557 378.667 569 323.667 569 259 c 0 569 153 534.333 75 465 25 c 0 420.333 -7 366 -23 302 -23 c 0 198 -23 123 15.3333 77 92 c 0 49 138 35 195 35 263 c 0 35 373.667 70.6667 454 142 504 c 0 185.333 534 238.333 549 301 549 c 0 426 303 m 1 416.667 367.667 390 409 346 427 c 0 332.667 433 318 436 302 436 c 0 253.333 436 217.667 411.333 195 362 c 0 186.333 344.667 180.667 325 178 303 c 1 426 303 l 1 427 224 m 1 178 224 l 1 186.667 161.333 212 120 254 100 c 0 268.667 93.3333 284.667 90 302 90 c 0 349.333 90 384.667 113.667 408 161 c 0 417.333 179.667 423.667 200.667 427 224 c 1 EndSplineSet EndChar StartChar: uni04EA Encoding: 1258 1258 586 Width: 778 Flags: W Ref: 1256 1256 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 225 208 EndChar StartChar: uni04EB Encoding: 1259 1259 587 Width: 611 Flags: W Ref: 1257 1257 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 136 19 EndChar StartChar: uni04EC Encoding: 1260 1260 588 Width: 722 Flags: W Ref: 1069 1069 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 123 158 EndChar StartChar: uni04ED Encoding: 1261 1261 589 Width: 564 Flags: W Ref: 1101 1101 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 95 -31 EndChar StartChar: uni04EE Encoding: 1262 1262 590 Width: 718 Flags: W Ref: 1059 1059 N 1 0 0 1 0 0 Ref: 175 175 N 1 0 0 1 190 139 EndChar StartChar: uni04EF Encoding: 1263 1263 591 Width: 556 Flags: W Ref: 121 121 N 1 0 0 1 0 0 Ref: 175 175 N 1 0 0 1 114 -50 EndChar StartChar: uni04F0 Encoding: 1264 1264 592 Width: 718 Flags: W Ref: 1059 1059 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 189 158 EndChar StartChar: uni04F1 Encoding: 1265 1265 593 Width: 556 Flags: W Ref: 121 121 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 113 -31 EndChar StartChar: uni04F2 Encoding: 1266 1266 594 Width: 718 Flags: W Ref: 1059 1059 N 1 0 0 1 0 0 Ref: 733 733 N 1 0 0 1 207 169 EndChar StartChar: uni04F3 Encoding: 1267 1267 595 Width: 556 Flags: W Ref: 121 121 N 1 0 0 1 0 0 Ref: 733 733 N 1 0 0 1 131 -20 EndChar StartChar: uni04F4 Encoding: 1268 1268 596 Width: 685 Flags: W Ref: 1063 1063 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 175 158 EndChar StartChar: uni04F5 Encoding: 1269 1269 597 Width: 578 Flags: W Ref: 1095 1095 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 123 -31 EndChar StartChar: uni04F8 Encoding: 1272 1272 598 Width: 949 Flags: W Ref: 1067 1067 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 310 158 EndChar StartChar: uni04F9 Encoding: 1273 1273 599 Width: 811 Flags: W Ref: 1099 1099 N 1 0 0 1 0 0 Ref: 168 168 N 1 0 0 1 237 -31 EndChar StartChar: afii57799 Encoding: 1456 1456 600 Width: 82 Flags: W Fore 0 -172 m 1 82 -172 l 1 82 -254 l 1 0 -254 l 1 0 -172 l 1 0 -60 m 1 82 -60 l 1 82 -142 l 1 0 -142 l 1 0 -60 l 1 EndSplineSet EndChar StartChar: afii57801 Encoding: 1457 1457 601 Width: 347 Flags: W Fore 65 -172 m 1 147 -172 l 1 147 -254 l 1 65 -254 l 1 65 -172 l 1 0 -60 m 1 82 -60 l 1 82 -142 l 1 0 -142 l 1 0 -60 l 1 129 -60 m 1 212 -60 l 1 212 -142 l 1 129 -142 l 1 129 -60 l 1 265 -60 m 1 347 -60 l 1 347 -142 l 1 265 -142 l 1 265 -60 l 1 265 -172 m 1 347 -172 l 1 347 -254 l 1 265 -254 l 1 265 -172 l 1 EndSplineSet EndChar StartChar: afii57800 Encoding: 1458 1458 602 Width: 341 Flags: W Fore 0 -60 m 1 200 -60 l 1 200 -142 l 1 0 -142 l 1 0 -60 l 1 259 -60 m 1 341 -60 l 1 341 -142 l 1 259 -142 l 1 259 -60 l 1 259 -172 m 1 341 -172 l 1 341 -254 l 1 259 -254 l 1 259 -172 l 1 EndSplineSet EndChar StartChar: afii57802 Encoding: 1459 1459 603 Width: 341 Flags: W Fore 259 -172 m 1 341 -172 l 1 341 -254 l 1 259 -254 l 1 259 -172 l 1 259 -60 m 1 341 -60 l 1 341 -142 l 1 259 -142 l 1 259 -60 l 1 141 -142 m 1 141 -248 l 1 59 -248 l 1 59 -142 l 1 0 -142 l 1 0 -60 l 1 200 -60 l 1 200 -142 l 1 141 -142 l 1 EndSplineSet EndChar StartChar: afii57793 Encoding: 1460 1460 604 Width: 82 Flags: W Fore 0 -60 m 1 82 -60 l 1 82 -142 l 1 0 -142 l 1 0 -60 l 1 EndSplineSet EndChar StartChar: afii57794 Encoding: 1461 1461 605 Width: 211 Flags: W Fore 0 -60 m 1 82 -60 l 1 82 -142 l 1 0 -142 l 1 0 -60 l 1 129 -60 m 1 212 -60 l 1 212 -142 l 1 129 -142 l 1 129 -60 l 1 EndSplineSet EndChar StartChar: afii57795 Encoding: 1462 1462 606 Width: 211 Flags: W Fore 65 -172 m 1 147 -172 l 1 147 -254 l 1 65 -254 l 1 65 -172 l 1 0 -60 m 1 82 -60 l 1 82 -142 l 1 0 -142 l 1 0 -60 l 1 129 -60 m 1 212 -60 l 1 212 -142 l 1 129 -142 l 1 129 -60 l 1 EndSplineSet EndChar StartChar: afii57798 Encoding: 1463 1463 607 Width: 200 Flags: W Fore 0 -60 m 1 200 -60 l 1 200 -142 l 1 0 -142 l 1 0 -60 l 1 EndSplineSet EndChar StartChar: afii57797 Encoding: 1464 1464 608 Width: 200 Flags: W Fore 141 -142 m 1 141 -248 l 1 59 -248 l 1 59 -142 l 1 0 -142 l 1 0 -60 l 1 200 -60 l 1 200 -142 l 1 141 -142 l 1 EndSplineSet EndChar StartChar: afii57806 Encoding: 1465 1465 609 Width: 82 Flags: W Fore 0 742 m 1 82 742 l 1 82 660 l 1 0 660 l 1 0 742 l 1 EndSplineSet EndChar StartChar: afii57796 Encoding: 1467 1467 610 Width: 341 Flags: W Fore 259 -172 m 1 341 -172 l 1 341 -254 l 1 259 -254 l 1 259 -172 l 1 129 -113 m 1 212 -113 l 1 212 -195 l 1 129 -195 l 1 129 -113 l 1 0 -60 m 1 82 -60 l 1 82 -142 l 1 0 -142 l 1 0 -60 l 1 EndSplineSet EndChar StartChar: afii57807 Encoding: 1468 1468 611 Width: 82 Flags: W Fore 0 339 m 1 82 339 l 1 82 257 l 1 0 257 l 1 0 339 l 1 EndSplineSet EndChar StartChar: afii57839 Encoding: 1469 1469 612 Width: 82 Flags: W Fore 82 -60 m 1 82 -248 l 1 0 -248 l 1 0 -60 l 1 82 -60 l 1 EndSplineSet EndChar StartChar: afii57645 Encoding: 1470 1470 613 Width: 516 Flags: W Fore 63 485 m 1 63 600 l 1 444 600 l 1 444 485 l 1 63 485 l 1 EndSplineSet EndChar StartChar: afii57841 Encoding: 1471 1471 614 Width: 200 Flags: W Fore 0 742 m 1 200 742 l 1 200 660 l 1 0 660 l 1 0 742 l 1 EndSplineSet EndChar StartChar: afii57842 Encoding: 1472 1472 615 Width: 297 Flags: W Fore 79 -100 m 1 79 700 l 1 218 700 l 1 218 -100 l 1 79 -100 l 1 EndSplineSet EndChar StartChar: afii57804 Encoding: 1473 1473 616 Width: 1038 Flags: W Fore 650 721 m 1 732 721 l 1 732 639 l 1 650 639 l 1 650 721 l 1 EndSplineSet EndChar StartChar: afii57803 Encoding: 1474 1474 617 Width: 1038 Flags: W Fore 101 721 m 1 183 721 l 1 183 639 l 1 101 639 l 1 101 721 l 1 EndSplineSet EndChar StartChar: afii57658 Encoding: 1475 1475 618 Width: 333 Flags: W Ref: 58 58 N 1 0 0 1 0 0 EndChar StartChar: uni05C4 Encoding: 1476 1476 619 Width: 82 Flags: W Fore 0 742 m 1 82 742 l 1 82 660 l 1 0 660 l 1 0 742 l 1 EndSplineSet EndChar StartChar: afii57664 Encoding: 1488 1488 620 Width: 714 Flags: W Fore 286 285 m 1 262 255.667 245.333 221.333 236 182 c 0 235.333 180.667 235 179 235 177 c 1 228 148 l 1 228 0 l 1 89 0 l 1 89 158 l 1 100.333 220 116.333 268.333 137 303 c 0 145.667 317.667 156.667 333 170 349 c 0 181.333 363 195.333 376 212 388 c 1 61 600 l 1 222 600 l 1 425 315 l 1 449 344.333 465.667 377.333 475 414 c 1 482 444 l 1 482 600 l 1 621 600 l 1 621 433 l 1 610.333 373.667 592.333 325 567 287 c 1 540 250 l 1 528 236 514 223.333 498 212 c 1 650 0 l 1 487 0 l 1 286 285 l 1 EndSplineSet EndChar StartChar: afii57665 Encoding: 1489 1489 621 Width: 651 Flags: W Fore 380 115 m 1 380 365 l 1 372.667 397.667 365.667 419.333 359 430 c 0 358.333 431.333 357.333 433 356 435 c 2 350 444 l 2 345.333 450 341.333 454 338 456 c 2 333 459 l 2 315 469 289.667 477 257 483 c 2 247 485 l 1 77 485 l 1 77 600 l 1 259 600 l 1 315 593.333 363 579.667 403 559 c 2 409 556 l 2 435.667 543.333 456 525.333 470 502 c 1 493.333 469.333 509 431.667 517 389 c 1 517 388 l 1 519 374 l 1 519 115 l 1 610 115 l 1 610 0 l 1 77 0 l 1 77 115 l 1 380 115 l 1 EndSplineSet EndChar StartChar: afii57666 Encoding: 1490 1490 622 Width: 557 Flags: W Fore 347 138 m 1 220 0 l 1 47 0 l 1 224 194 l 1 341 194 l 1 322 361 l 1 312.667 397.667 305.667 420.667 301 430 c 1 292 444 l 1 286.667 450.667 282.333 454.667 279 456 c 2 274 459 l 2 256 469 230.667 477 198 483 c 2 188 485 l 1 115 485 l 1 115 600 l 1 200 600 l 1 255.333 594 302.667 580.667 342 560 c 0 350 556 l 0 376 543.333 396.667 525.333 412 502 c 0 430.667 475.333 445 441 455 399 c 1 455 398 l 1 460 378 l 1 503 0 l 1 363 0 l 1 347 138 l 1 EndSplineSet EndChar StartChar: afii57667 Encoding: 1491 1491 623 Width: 638 Flags: W Fore 344 485 m 1 63 485 l 1 63 600 l 1 566 600 l 1 566 485 l 1 483 485 l 1 483 0 l 1 344 0 l 1 344 485 l 1 EndSplineSet EndChar StartChar: afii57668 Encoding: 1492 1492 624 Width: 682 Flags: W Fore 612 374 m 1 612 374 l 1 612 0 l 1 473 0 l 1 473 365 l 1 465.667 397.667 458.667 419.333 452 430 c 0 451.333 432 450.333 433.667 449 435 c 2 443 444 l 2 437.667 450.667 434.333 454.667 433 456 c 2 432 456 l 1 426 459 l 2 408 469.667 382.667 478 350 484 c 2 340 485 l 1 79 485 l 1 79 600 l 1 352 600 l 1 408 594 456 580.667 496 560 c 2 502 556 l 1 528 544 548.667 526 564 502 c 1 587.333 469.333 602.667 431.333 610 388 c 1 612 374 l 1 79 0 m 1 79 349 l 1 218 349 l 1 218 0 l 1 79 0 l 1 EndSplineSet EndChar StartChar: afii57669 Encoding: 1493 1493 625 Width: 297 Flags: W Fore 79 0 m 1 79 600 l 1 218 600 l 1 218 0 l 1 79 0 l 1 EndSplineSet EndChar StartChar: afii57670 Encoding: 1494 1494 626 Width: 443 Flags: W Fore 149 485 m 1 63 485 l 1 63 600 l 1 371 600 l 1 371 485 l 1 288 485 l 1 288 0 l 1 149 0 l 1 149 485 l 1 EndSplineSet EndChar StartChar: afii57671 Encoding: 1495 1495 627 Width: 682 Flags: W Fore 612 374 m 1 612 0 l 1 473 0 l 1 473 365 l 1 465.667 397.667 458.667 419.333 452 430 c 0 451.333 431.333 450.333 433 449 435 c 2 443 444 l 2 437.667 450.667 434.333 454.333 433 455 c 2 432 456 l 1 426 459 l 2 408 469 382.667 477 350 483 c 2 340 485 l 1 218 485 l 1 218 0 l 1 79 0 l 1 79 600 l 1 352 600 l 1 400 598 446.667 585 492 561 c 0 495.333 559.667 498.667 558 502 556 c 0 528 543.333 548.667 525.333 564 502 c 0 587.333 468.667 602.667 430.667 610 388 c 1 612 374 l 1 EndSplineSet EndChar StartChar: afii57672 Encoding: 1496 1496 628 Width: 670 Flags: W Fore 340 485 m 1 340 485 l 1 322 485 306.667 481 294 473 c 1 294 595 l 1 316 598.333 333 600 345 600 c 0 395 600 446.333 585.333 499 556 c 1 523.667 544 544 526 560 502 c 0 584 467.333 599.667 428.667 607 386 c 2 609 374 l 1 609 226 l 1 601.667 180 588 141.333 568 110 c 2 560 98 l 2 544.667 74 524.333 56 499 44 c 1 447 14.6667 394.667 -8.67362e-19 342 0 c 0 290.667 0 238.667 14.6667 186 44 c 1 161.333 56 141 74 125 98 c 0 101 132.667 85.3333 171.333 78 214 c 2 76 226 l 1 76 600 l 1 215 600 l 1 215 235 l 1 222.333 202.333 229.333 180.667 236 170 c 0 236.667 168.667 237.667 167 239 165 c 2 245 156 l 1 251 149.333 255.333 145 258 143 c 2 262 141 l 2 291.333 125.667 311 117.333 321 116 c 1 321 116 l 1 321 116 l 1 342 115 l 1 363.333 115.667 381.667 119.667 397 127 c 1 397 128 l 1 398 128 l 1 422 141 l 2 429.333 145 434 148.333 436 151 c 0 437.333 152.333 438.667 154 440 156 c 0 452 172.667 461 194.333 467 221 c 1 467 222 l 1 467 222 l 1 470 235 l 1 470 365 l 1 462.667 397.667 456 419.333 450 430 c 0 448.667 431.333 447.667 433 447 435 c 1 440 444 l 2 434.667 450.667 430.667 454.667 428 456 c 2 422 459 l 2 393.333 473.667 375.333 481.667 368 483 c 1 368 483 l 1 340 485 l 1 EndSplineSet EndChar StartChar: afii57673 Encoding: 1497 1497 629 Width: 284 Flags: W Fore 212 333 m 1 73 276 l 1 73 600 l 1 212 600 l 1 212 333 l 1 EndSplineSet EndChar StartChar: afii57674 Encoding: 1498 1498 630 Width: 590 Flags: W Fore 381 -200 m 1 381 365 l 1 373.667 397.667 366.667 419.333 360 430 c 0 359.333 431.333 358.333 433 357 435 c 2 351 444 l 2 345.667 450.667 341.333 454.667 338 456 c 2 333 459 l 2 315.667 469 290.667 477 258 483 c 2 257 483 l 1 248 485 l 1 62 485 l 1 62 600 l 1 259 600 l 1 314.333 594 362.333 580.667 403 560 c 2 410 556 l 2 434.667 544 455 526 471 502 c 0 495 467.333 510.667 428.667 518 386 c 2 520 374 l 1 520 -200 l 1 381 -200 l 1 EndSplineSet EndChar StartChar: afii57675 Encoding: 1499 1499 631 Width: 595 Flags: W Fore 273 0 m 1 273 0 l 1 76 0 l 1 76 115 l 1 262 115 l 1 298 121.667 322.333 128.333 335 135 c 2 336 135 l 1 347 141 l 2 353.667 145 358 148.333 360 151 c 0 362 153 362 153 365 156 c 0 377 172.667 386 194.333 392 221 c 1 392 222 l 1 392 222 l 1 395 235 l 1 395 365 l 1 387.667 397.667 380.667 419.333 374 430 c 0 373.333 431.333 372.333 433 371 435 c 2 365 444 l 1 359 450.667 354.667 454.667 352 456 c 2 347 459 l 2 329 469 304 477 272 483 c 2 271 483 l 1 262 485 l 1 76 485 l 1 76 600 l 1 273 600 l 1 328.333 594 376 580.667 416 560 c 2 424 556 l 2 448.667 544 469 526 485 502 c 0 509 467.333 524.667 428.667 532 386 c 2 534 374 l 1 534 226 l 1 526.667 180 512.667 141.333 492 110 c 1 485 98 l 1 469 74 448.667 56 424 44 c 0 381.333 22 333.667 7.66667 281 1 c 2 273 0 l 1 EndSplineSet EndChar StartChar: afii57676 Encoding: 1500 1500 632 Width: 667 Flags: W Fore 410 101 m 1 410 0 l 1 271 0 l 1 271 107 l 1 276.333 151.667 280.333 177.333 283 184 c 0 287.667 200.667 295.667 217 307 233 c 0 326.333 259.667 356.333 285 397 309 c 0 417 321 429 330.333 433 337 c 0 443 351.667 449.667 372.333 453 399 c 1 453 400 l 1 453 400 l 1 456 419 l 1 456 485 l 1 62 485 l 1 62 750 l 1 201 750 l 1 201 600 l 1 595 600 l 1 595 412 l 1 591.667 366 583.667 331.333 571 308 c 2 559 287 l 1 538.333 255.667 506 227.667 462 203 c 0 446 193.667 436.333 187 433 183 c 0 419 165 411.333 144 410 120 c 1 410 119 l 1 410 101 l 1 EndSplineSet EndChar StartChar: afii57677 Encoding: 1501 1501 633 Width: 683 Flags: W Fore 613 0 m 1 80 0 l 1 80 600 l 1 346 600 l 2 404.667 600 457 585.333 503 556 c 0 548.333 527.333 580.667 488.333 600 439 c 0 608.667 416.333 613 393 613 369 c 2 613 0 l 1 474 115 m 1 474 369 l 1 472 402.333 460 429.333 438 450 c 1 426 459 l 1 399.333 475.667 372.667 484.333 346 485 c 2 219 485 l 1 219 115 l 1 474 115 l 1 EndSplineSet EndChar StartChar: afii57678 Encoding: 1502 1502 634 Width: 704 Flags: W Fore 298 485 m 1 226 0 l 1 86 0 l 1 158 485 l 1 67 485 l 1 67 600 l 1 367 600 l 2 413.667 600 454.667 591.667 490 575 c 0 541.333 551.667 580 518 606 474 c 0 624 445.333 633 410.333 633 369 c 2 633 0 l 1 363 0 l 1 363 115 l 1 494 115 l 1 494 369 l 2 494 390.333 490 407.333 482 420 c 0 467.333 441.333 455.667 455 447 461 c 2 446 461 l 1 445 462 l 1 445 462 l 1 444 463 l 1 443 463 l 1 421 475 l 2 407.667 481.667 389.667 485 367 485 c 2 298 485 l 1 EndSplineSet EndChar StartChar: afii57679 Encoding: 1503 1503 635 Width: 297 Flags: W Fore 79 -200 m 1 79 600 l 1 218 600 l 1 218 -200 l 1 79 -200 l 1 EndSplineSet EndChar StartChar: afii57680 Encoding: 1504 1504 636 Width: 429 Flags: W Fore 359 0 m 1 73 0 l 1 73 115 l 1 220 115 l 1 220 365 l 1 212.667 397.667 205.667 419.333 199 430 c 0 198.333 431.333 197.333 433 196 435 c 2 190 444 l 2 186 449.333 180 454.333 172 459 c 2 171 460 l 1 170 461 l 2 142.667 477 114 485 84 485 c 1 84 600 l 1 144 600 199.667 585 251 555 c 0 277.667 539.667 297.333 522 310 502 c 1 338 462 354 424.333 358 389 c 1 358 388 l 1 359 374 l 1 359 0 l 1 EndSplineSet EndChar StartChar: afii57681 Encoding: 1505 1505 637 Width: 670 Flags: W Fore 342 0 m 1 342 0 l 1 291.333 -0.666667 239.333 14 186 44 c 1 160.667 56 140.333 74 125 98 c 1 97 138 81 175.667 77 211 c 1 76 226 l 1 76 600 l 1 348 600 l 1 395.333 598 441.667 585.333 487 562 c 2 488 562 l 1 488 561 l 1 499 556 l 2 523 544 543.333 526 560 502 c 0 583.333 467.333 599 428.667 607 386 c 1 609 374 l 1 609 226 l 1 601.667 180 587.667 141.333 567 110 c 1 560 98 l 1 544 74 523.667 56 499 44 c 1 445 14 392.667 -0.666667 342 0 c 1 342 115 m 1 363.333 115.667 381.333 119.667 396 127 c 2 397 128 l 1 398 128 l 1 422 141 l 2 428.667 145 433 148.333 435 151 c 0 437 153 437 153 440 156 c 0 452 172.667 461 194.333 467 221 c 1 467 222 l 1 467 222 l 1 470 235 l 1 470 365 l 1 462 397.667 455 419.333 449 430 c 0 447.667 431.333 446.667 433 446 435 c 1 440 444 l 1 434 450.667 429.667 454.667 427 456 c 2 422 459 l 2 404 469 378.667 477 346 483 c 1 346 483 l 1 337 485 l 1 215 485 l 1 215 235 l 1 222.333 202.333 229 180.667 235 170 c 0 236.333 168.667 237.333 167 238 165 c 1 245 156 l 2 250.333 149.333 254.667 145 258 143 c 2 262 141 l 2 290.667 125.667 310 117.333 320 116 c 2 321 116 l 1 321 116 l 1 342 115 l 1 EndSplineSet EndChar StartChar: afii57682 Encoding: 1506 1506 638 Width: 653 Flags: W Fore 346 136 m 1 373.333 147.333 392 158 402 168 c 1 402 168 l 1 403 169 403 169 405 171 c 0 419 185.667 428.667 205.667 434 231 c 1 440 262 l 1 440 600 l 1 579 600 l 1 579 252 l 1 570.333 204 561.333 171 552 153 c 0 543.333 135.667 531.333 118.333 516 101 c 0 490.667 73 455.333 50.3333 410 33 c 2 377 21 l 1 60 -55 l 1 60 65 l 1 212 101 l 1 99 600 l 1 241 600 l 1 346 136 l 1 EndSplineSet EndChar StartChar: afii57683 Encoding: 1507 1507 639 Width: 661 Flags: W Fore 451 -200 m 1 451 367 l 1 447.667 395 445 410.667 443 414 c 2 439 421 l 2 425 442.333 413.333 455.667 404 461 c 2 403 462 l 1 403 462 l 1 402 463 l 1 377 476 l 2 364.333 482.667 309 486 211 486 c 1 211 407 l 2 211 383.667 214.667 369.333 222 364 c 0 229.333 358.667 244 356 266 356 c 2 319 356 l 1 319 241 l 1 254 241 l 1 212.667 246.333 190.667 249.333 188 250 c 0 163.333 256.667 141 268 121 284 c 1 88.3333 313.333 72 351.333 72 398 c 2 72 601 l 1 328 601 l 1 374 599.667 413.667 591.333 447 576 c 0 498.333 552.667 537 519 563 475 c 0 577 452.333 585.333 423.333 588 388 c 1 590 373 l 1 590 -200 l 1 451 -200 l 1 EndSplineSet EndChar StartChar: afii57684 Encoding: 1508 1508 640 Width: 660 Flags: W Fore 335 0 m 1 335 0 l 1 79 0 l 1 79 115 l 1 327 115 l 1 358.333 118.333 375.667 120.667 379 122 c 0 380.333 122.667 382 123.667 384 125 c 0 406.667 137 422 147.667 430 157 c 2 431 158 l 1 431 159 l 1 434.333 163 439.333 170 446 180 c 0 451.333 186.667 455 200.333 457 221 c 1 458 234 l 1 458 366 l 1 454.667 394 452 409.667 450 413 c 1 450 414 l 1 449 415 l 1 449 416 l 1 448 417 l 1 446 420 l 2 432 441.333 420.333 454.667 411 460 c 1 411 461 l 1 410 461 l 1 409 462 l 1 384 475 l 2 371.333 481.667 316 485 218 485 c 1 218 406 l 2 218 383.333 221.667 369.333 229 364 c 0 236.333 358 251 355 273 355 c 2 326 355 l 1 326 240 l 1 261 240 l 1 220.333 245.333 198.333 248.333 195 249 c 0 171 255.667 148.667 267 128 283 c 1 96 313 79.6667 349.333 79 392 c 1 79 397 l 1 79 600 l 1 335 600 l 1 381.667 598.667 420.667 590.667 452 576 c 0 452.667 576 453.333 575.667 454 575 c 0 505.333 551.667 544 518 570 474 c 0 584 451.333 592.667 422.333 596 387 c 1 597 372 l 1 597 228 l 1 590 173 l 1 586.667 157 580 141.333 570 126 c 1 544 82 505.333 48.3333 454 25 c 0 426.667 11.6667 391 3.66667 347 1 c 2 346 1 l 1 345 1 l 1 344 1 l 1 343 1 l 1 335 0 l 1 EndSplineSet EndChar StartChar: afii57685 Encoding: 1509 1509 641 Width: 616 Flags: W Fore 337 362 m 1 350.333 363.333 358.667 365.333 362 368 c 2 379 382 l 1 391.667 395.333 400.333 416 405 444 c 1 405 600 l 1 544 600 l 1 544 433 l 1 537.333 395.667 522.667 361.333 500 330 c 1 500 329 l 1 494 321 l 2 477.333 296.333 456 278.333 430 267 c 0 408.667 258.333 387.667 252.333 367 249 c 1 367 -200 l 1 228 -200 l 1 228 286 l 1 27 600 l 1 185 600 l 1 337 362 l 1 EndSplineSet EndChar StartChar: afii57686 Encoding: 1510 1510 642 Width: 671 Flags: W Fore 373 362 m 1 386.333 363.333 394.333 365.333 397 368 c 0 400.333 370 403.333 372.667 406 376 c 2 407 377 l 1 407 377 l 1 411 382 l 2 422.333 396.667 431.667 416.333 439 441 c 2 440 444 l 1 440 600 l 1 579 600 l 1 579 433 l 1 572.333 395.667 557.667 361.333 535 330 c 1 535 329 l 1 529 321 l 2 509 291 479.333 270 440 258 c 1 606 0 l 1 86 0 l 1 86 115 l 1 374 115 l 1 61 600 l 1 219 600 l 1 373 362 l 1 EndSplineSet EndChar StartChar: afii57687 Encoding: 1511 1511 643 Width: 672 Flags: W Fore 489 94 m 1 489 94 l 1 445 69.3333 404 55 366 51 c 2 335 49 l 1 335 165 l 1 341 164 l 1 368.333 169.333 385 173.667 391 177 c 2 392 177 l 1 392 177 l 1 412 190 l 2 420.667 196.667 426.667 202 430 206 c 0 442.667 222.667 451.667 244.667 457 272 c 0 458.333 277.333 459.333 281.667 460 285 c 1 460 485 l 1 80 485 l 1 80 600 l 1 599 600 l 1 599 276 l 1 593 230 578.333 190 555 156 c 2 550 148 l 2 536 126.667 515.667 108.667 489 94 c 1 219 371 m 1 219 -200 l 1 80 -200 l 1 80 371 l 1 219 371 l 1 EndSplineSet EndChar StartChar: afii57688 Encoding: 1512 1512 644 Width: 600 Flags: W Fore 530 374 m 1 530 374 l 1 530 0 l 1 391 0 l 1 391 365 l 1 383.667 397.667 376.667 419.333 370 430 c 0 369.333 432 368.333 433.667 367 435 c 2 361 444 l 2 355.667 450.667 352.333 454.667 351 456 c 2 350 456 l 1 344 459 l 2 326 469.667 300.667 478 268 484 c 2 258 485 l 1 63 485 l 1 63 600 l 1 270 600 l 1 326 594 374 580.667 414 560 c 2 420 556 l 1 446 544 466.667 526 482 502 c 1 505.333 469.333 520.667 431.333 528 388 c 1 530 374 l 1 EndSplineSet EndChar StartChar: afii57689 Encoding: 1513 1513 645 Width: 840 Flags: W Fore 215 323 m 1 283 323 l 2 303.667 323 319.667 328.667 331 340 c 1 344.333 351.333 351 367 351 387 c 2 351 600 l 1 490 600 l 1 490 387 l 2 490 333.667 470.667 291.333 432 260 c 1 399.333 228.667 357 211.333 305 208 c 1 283 208 l 1 230 208 l 1 236 198 l 1 252.667 174.667 267.667 158.667 281 150 c 2 310 133 l 1 336 121 360 115 382 115 c 2 461 115 l 2 483.667 115 507.333 121 532 133 c 0 559.333 147.667 578 161 588 173 c 1 588 173 l 1 606 198 l 1 620 220.667 627 243 627 265 c 2 627 600 l 1 766 600 l 1 766 265 l 1 766.667 221.667 754 180.667 728 142 c 0 698 95.3333 657 59.3333 605 34 c 1 562.333 11.3333 514.333 8.67362e-19 461 0 c 2 382 0 l 2 328.667 0 280.333 11.3333 237 34 c 1 185.667 58.6667 144.667 94.6667 114 142 c 1 88.6667 178 76 219 76 265 c 2 76 600 l 1 215 600 l 1 215 323 l 1 EndSplineSet EndChar StartChar: afii57690 Encoding: 1514 1514 646 Width: 756 Flags: W Fore 328 485 m 1 328 229 l 1 324 162 l 1 320 141.333 312.333 121.333 301 102 c 1 289.667 78.6667 268.333 59.3333 237 44 c 0 190.333 20 147.667 6 109 2 c 0 103 1.33333 96.6667 0.666667 90 0 c 0 82.6667 -0.666667 73.3333 1 62 5 c 1 62 121 l 1 89 115 l 1 90 115 l 2 108 115 122 117.333 132 122 c 2 148 129 l 2 159.333 134.333 168.667 142.333 176 153 c 0 182.667 163 186.333 179.333 187 202 c 0 187.667 214 188.333 224.333 189 233 c 1 189 485 l 1 123 485 l 1 123 600 l 1 425 600 l 1 481.667 593.333 530.667 579.667 572 559 c 1 572 559 l 1 575 557 l 2 602.333 543 623 525 637 503 c 1 660.333 469.667 675.667 431.667 683 389 c 1 685 374 l 1 685 0 l 1 546 0 l 1 546 366 l 1 538.667 398.667 532 420 526 430 c 2 525 431 l 2 521 437 521 437 516 445 c 0 510.667 451.667 507.333 455.333 506 456 c 2 505 457 l 1 499 460 l 2 481.667 469.333 457 477 425 483 c 0 420.333 483.667 416.333 484.333 413 485 c 2 328 485 l 1 EndSplineSet EndChar StartChar: afii57716 Encoding: 1520 1520 647 Width: 554 Flags: W Fore 79 0 m 1 79 600 l 1 218 600 l 1 218 0 l 1 79 0 l 1 336 0 m 1 336 600 l 1 475 600 l 1 475 0 l 1 336 0 l 1 EndSplineSet EndChar StartChar: afii57717 Encoding: 1521 1521 648 Width: 550 Flags: W Fore 212 333 m 1 73 276 l 1 73 600 l 1 212 600 l 1 212 333 l 1 332 0 m 1 332 600 l 1 471 600 l 1 471 0 l 1 332 0 l 1 EndSplineSet EndChar StartChar: afii57718 Encoding: 1522 1522 649 Width: 542 Flags: W Fore 212 333 m 1 73 276 l 1 73 600 l 1 212 600 l 1 212 333 l 1 470 333 m 1 331 276 l 1 331 600 l 1 470 600 l 1 470 333 l 1 EndSplineSet EndChar StartChar: uni05F3 Encoding: 1523 1523 650 Width: 238 Flags: W Fore 188 729 m 1 188 599 l 1 146 470 l 1 90 470 l 1 50 599 l 1 50 729 l 1 188 729 l 1 EndSplineSet EndChar StartChar: uni05F4 Encoding: 1524 1524 651 Width: 474 Flags: W Fore 188 729 m 1 188 599 l 1 146 470 l 1 90 470 l 1 50 599 l 1 50 729 l 1 188 729 l 1 424 729 m 1 424 599 l 1 382 470 l 1 326 470 l 1 286 599 l 1 286 729 l 1 424 729 l 1 EndSplineSet EndChar StartChar: uni0617 Encoding: 1559 1559 652 Width: 556 Flags: W Fore 522 273 m 1 522 157 l 1 448 157 l 1 448 0 l 1 308 0 l 1 308 157 l 1 24 157 l 1 24 275 l 1 283 709 l 1 448 709 l 1 448 273 l 1 522 273 l 1 308 273 m 1 308 576 l 1 123 273 l 1 308 273 l 1 EndSplineSet EndChar StartChar: uni0618 Encoding: 1560 1560 653 Width: 778 Flags: W Fore 711 392 m 1 711 -2 l 1 621 -2 l 1 603 94 l 1 557.667 27.3333 499.667 -10.6667 429 -20 c 0 414.333 -22 399 -23 383 -23 c 0 283.667 -23 202 13.3333 138 86 c 0 74 158 42 249 42 359 c 0 42 481 79 577.333 153 648 c 0 217 710 297.667 741 395 741 c 0 505.667 741 590 707.667 648 641 c 0 683.333 601 704.333 552.667 711 496 c 1 570 496 l 1 558.667 528 543.667 552.333 525 569 c 0 491.667 598.333 448.667 613 396 613 c 0 314 613 255.667 577 221 505 c 0 201.667 465.667 192 417.667 192 361 c 0 192 272.333 218.333 203.667 271 155 c 0 307 121.667 350 105 400 105 c 0 458 105 506.333 126.667 545 170 c 0 546.333 171.333 547.667 173 549 175 c 0 569.667 199 581.667 229.667 585 267 c 1 419 267 l 1 419 392 l 1 711 392 l 1 EndSplineSet EndChar StartChar: uni0619 Encoding: 1561 1561 654 Width: 944 Flags: W Fore 730 0 m 1 595 0 l 1 473 569 l 1 354 0 l 1 219 0 l 1 13 729 l 1 172 729 l 1 285 183 l 1 398 729 l 1 546 729 l 1 664 182 l 1 773 729 l 1 932 729 l 1 730 0 l 1 EndSplineSet EndChar StartChar: uni061A Encoding: 1562 1562 655 Width: 611 Flags: W Fore 408 540 m 1 541 540 l 1 541 -18 l 2 541 -104.667 500.333 -164 419 -196 c 0 393.667 -206 365 -212.667 333 -216 c 1 284 -218 l 1 202.667 -218 140.667 -200.667 98 -166 c 0 64 -137.333 46.3333 -103.667 45 -65 c 1 190 -65 l 1 201.333 -106.333 234.333 -127.333 289 -128 c 0 338.333 -128 373.333 -109.667 394 -73 c 0 403.333 -57 408 -38.6667 408 -18 c 2 408 55 l 1 371.333 13 335 -11.6667 299 -19 c 0 286.333 -21.6667 271.667 -23 255 -23 c 0 178.333 -23 119.667 10 79 76 c 0 49 124.667 34 185 34 257 c 0 34 351 60.3333 426.333 113 483 c 0 153.667 527 202 549 258 549 c 0 316 549 364.667 520.333 404 463 c 2 408 457 l 1 408 540 l 1 288 432 m 0 244.667 432 212.667 407.667 192 359 c 0 180 331 174 297.667 174 259 c 0 174 191 192.333 142.667 229 114 c 0 246.333 100.667 265.333 94 286 94 c 0 332.667 94 367.333 117.333 390 164 c 0 403.333 190.667 410 222.333 410 259 c 0 410 324.333 391.667 373.333 355 406 c 0 335 423.333 312.667 432 288 432 c 0 EndSplineSet EndChar StartChar: afii57403 Encoding: 1563 1563 656 Width: 278 Flags: W Fore 207 729 m 1 207 0 l 1 67 0 l 1 67 729 l 1 207 729 l 1 EndSplineSet EndChar StartChar: uni061C Encoding: 1564 1564 657 Width: 889 Flags: W Fore 60 540 m 1 199 540 l 1 199 473 l 1 235 516.333 273.667 541 315 547 c 1 347 549 l 1 411 549 457.333 526.667 486 482 c 2 487 481 l 2 489.667 477.667 492 473.667 494 469 c 1 532.667 520.333 585.333 547 652 549 c 1 730.667 549 783 519.667 809 461 c 0 819 438.333 824 412 824 382 c 2 824 0 l 1 684 0 l 1 684 360 l 2 684 395.333 667.667 417.667 635 427 c 0 627 429 618 430 608 430 c 0 561.333 430 531.333 408.667 518 366 c 0 514 354 512 340 512 324 c 2 512 0 l 1 372 0 l 1 372 360 l 2 372 395.333 355.667 417.667 323 427 c 0 315 429 306 430 296 430 c 0 249.333 430 219.333 408.667 206 366 c 0 202 354 200 340 200 324 c 2 200 0 l 1 60 0 l 1 60 540 l 1 EndSplineSet EndChar StartChar: afii57409 Encoding: 1569 1569 658 Width: 844 Flags: W Fore 810 324 m 1 412 223 l 1 390 301 l 1 529 334 l 1 523 339.333 512.667 356.667 498 386 c 1 492.667 402.667 489.667 419.333 489 436 c 0 489 470.667 503 501 531 527 c 1 557 547.667 586.333 557.333 619 556 c 2 647 554 l 1 678 548 l 1 717 539 l 1 713 507 l 1 710 486 l 1 709 467 l 1 686 471 l 1 668 474 l 1 653 476 l 1 639 477 l 2 623 478.333 608 473.667 594 463 c 1 580 453.667 572.667 441.667 572 427 c 0 572 411 579.667 397 595 385 c 0 610.333 373 626 367 642 367 c 0 654.667 367 683 373 727 385 c 2 796 403 l 1 810 324 l 1 EndSplineSet EndChar StartChar: afii57416 Encoding: 1576 1576 659 Width: 923 Flags: W Fore 509 -201 m 1 395 -201 l 1 395 -86 l 1 509 -86 l 1 509 -201 l 1 210 0 m 2 156 0 112.667 15.3333 80 46 c 1 56 74 44 116.667 44 174 c 2 44 246 l 1 157 246 l 1 157 192 l 2 157 172 162.333 155.667 173 143 c 1 180 139 l 2 188.667 134.333 199.667 131.333 213 130 c 2 232 129 l 1 763 129 l 2 788.333 129 801.333 137.667 802 155 c 0 802 163 798.667 173 792 185 c 1 741 284 l 1 839 352 l 1 859.667 317.333 875.333 289.333 886 268 c 0 908 220.667 920 187.333 922 168 c 1 923 157 l 1 923 85 898 37.3333 848 14 c 0 829.333 4.66667 807.667 4.33681e-19 783 0 c 2 210 0 l 2 EndSplineSet EndChar StartChar: afii57418 Encoding: 1578 1578 660 Width: 922 Flags: W Fore 575 324 m 1 474 324 l 1 474 425 l 1 575 425 l 1 575 324 l 1 438 324 m 1 337 324 l 1 337 425 l 1 438 425 l 1 438 324 l 1 210 0 m 2 156 0 112.667 15.3333 80 46 c 1 56 74 44 116.333 44 173 c 2 44 245 l 1 157 245 l 1 157 192 l 2 157 172 162.333 155.667 173 143 c 1 180 138 l 1 195 132 l 1 213 130 l 1 232 128 l 1 763 128 l 2 789 128 802 137 802 155 c 1 801 167 l 1 797 175 l 1 792 184 l 1 741 284 l 1 839 351 l 1 866 306 l 1 886 268 l 1 903 231 l 2 916.333 203 923 178.333 923 157 c 0 923 109.667 911.667 72.3333 889 45 c 0 865 15 829.667 0 783 0 c 2 210 0 l 2 EndSplineSet EndChar StartChar: afii57419 Encoding: 1579 1579 661 Width: 922 Flags: W Fore 557 409 m 1 456 409 l 1 456 306 l 1 557 306 l 1 557 409 l 1 431 409 m 1 331 409 l 1 331 306 l 1 431 306 l 1 431 409 l 1 493 530 m 1 390 530 l 1 390 428 l 1 493 428 l 1 493 530 l 1 210 0 m 2 156 0 112.667 15.3333 80 46 c 1 56 74 44 116.667 44 174 c 2 44 246 l 1 157 246 l 1 157 193 l 2 157 172.333 162.333 156 173 144 c 1 180 139 l 1 195 133 l 1 213 130 l 1 232 129 l 1 763 129 l 2 789 129 802 138 802 156 c 1 801 168 l 1 797 175 l 1 792 185 l 1 741 284 l 1 839 352 l 1 866 307 l 1 886 268 l 1 903 232 l 2 916.333 202.667 923 177.667 923 157 c 0 923 109.667 911.667 72.6667 889 46 c 1 865 15.3333 829.667 8.67362e-19 783 0 c 2 210 0 l 2 EndSplineSet EndChar StartChar: afii57421 Encoding: 1581 1581 662 Width: 649 Flags: W Fore 345 168 m 1 305 137 l 1 270 108 l 1 255 94 l 1 231 70 l 2 217.667 56.6667 206.667 43 198 29 c 0 177.333 -1.66667 166.667 -31.3333 166 -60 c 0 166 -104 182 -141.667 214 -173 c 0 252 -209.667 301.667 -228 363 -228 c 0 381 -228 401.667 -226.333 425 -223 c 1 491 -209 l 1 575 -178 l 1 630 -283 l 1 600 -299 557 -316 501 -334 c 0 484.333 -339.333 461.333 -344.333 432 -349 c 0 409.333 -353 387.667 -355 367 -355 c 0 331 -355 306 -353.667 292 -351 c 2 246 -343 l 1 228 -336 l 1 168 -318 122 -284.667 90 -236 c 0 60 -190 45 -134.333 45 -69 c 0 45 -11 66 46.6667 108 104 c 1 134 133 l 1 140 141 l 1 164 163 l 1 198 193 l 1 238 224 l 1 294 257 l 2 314 269 332 278 348 284 c 1 294 286 l 1 210 287 l 1 201 285 l 1 186 284 l 1 172 281 l 1 153 274 l 1 115 255 l 1 58 349 l 1 66 358 l 1 82 372 l 1 98 384 l 1 113 393 l 2 136.333 406.333 162 412.667 190 412 c 2 650 396 l 1 638 274 l 1 578 274 l 1 565 272 l 1 553 270 l 1 526 264 l 1 516 261 l 1 503 256 l 1 461 239 l 1 438 227 l 1 415 213 l 1 381 193 l 1 364 182 l 1 345 168 l 1 EndSplineSet EndChar StartChar: afii57422 Encoding: 1582 1582 663 Width: 704 Flags: W Fore 371 479 m 1 258 479 l 1 258 593 l 1 371 593 l 1 371 479 l 1 345 168 m 1 305 138 l 1 270 108 l 1 255 94 l 1 231 71 l 1 217 55.6667 206 41.6667 198 29 c 1 176.667 -1 166 -30.6667 166 -60 c 0 166 -103.333 182 -141 214 -173 c 0 251.333 -209 301 -227 363 -227 c 0 385.667 -227 406.333 -225.667 425 -223 c 0 439 -221 461 -216 491 -208 c 1 575 -177 l 1 630 -282 l 1 600 -298 557 -315 501 -333 c 0 485.667 -338.333 462.667 -343.667 432 -349 c 0 409.333 -353 387.667 -355 367 -355 c 0 335 -355 310 -353.333 292 -350 c 2 246 -342 l 1 228 -335 l 1 168 -317 122 -284 90 -236 c 0 60 -190 45 -134.333 45 -69 c 0 45 -11 66 46.6667 108 104 c 1 134 134 l 1 140 141 l 1 164 164 l 1 198 193 l 1 238 224 l 1 294 258 l 2 311.333 268 329.333 276.667 348 284 c 1 294 286 l 1 210 287 l 1 201 285 l 1 186 284 l 1 172 281 l 1 153 274 l 1 115 255 l 1 58 350 l 1 66 359 l 1 82 373 l 1 98 384 l 1 113 393 l 2 137.667 407 163.333 413.667 190 413 c 2 650 396 l 1 638 274 l 1 578 274 l 1 565 273 l 1 553 270 l 1 526 264 l 1 516 262 l 1 503 256 l 1 461 239 l 1 438 227 l 1 415 213 l 1 381 194 l 1 364 182 l 1 345 168 l 1 EndSplineSet EndChar StartChar: afii57427 Encoding: 1587 1587 664 Width: 1221 Flags: W Fore 1010 34 m 2 965.333 30.6667 919.333 57.6667 872 115 c 1 832 63 l 1 810 45 785 36 757 36 c 0 748.333 36 735.667 38 719 42 c 1 703 49 l 1 689 58 l 1 689 18 687.667 -4.33333 685 -9 c 1 683 -25 l 1 680 -43 l 1 677 -51 l 1 675 -61 l 1 671 -72 l 1 667 -83 l 1 662 -96 l 1 636 -150.667 604 -190.667 566 -216 c 0 514.667 -251.333 448.333 -269 367 -269 c 0 298.333 -269 237.667 -252 185 -218 c 1 152.333 -198 120.667 -159 90 -101 c 1 80 -71 l 1 70 -35 l 1 66 -11.6667 64 12 64 36 c 2 64 51 l 1 65 63 l 1 66 77 l 1 73 99 l 1 90 168 l 1 94 175 l 1 98 182 l 1 196 148 l 1 190 131 l 1 185 113 l 1 175 72 l 1 172 34 l 1 168 -24 190.667 -69.6667 240 -103 c 0 256 -113.667 275 -121.333 297 -126 c 2 315 -130 l 1 334 -132 l 1 351 -134 l 1 371 -135 l 2 442.333 -137 495.333 -120 530 -84 c 0 559.333 -54 574 -8.66667 574 52 c 0 574 81.3333 568.667 109 558 135 c 1 534 198 l 1 521 224 l 1 507 253 l 1 481 300 l 1 577 361 l 1 624 275 l 1 637 253 l 1 665 214 l 2 687 184.667 710.333 170 735 170 c 0 751 170 764.333 175.333 775 186 c 1 787 200.667 793 220 793 244 c 2 793 364 l 1 898 364 l 1 898 314 l 1 900 282 l 1 902 247.333 909.333 221.333 922 204 c 0 938 181.333 960.667 170 990 170 c 0 1026.67 170 1045.33 187.667 1046 223 c 0 1046 239 1035.67 264.667 1015 300 c 2 992 340 l 1 1089 400 l 1 1115 354 l 1 1127 330 l 1 1135 309 l 1 1147 282 l 1 1157 254 l 1 1161.67 236.667 1164 222 1164 210 c 2 1164 205 l 1 1164 187 l 1 1163 179 l 1 1161 166 l 1 1161 157 l 1 1159 153 l 1 1153 136 l 2 1145 112.667 1133.33 94 1118 80 c 1 1070 46 l 1 1040 37 l 1 1024 35 l 1 1010 34 l 2 EndSplineSet EndChar StartChar: endash Encoding: 8211 8211 665 Width: 556 Flags: W Fore 557 311 m 1 557 207 l 1 -9 207 l 1 -9 311 l 1 557 311 l 1 EndSplineSet EndChar StartChar: emdash Encoding: 8212 8212 666 Width: 1000 Flags: W Fore 1003 311 m 1 1003 207 l 1 -7 207 l 1 -7 311 l 1 1003 311 l 1 EndSplineSet EndChar StartChar: quoteleft Encoding: 8216 8216 667 Width: 278 Flags: W Fore 202 469 m 1 67 469 l 1 67 578 l 2 67 629.333 81 667.333 109 692 c 1 109.667 693.333 110.667 694.333 112 695 c 0 136.667 715.667 166.667 727 202 729 c 1 202 683 l 1 146.667 673 120 643.333 122 594 c 1 202 594 l 1 202 469 l 1 EndSplineSet KernsSLIF: 198 -62 0 0 197 -73 0 0 196 -73 0 0 193 -73 0 0 65 -73 0 0 EndChar StartChar: quoteright Encoding: 8217 8217 668 Width: 278 Flags: W Fore 66 729 m 1 201 729 l 1 201 620 l 2 201 568.667 187 530.667 159 506 c 1 158.333 504.667 157.333 503.667 156 503 c 0 131.333 482.333 101.333 471 66 469 c 1 66 515 l 1 121.333 525 148 554.667 146 604 c 1 66 604 l 1 66 729 l 1 EndSplineSet KernsSLIF: 198 -66 0 0 197 -77 0 0 196 -77 0 0 193 -77 0 0 65 -77 0 0 EndChar StartChar: quotesinglbase Encoding: 8218 8218 669 Width: 278 Flags: W Fore 66 125 m 1 201 125 l 1 201 16 l 2 201 -35.3333 187 -73.3333 159 -98 c 1 158.333 -99.3333 157.333 -100.333 156 -101 c 0 131.333 -121.667 101.333 -133 66 -135 c 1 66 -89 l 1 121.333 -79 148 -49.3333 146 0 c 1 66 0 l 1 66 125 l 1 EndSplineSet EndChar StartChar: quotedblleft Encoding: 8220 8220 670 Width: 500 Flags: W Fore 206 469 m 1 71 469 l 1 71 578 l 2 71 629.333 85 667.333 113 692 c 1 113.667 693.333 114.667 694.333 116 695 c 0 140.667 715.667 170.667 727 206 729 c 1 206 683 l 1 150.667 673 124 643.333 126 594 c 1 206 594 l 1 206 469 l 1 433 469 m 1 298 469 l 1 298 578 l 2 298 629.333 312 667.333 340 692 c 1 340.667 693.333 341.667 694.333 343 695 c 0 367.667 715.667 397.667 727 433 729 c 1 433 683 l 1 377.667 673 351 643.333 353 594 c 1 433 594 l 1 433 469 l 1 EndSplineSet KernsSLIF: 198 -57 0 0 197 -68 0 0 196 -68 0 0 193 -68 0 0 65 -68 0 0 EndChar StartChar: quotedblright Encoding: 8221 8221 671 Width: 500 Flags: W Fore 73 729 m 1 208 729 l 1 208 620 l 2 208 568.667 194 530.667 166 506 c 1 165.333 504.667 164.333 503.667 163 503 c 0 138.333 482.333 108.333 471 73 469 c 1 73 515 l 1 128.333 525 155 554.667 153 604 c 1 73 604 l 1 73 729 l 1 305 729 m 1 440 729 l 1 440 620 l 2 440 568.667 426 530.667 398 506 c 1 397.333 504.667 396.333 503.667 395 503 c 0 370.333 482.333 340.333 471 305 469 c 1 305 515 l 1 360.333 525 387 554.667 385 604 c 1 305 604 l 1 305 729 l 1 EndSplineSet KernsSLIF: 198 -57 0 0 197 -69 0 0 196 -69 0 0 193 -69 0 0 65 -69 0 0 EndChar StartChar: quotedblbase Encoding: 8222 8222 672 Width: 500 Flags: W Fore 72 125 m 1 207 125 l 1 207 16 l 2 207 -35.3333 193 -73.3333 165 -98 c 1 164.333 -99.3333 163.333 -100.333 162 -101 c 0 137.333 -121.667 107.333 -133 72 -135 c 1 72 -89 l 1 127.333 -79 154 -49.3333 152 0 c 1 72 0 l 1 72 125 l 1 297 125 m 1 432 125 l 1 432 16 l 2 432 -35.3333 418 -73.3333 390 -98 c 1 389.333 -99.3333 388.333 -100.333 387 -101 c 0 362.333 -121.667 332.333 -133 297 -135 c 1 297 -89 l 1 352.333 -79 379 -49.3333 377 0 c 1 297 0 l 1 297 125 l 1 EndSplineSet KernsSLIF: 89 -92 0 0 86 -73 0 0 84 -75 0 0 EndChar StartChar: dagger Encoding: 8224 8224 673 Width: 556 Flags: W Fore 523 485 m 1 523 369 l 1 344 369 l 1 344 -194 l 1 210 -194 l 1 210 369 l 1 31 369 l 1 31 485 l 1 210 485 l 1 210 709 l 1 344 709 l 1 344 485 l 1 523 485 l 1 EndSplineSet EndChar StartChar: daggerdbl Encoding: 8225 8225 674 Width: 556 Flags: W Fore 520 485 m 1 520 369 l 1 341 369 l 1 341 146 l 1 520 146 l 1 520 30 l 1 341 30 l 1 341 -194 l 1 207 -194 l 1 207 30 l 1 28 30 l 1 28 146 l 1 207 146 l 1 207 369 l 1 28 369 l 1 28 485 l 1 207 485 l 1 207 709 l 1 341 709 l 1 341 485 l 1 520 485 l 1 EndSplineSet EndChar StartChar: bullet Encoding: 8226 8226 675 Width: 350 Flags: W Fore 177 425 m 0 219 425 252.333 407.333 277 372 c 0 292.333 350.667 300 326.667 300 300 c 0 300 257.333 282.667 223.333 248 198 c 0 226 182.667 201.667 175 175 175 c 0 132.333 175 98.3333 192.333 73 227 c 0 57.6667 248.333 50 272.667 50 300 c 0 50 344 68 378.333 104 403 c 0 125.333 417.667 149.667 425 177 425 c 0 EndSplineSet EndChar StartChar: ellipsis Encoding: 8230 8230 676 Width: 1000 Flags: W Fore 242 146 m 1 242 0 l 1 92 0 l 1 92 146 l 1 242 146 l 1 575 146 m 1 575 0 l 1 425 0 l 1 425 146 l 1 575 146 l 1 908 146 m 1 908 0 l 1 758 0 l 1 758 146 l 1 908 146 l 1 EndSplineSet EndChar StartChar: perthousand Encoding: 8240 8240 677 Width: 1000 Flags: W Fore 160 739 m 0 210.667 739 250.667 719 280 679 c 0 300 653 310 623 310 589 c 0 310 542.333 291 504.333 253 475 c 0 225.667 453.667 195 443 161 443 c 0 111.667 443 72 462.333 42 501 c 0 21.3333 527.667 11 557.667 11 591 c 0 11 639 30.3333 678 69 708 c 0 95.6667 728.667 126 739 160 739 c 0 160 659 m 0 132.667 659 112.333 647 99 623 c 2 98 622 l 2 92.6667 612.667 90 602 90 590 c 0 90 562 102.333 541.333 127 528 c 0 137 522.667 148 520 160 520 c 0 188 520 209 532 223 556 c 0 228.333 566 231 577 231 589 c 0 231 617 218.667 637.667 194 651 c 0 184.667 655.667 173.333 658.333 160 659 c 0 496 738 m 1 563 738 l 1 142 -21 l 1 76 -21 l 1 496 738 l 1 471 274 m 0 521.667 274 561.667 254 591 214 c 0 611 188 621 158 621 124 c 0 621 76.6667 601.333 38.3333 562 9 c 0 535.333 -11.6667 505.333 -22 472 -22 c 0 422 -22 382 -2.33333 352 37 c 0 332 63 322 92.6667 322 126 c 0 322 174 341.333 213 380 243 c 0 406.667 263.667 437 274 471 274 c 0 471 194 m 0 443.667 194 423.333 182 410 158 c 0 404 148 401 137 401 125 c 0 401 97 413.667 76.3333 439 63 c 0 449 57.6667 460 55 472 55 c 0 499.333 55 519.667 67 533 91 c 0 539 101 542 112 542 124 c 0 542 152 529.667 172.667 505 186 c 0 494.333 191.333 483 194 471 194 c 0 840 274 m 0 890.667 274 930.667 254 960 214 c 0 980 188 990 158 990 124 c 0 990 76.6667 970.333 38.3333 931 9 c 0 904.333 -11.6667 874.333 -22 841 -22 c 0 791 -22 751 -2.33333 721 37 c 0 701 63 691 92.6667 691 126 c 0 691 174 710.333 213 749 243 c 0 775.667 263.667 806 274 840 274 c 0 840 194 m 0 812.667 194 792.333 182 779 158 c 0 773 148 770 137 770 125 c 0 770 97 782.667 76.3333 808 63 c 0 818 57.6667 829 55 841 55 c 0 868.333 55 888.667 67 902 91 c 0 908 101 911 112 911 124 c 0 911 152 898.667 172.667 874 186 c 0 863.333 191.333 852 194 840 194 c 0 EndSplineSet EndChar StartChar: guilsinglleft Encoding: 8249 8249 678 Width: 333 Flags: W Fore 83 218 m 1 83 332 l 1 250 481 l 1 250 364 l 1 149 275 l 1 250 186 l 1 250 72 l 1 83 218 l 1 EndSplineSet EndChar StartChar: guilsinglright Encoding: 8250 8250 679 Width: 333 Flags: W Fore 247 335 m 1 247 220 l 1 80 72 l 1 80 189 l 1 181 278 l 1 80 367 l 1 80 481 l 1 247 335 l 1 EndSplineSet KernsSLIF: 89 -107 0 0 86 -74 0 0 84 -104 0 0 EndChar StartChar: fraction Encoding: 8260 8260 680 Width: 167 Flags: W Fore 250 715 m 1 337 715 l 1 -86 -20 l 1 -173 -20 l 1 250 715 l 1 EndSplineSet EndChar StartChar: afii57636 Encoding: 8362 8362 681 Width: 1049 Flags: W Fore 840 231 m 1 840 600 l 1 979 600 l 1 979 231 l 2 979 188.333 970 153.333 952 126 c 1 926 82 887.333 48.3333 836 25 c 1 801.333 7 760.333 -1.33333 713 0 c 1 336 0 l 1 336 378 l 1 475 378 l 1 475 115 l 1 713 115 l 1 739 117.667 757 121 767 125 c 0 797 137.667 817.333 156 828 180 c 0 834 192.667 838 209.667 840 231 c 1 727 438 m 2 727 218 l 1 588 218 l 1 588 438 l 2 588 454.667 584.333 466.333 577 473 c 0 569.667 480.333 557.333 484.333 540 485 c 2 219 485 l 1 219 0 l 1 80 0 l 1 80 600 l 1 540 600 l 2 595.333 600 641.333 584 678 552 c 0 710.667 523.333 727 485.333 727 438 c 2 EndSplineSet EndChar StartChar: Euro Encoding: 8364 8364 682 Width: 556 Flags: W Fore 30 318 m 1 70 318 l 1 68 353 l 1 69 386 l 1 6 386 l 1 30 454 l 1 78 454 l 1 104 572.667 158.333 653 241 695 c 0 277.667 714.333 318.667 724 364 724 c 0 413.333 724 457.667 712.333 497 689 c 1 546 656 l 1 501 527 l 1 449 568.333 405 590.333 369 593 c 2 355 594 l 2 292.333 594 248.667 547.333 224 454 c 1 475 454 l 1 451 386 l 1 211 386 l 1 208 345 l 1 210 318 l 1 427 318 l 1 402 250 l 1 221 250 l 1 244.333 168.667 281.667 122 333 110 c 0 340.333 108.667 347.667 108 355 108 c 0 384.333 108 420 118.667 462 140 c 0 463.333 140 464.333 140.333 465 141 c 1 465 141 l 1 475 146 475 146 486 152 c 2 487 153 l 2 493 156 493 156 501 160 c 1 501 11 l 1 432.333 -11.6667 381.667 -23 349 -23 c 0 287 -23 231.333 -1.33333 182 42 c 0 166.667 56 153.333 71.3333 142 88 c 0 112 132 90.6667 186 78 250 c 1 6 250 l 1 30 318 l 1 EndSplineSet EndChar StartChar: trademark Encoding: 8482 8482 683 Width: 1000 Flags: W Fore 303 651 m 1 303 273 l 1 208 273 l 1 208 651 l 1 71 651 l 1 71 729 l 1 436 729 l 1 436 651 l 1 303 651 l 1 755 273 m 1 661 273 l 1 576 622 l 1 576 273 l 1 485 273 l 1 485 729 l 1 622 729 l 1 708 379 l 1 792 729 l 1 929 729 l 1 929 273 l 1 838 273 l 1 838 622 l 1 755 273 l 1 EndSplineSet EndChar StartChar: arrowleft Encoding: 8592 8592 684 Width: 1000 Flags: H Fore 891 525 m 25 333 525 l 25 333 696 l 25 105 432 l 25 338 186 l 25 338 354 l 25 891 354 l 25 891 525 l 25 EndSplineSet EndChar StartChar: partialdiff Encoding: 8706 8706 684 Width: 490 Flags: W Fore 102 670 m 1 62 722 l 1 103.333 740.667 147.333 750 194 750 c 0 273.333 750 338 715.667 388 647 c 0 434.667 582.333 458 501.667 458 405 c 0 458 319 443.667 235.667 415 155 c 0 407.667 135 400 117.667 392 103 c 0 348 24.3333 288 -15 212 -15 c 0 150.667 -15 101.333 8.66667 64 56 c 0 36 90.6667 22 131.667 22 179 c 0 22 242.333 43.6667 298.667 87 348 c 0 89.6667 351.333 92.6667 354.667 96 358 c 0 129.333 391.333 170 408 218 408 c 0 253.333 408 286.333 398.333 317 379 c 1 368 343 l 1 375.333 391.667 379 429 379 455 c 0 379 530.333 362.333 593.333 329 644 c 2 324 651 l 2 299.333 685.667 262.667 703 214 703 c 0 190.667 703 166.333 698 141 688 c 1 141 687.333 140.667 687 140 687 c 1 140 687 l 1 140 687 l 1 139 687 l 1 139 687 l 1 139 687 l 1 110 674 l 1 102 670 l 1 361 304 m 1 335.667 346 300.667 367 256 367 c 0 212 367 175.333 342.667 146 294 c 0 122 254.667 110 208.333 110 155 c 0 110 81.6667 130 37 170 21 c 0 178.667 17.6667 188.333 16 199 16 c 0 248.333 16 287.333 48 316 112 c 1 326 139 l 1 338 175 349.667 230 361 304 c 1 EndSplineSet EndChar StartChar: Delta Encoding: 8710 8710 685 Width: 729 Flags: W Fore 8 0 m 1 268 729 l 1 461 729 l 1 721 0 l 1 8 0 l 1 205 125 m 1 524 125 l 1 364 614 l 1 205 125 l 1 EndSplineSet EndChar StartChar: summation Encoding: 8721 8721 686 Width: 711 Flags: W Fore 616 753 m 1 623 593 l 1 601 593 l 1 587.667 643.667 569.333 676 546 690 c 0 526.667 701.333 495.667 707 453 707 c 2 192 707 l 1 461 352 l 1 171 18 l 1 513 18 l 2 562.333 18 595 23.6667 611 35 c 0 613 36.3333 615 38 617 40 c 0 631 51.3333 643 68 653 90 c 0 657 100 657 100 664 117 c 2 670 130 l 1 694 130 l 1 675.333 59.3333 661 -16 651 -96 c 1 630.333 -90 603.667 -87 571 -87 c 2 92 -87 l 2 64.6667 -87 39.6667 -88.3333 17 -91 c 1 362 309 l 1 17 760 l 1 55 755.333 92.6667 753 130 753 c 2 616 753 l 1 EndSplineSet EndChar StartChar: minus Encoding: 8722 8722 687 Width: 584 Flags: W Fore 544 291 m 1 544 172 l 1 40 172 l 1 40 291 l 1 544 291 l 1 EndSplineSet EndChar StartChar: radical Encoding: 8730 8730 688 Width: 542 Flags: W Fore 476 913 m 1 512 908 l 1 360 -36 l 1 119 461 l 1 25 415 l 1 7 448 l 1 155 521 l 1 348 125 l 1 476 913 l 1 EndSplineSet EndChar StartChar: notequal Encoding: 8800 8800 689 Width: 548 Flags: W Fore 123 52 m 1 50 52 l 1 50 171 l 1 187 171 l 1 255 292 l 1 50 292 l 1 50 411 l 1 322 411 l 1 387 528 l 1 485 472 l 1 450 411 l 1 534 411 l 1 534 292 l 1 384 292 l 1 316 171 l 1 534 171 l 1 534 52 l 1 249 52 l 1 181 -69 l 1 84 -13 l 1 123 52 l 1 EndSplineSet EndChar StartChar: lessequal Encoding: 8804 8804 690 Width: 584 Flags: W Fore 534 81 m 1 534 -10 l 1 45 -10 l 1 45 81 l 1 534 81 l 1 534 639 m 1 534 530 l 1 152 397 l 1 534 266 l 1 534 155 l 1 45 337 l 1 45 457 l 1 534 639 l 1 EndSplineSet EndChar StartChar: greaterequal Encoding: 8805 8805 691 Width: 584 Flags: W Fore 534 81 m 1 534 -10 l 1 45 -10 l 1 45 81 l 1 534 81 l 1 45 155 m 1 45 264 l 1 427 397 l 1 45 528 l 1 45 639 l 1 534 457 l 1 534 336 l 1 45 155 l 1 EndSplineSet EndChar StartChar: uni25B4 Encoding: 9652 9652 692 Width: 1019 VWidth: 1024 Flags: HW Fore 104 -99 m 1 104 106 l 1 298 348 497 410.667 701 294 c 0 772.333 253.333 845.667 190.667 921 106 c 1 921 -99 l 1 635.667 289 363.333 289 104 -99 c 1 497 462 m 0 377.667 462.667 251.667 386.333 119 233 c 1 113 227 107.333 220.667 102 214 c 1 502 917 l 1 922 214 l 1 762 378.667 620.333 461.333 497 462 c 0 EndSplineSet EndChar StartChar: uni25B6 Encoding: 9654 9654 692 Width: 1019 VWidth: 1024 Flags: HW Fore 4 817 m 1 209 817 l 1 451 623 513.667 424 397 220 c 0 356.333 148.667 293.667 75.3333 209 0 c 1 4 0 l 1 392 285.333 392 557.667 4 817 c 1 565 424 m 0 565.667 543.333 489.333 669.333 336 802 c 1 330 808 323.667 813.667 317 819 c 1 1020 419 l 1 317 -1 l 1 481.667 159 564.333 300.667 565 424 c 0 EndSplineSet EndChar StartChar: triagdn Encoding: 9660 9660 693 Width: 1019 VWidth: 1024 Flags: HW Fore 920 917 m 1 920 712 l 1 726 470 527 407.333 323 524 c 0 251.667 564.667 178.333 627.333 103 712 c 1 103 917 l 1 388.333 529 660.667 529 920 917 c 1 527 356 m 0 646.333 355.333 772.333 431.667 905 585 c 1 911 591 916.667 597.333 922 604 c 1 522 -99 l 1 102 604 l 1 262 439.333 403.667 356.667 527 356 c 0 EndSplineSet EndChar StartChar: uni25C0 Encoding: 9664 9664 693 Width: 1019 VWidth: 1024 Flags: HW Fore 1020 817 m 1 632 557.667 632 285.333 1020 0 c 1 815 0 l 1 601.667 190 527.667 371 593 543 c 0 627.667 635 701.667 726.333 815 817 c 1 1020 817 l 1 459 424 m 0 459.667 300.667 542.333 159 707 -1 c 1 4 419 l 1 707 819 l 1 551 688.333 468.667 565 460 449 c 0 459.333 440.333 459 432 459 424 c 0 EndSplineSet EndChar StartChar: triaglf Encoding: 9668 9668 694 Width: 1000 Flags: H Fore 645 627 m 9 828 573 l 17 833.447 407.698 590.918 351.052 408 291 c 9 410.605 192 l 25 222 366 l 25 393 570 l 25 396 456 l 17 540.706 474.304 651.086 514.135 645 627 c 9 66 628 m 25 150 628 l 25 150 159 l 25 66 159 l 25 66 628 l 25 EndSplineSet EndChar StartChar: lozenge Encoding: 9674 9674 692 Width: 489 Flags: W Fore 270 744 m 1 462 372 l 1 270 0 l 1 208 0 l 1 16 372 l 1 208 744 l 1 270 744 l 1 240 60 m 1 400 372 l 1 240 684 l 1 79 372 l 1 240 60 l 1 EndSplineSet EndChar StartChar: uni25D0 Encoding: 9680 9680 693 Width: 913 VWidth: 1024 Flags: HW Fore 459 728 m 1 457 138 l 1 621 166.667 720.667 234 756 340 c 0 767.333 374.667 772.667 413.667 772 457 c 1 732.667 631.667 628.333 722 459 728 c 1 457 811 m 0 562.333 811 653 777 729 709 c 0 803 643 844.333 562.667 853 468 c 0 853.667 457.333 854 446.667 854 436 c 0 854 338.667 819 254 749 182 c 0 679 110.667 593 70.6667 491 62 c 0 479.667 61.3333 468.333 61 457 61 c 0 351 61 259.667 95 183 163 c 0 109 228.333 67.6667 308.333 59 403 c 0 57.6667 414.333 57 425.333 57 436 c 0 57 534 92.3333 619 163 691 c 0 233.667 762.333 320.667 802 424 810 c 0 434.667 810.667 445.667 811 457 811 c 0 EndSplineSet EndChar StartChar: uni25EF Encoding: 9711 9711 694 Width: 913 VWidth: 1024 Flags: HW Fore 457 709 m 0 444 709 444 709 433 709 c 0 357.667 703 294 674 242 622 c 0 190.667 569.333 165 507.333 165 436 c 0 165 428 165.333 420 166 412 c 0 172.667 342.667 203 284.333 257 237 c 0 313 187.667 379.667 163 457 163 c 0 469 163 469 163 481 163 c 0 555.667 169.667 618.333 199 669 251 c 0 720.333 303.667 746 365.333 746 436 c 0 746 444 745.667 451.667 745 459 c 0 739 528.333 709 587 655 635 c 0 599.667 684.333 533.667 709 457 709 c 0 457 811 m 0 562.333 811 653 777 729 709 c 0 803 643 844.333 562.667 853 468 c 0 853.667 457.333 854 446.667 854 436 c 0 854 338.667 819 254 749 182 c 0 679 110.667 593 70.6667 491 62 c 0 479.667 61.3333 468.333 61 457 61 c 0 351 61 259.667 95 183 163 c 0 109 228.333 67.6667 308.333 59 403 c 0 57.6667 414.333 57 425.333 57 436 c 0 57 534 92.3333 619 163 691 c 0 233.667 762.333 320.667 802 424 810 c 0 434.667 810.667 445.667 811 457 811 c 0 EndSplineSet EndChar StartChar: uni2600 Encoding: 9728 9728 694 Width: 801 VWidth: 1024 Flags: HW Fore 673.65 217.8 m 1 789.35 160.6 l 1 798.883 118.134 786.75 97.3337 752.95 98.2002 c 2 751.65 98.2002 l 2 744.717 98.2002 737.35 99.0668 729.55 100.8 c 1 673.65 217.8 l 1 191.8 222.5 m 1 135.9 105.5 l 1 93.4335 105.5 72.2002 118.5 72.2002 144.5 c 0 72.2002 150.567 73.5 157.5 76.0996 165.3 c 1 191.8 222.5 l 1 192.5 659.2 m 1 75.5 715.1 l 1 74.6335 757.567 87.6335 778.8 114.5 778.8 c 0 120.567 778.8 127.5 777.5 135.3 774.9 c 1 192.5 659.2 l 1 699.35 654.8 m 1 757.85 769.2 l 1 790.783 771.8 810.717 769.2 817.65 761.4 c 1 817.65 760.1 l 1 825.45 751.433 825.45 734.967 817.65 710.7 c 1 699.35 654.8 l 1 102.85 439.15 m 1 -19.3496 396.25 l 1 -49.6829 423.983 -51.8496 449.983 -25.8496 474.25 c 1 -24.1165 476.85 -21.9499 479.017 -19.3496 480.75 c 1 102.85 439.15 l 1 788.9 439.15 m 1 911.1 480.75 l 1 942.3 449.55 942.3 421.383 911.1 396.25 c 1 788.9 439.15 l 1 440.3 122.25 m 1 480.6 -1.25 l 1 450.267 -31.5833 422.533 -31.5833 397.4 -1.25 c 1 440.3 122.25 l 1 437.15 753.9 m 1 394.25 876.1 l 1 423.717 909.033 451.883 909.033 478.75 876.1 c 1 437.15 753.9 l 1 437.2 680.4 m 0 509.2 680.4 570.533 656.4 621.2 608.4 c 0 670.8 560.933 695.6 504.133 695.6 438 c 0 695.6 371.333 670.533 314.267 620.4 266.8 c 0 569.733 219.333 508.667 195.6 437.2 195.6 c 0 365.733 195.6 304.667 219.6 254 267.6 c 0 204.933 314.533 180.4 371.333 180.4 438 c 0 180.4 504.667 205.467 561.733 255.6 609.2 c 0 305.733 656.667 366.267 680.4 437.2 680.4 c 0 EndSplineSet EndChar StartChar: uni2630 Encoding: 9776 9776 695 Width: 1000 Flags: H Fore 756 756 m 1 921 756 l 1 921 27 l 1 756 27 l 1 756 756 l 1 477 756 m 1 642 756 l 1 642 27 l 1 477 27 l 1 477 756 l 1 192 756 m 1 357 756 l 1 357 27 l 1 192 27 l 1 192 756 l 1 EndSplineSet EndChar StartChar: uniE000 Encoding: 57344 57344 693 Width: 1025 VWidth: 1024 Flags: HW Fore 526 851 m 5 846 931 l 5 856 900 l 5 526 851 l 5 494 851 m 5 164 900 l 5 174 931 l 5 494 851 l 5 858 89 m 6 896.667 89 919.667 92 927 98 c 4 936.333 104.667 940.333 125.333 939 160 c 4 938.333 163.333 938 167.333 938 172 c 6 938 682 l 6 938 722.667 935 746.667 929 754 c 4 927.667 756.667 926 758.667 924 760 c 5 924 760 l 5 916 766 893.333 769.667 856 771 c 5 174 771 l 6 135.333 771 111.667 767.333 103 760 c 4 101.667 759.333 100.333 758.333 99 757 c 5 99 756 l 5 99 756 l 5 91.6667 747.333 86.6667 722.667 84 682 c 5 88 172 l 5 88 130.667 90.6667 106.333 96 99 c 4 102 91 120.667 87.3333 152 88 c 5 152 88 l 5 153 88 l 6 155.667 88.6667 160.667 89 168 89 c 6 858 89 l 6 -2 685 m 5 0 754.333 4.33333 797 11 813 c 4 19.6667 833 40 844.667 72 848 c 4 88 850 120.667 851 170 851 c 6 852 851 l 6 924.667 851 969 848 985 842 c 5 985 842 l 5 999.667 836.667 1010 826.667 1016 812 c 5 1016 812 l 5 1016 811 l 5 1022 795 1025 752 1025 682 c 6 1025 175 l 6 1025 101.667 1021.67 56.6667 1015 40 c 4 1009.67 25.3333 999.667 15.3333 985 10 c 4 968.333 3.33333 925.333 2.1684e-19 856 0 c 6 170 0 l 6 100 0 56.6667 3.33333 40 10 c 4 20 18.6667 8.33333 39.3333 5 72 c 4 3 86 2 106.333 2 133 c 4 2 143 2 143 2 158 c 6 2 159 l 6 2 164 2 164 2 175 c 5 -2 685 l 5 EndSplineSet EndChar StartChar: uniE001 Encoding: 57345 57345 694 Width: 1059 VWidth: 1024 Flags: HW Fore 755 642 m 1 521 412 l 1 498.333 415.333 485.333 419 482 423 c 0 479.333 427 478 439.667 478 461 c 1 755 642 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE002 Encoding: 57346 57346 695 Width: 1059 VWidth: 1024 Flags: HW Fore 800 570 m 1 514 409 l 1 493.333 417.667 482 424.333 480 429 c 0 477.333 433.667 479 446.333 485 467 c 1 800 570 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE003 Encoding: 57347 57347 696 Width: 1059 VWidth: 1024 Flags: HW Fore 823 490 m 1 506 408 l 1 488.667 421.333 479.667 429.667 479 433 c 1 478 434 l 1 476.667 438.667 482 451 494 471 c 1 823 490 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE004 Encoding: 57348 57348 697 Width: 1059 VWidth: 1024 Flags: HW Fore 825 407 m 1 498 409 l 1 484.667 427 478 438 478 442 c 0 478 444 l 0 479.333 448.667 487.333 458.333 502 473 c 1 825 407 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE005 Encoding: 57349 57349 698 Width: 1059 VWidth: 1024 Flags: HW Fore 806 324 m 1 510 473 l 1 490 461.667 479.333 453.333 478 448 c 0 477.333 444 481 431.667 489 411 c 1 806 324 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE006 Encoding: 57350 57350 699 Width: 1059 VWidth: 1024 Flags: HW Fore 765 250 m 1 518 470 l 1 495.333 464.667 482.667 459.667 480 455 c 0 478 451 478.333 438 481 416 c 1 765 250 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE007 Encoding: 57351 57351 700 Width: 1059 VWidth: 1024 Flags: HW Fore 706 189 m 1 524 466 l 1 500.667 466 487 464 483 460 c 0 480.333 456.667 477.667 444.333 475 423 c 1 706 189 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE008 Encoding: 57352 57352 701 Width: 1059 VWidth: 1024 Flags: HW Fore 631 147 m 1 527 462 l 1 503.667 468 489.667 468.667 485 464 c 1 481.667 462 476 451.333 468 432 c 1 631 147 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE009 Encoding: 57353 57353 702 Width: 1059 VWidth: 1024 Flags: HW Fore 547 123 m 1 528 454 l 1 508 465.333 495.667 470 491 468 c 0 487 466.667 478.333 457.333 465 440 c 1 547 123 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE00A Encoding: 57354 57354 703 Width: 1059 VWidth: 1024 Flags: HW Fore 465 122 m 1 532 445 l 1 516 461 505.333 469 500 469 c 0 496 468.333 485.333 462 468 450 c 1 465 122 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE00B Encoding: 57355 57355 704 Width: 1059 VWidth: 1024 Flags: HW Fore 380 141 m 1 528 437 l 1 516.667 457 508.667 467.667 504 469 c 0 500 469.667 487.667 466 467 458 c 1 380 141 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE00C Encoding: 57356 57356 705 Width: 1059 VWidth: 1024 Flags: HW Fore 308 180 m 1 528 427 l 1 522 449.667 516.333 462.333 511 465 c 0 507 466.333 494.667 465.667 474 463 c 1 308 180 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE00D Encoding: 57357 57357 706 Width: 1059 VWidth: 1024 Flags: HW Fore 250 237 m 1 526 418 l 1 526 441.333 524 455 520 459 c 2 519 459 l 2 515.667 461.667 503.667 464.333 483 467 c 1 250 237 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE00E Encoding: 57358 57358 707 Width: 1059 VWidth: 1024 Flags: HW Fore 207 308 m 1 520 413 l 1 526 435.667 527.333 449.333 524 454 c 0 521.333 457.333 510.667 463 492 471 c 1 207 308 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE00F Encoding: 57359 57359 708 Width: 1059 VWidth: 1024 Flags: HW Fore 182 390 m 1 512 409 l 1 524 429 529 441.667 527 447 c 0 525.667 450.333 516.667 459 500 473 c 1 182 390 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE010 Encoding: 57360 57360 709 Width: 1059 VWidth: 1024 Flags: HW Fore 181 474 m 1 509 472 l 1 523 453.333 529.667 441.667 529 437 c 0 529 436.333 528.667 435.667 528 435 c 1 528 434 l 1 526.667 430 519 421 505 407 c 1 181 474 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE011 Encoding: 57361 57361 710 Width: 1059 VWidth: 1024 Flags: HW Fore 201 556 m 1 517 469 l 1 526.333 447.667 529.667 434.667 527 430 c 0 525 425.333 514.667 418 496 408 c 1 201 556 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE012 Encoding: 57362 57362 711 Width: 1059 VWidth: 1024 Flags: HW Fore 242 631 m 1 525 465 l 1 527.667 442.333 527.667 429.333 525 426 c 0 522.333 422 510 417 488 411 c 1 242 631 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE013 Encoding: 57363 57363 712 Width: 1059 VWidth: 1024 Flags: HW Fore 299 689 m 1 529 456 l 1 525.667 433.333 522 420.333 518 417 c 0 514 414.333 501.333 413 480 413 c 1 299 689 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE014 Encoding: 57364 57364 713 Width: 1059 VWidth: 1024 Flags: HW Fore 372 733 m 1 534 447 l 1 525.333 427 519 416 515 414 c 0 510.333 411.333 497 413 475 419 c 1 372 733 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE015 Encoding: 57365 57365 714 Width: 1059 VWidth: 1024 Flags: HW Fore 454 758 m 1 536 440 l 1 522 423.333 513 414.333 509 413 c 0 503.667 412.333 491.333 417.333 472 428 c 1 454 758 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE016 Encoding: 57366 57366 715 Width: 1059 VWidth: 1024 Flags: HW Fore 539 762 m 1 537 433 l 1 518.333 419.667 506.667 413.333 502 414 c 2 501 414 l 2 496.333 415.333 486.333 423.333 471 438 c 1 539 762 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE017 Encoding: 57367 57367 716 Width: 1059 VWidth: 1024 Flags: HW Fore 621 740 m 1 534 424 l 1 512.667 416 499.667 413 495 415 c 0 490.333 417 482.667 427 472 445 c 1 621 740 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE018 Encoding: 57368 57368 717 Width: 1059 VWidth: 1024 Flags: HW Fore 695 699 m 1 529 417 l 1 506.333 414.333 493 414.667 489 418 c 1 489 418 l 1 488 418 l 2 484.667 421.333 480.333 433.333 475 454 c 1 695 699 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE019 Encoding: 57369 57369 718 Width: 1059 VWidth: 1024 Flags: HW Fore 755 642 m 1 521 412 l 1 498.333 415.333 485.333 419 482 423 c 0 479.333 427 478 439.667 478 461 c 1 755 642 l 1 509 765 m 0 421.667 765 347.333 734 286 672 c 1 285 672 l 1 242.333 628.667 214.333 577.333 201 518 c 0 196.333 496 194 473.667 194 451 c 0 194 363.667 224.667 289 286 227 c 0 347.333 165.667 421.667 135 509 135 c 0 596.333 135 670.667 165.667 732 227 c 0 793.333 289 824 363.667 824 451 c 0 824 537 793.333 610.667 732 672 c 0 670.667 734 596.333 765 509 765 c 0 512 869 m 0 620.667 869 715.333 832.667 796 760 c 0 874 688.667 919.333 600.667 932 496 c 0 934 479.333 935 462.667 935 446 c 0 935 338 898.333 243.667 825 163 c 0 816.333 153.667 807.333 144.667 798 136 c 0 718 62.6667 622.667 25.6667 512 25 c 0 403.333 25 308.667 61.3333 228 134 c 0 150 204.667 104.667 292 92 396 c 0 90 412.667 89 429.333 89 446 c 0 89 554.667 125.667 649.333 199 730 c 0 269.667 808 357.333 853.333 462 866 c 0 478.667 868 495.333 869 512 869 c 0 EndSplineSet EndChar StartChar: uniE01A Encoding: 57370 57370 719 Width: 1049 Flags: HW Fore 835.029 260.399 m 1 835.029 24 l 1 790.029 24 l 1 781.029 81.5996 l 1 758.363 41.5996 729.363 18.7998 694.029 13.1992 c 0 686.695 12 679.029 11.3994 671.029 11.3994 c 0 621.363 11.3994 580.529 33.1992 548.529 76.7998 c 0 516.529 120 500.529 174.6 500.529 240.6 c 0 500.529 313.8 519.029 371.6 556.029 414 c 0 588.029 451.199 628.363 469.8 677.029 469.8 c 0 732.363 469.8 774.529 449.8 803.529 409.8 c 0 821.195 385.8 831.695 356.8 835.029 322.8 c 1 764.529 322.8 l 1 758.863 342 751.363 356.6 742.029 366.6 c 0 725.363 384.199 703.863 393 677.529 393 c 0 636.529 393 607.363 371.399 590.029 328.199 c 0 580.363 304.6 575.529 275.8 575.529 241.8 c 0 575.529 188.6 588.695 147.399 615.029 118.199 c 0 633.029 98.2002 654.529 88.1992 679.529 88.1992 c 0 708.529 88.1992 732.695 101.2 752.029 127.199 c 0 752.695 127.999 753.363 129 754.029 130.199 c 0 764.363 144.6 770.363 163 772.029 185.399 c 1 689.029 185.399 l 1 689.029 260.399 l 1 835.029 260.399 l 1 262.029 186 m 1 262.029 30 l 1 187.029 30 l 1 187.029 467.4 l 1 348.029 467.4 l 2 407.029 467.4 444.029 440.4 459.029 386.4 c 0 459.029 385.2 l 0 463.363 369.601 465.529 351.8 465.529 331.8 c 0 465.529 275.801 450.363 235 420.029 209.4 c 1 420.029 208.8 l 1 419.529 208.2 l 2 401.529 193.4 380.195 186 355.529 186 c 2 262.029 186 l 1 262.029 261 m 1 332.029 261 l 2 368.363 261 387.695 279.8 390.029 317.4 c 1 390.529 326.4 l 1 390.529 366.4 374.529 388.2 342.529 391.8 c 2 332.029 392.4 l 1 262.029 392.4 l 1 262.029 261 l 1 695.029 525.75 m 1 631.529 525.75 l 1 508.529 708 l 1 584.029 708 l 1 665.029 570.75 l 1 744.529 708 l 1 820.029 708 l 1 695.029 525.75 l 1 362.529 678 m 1 362.529 527 l 1 287.529 527 l 1 287.529 678 l 1 177.029 678 l 1 177.029 709.25 l 1 469.029 709.25 l 1 469.029 678 l 1 362.529 678 l 1 94.2295 670.5 m 9 94.2295 33.2998 l 17 85.8652 -24.9365 103.079 -62.502 180.629 -51.2998 c 9 817.829 -51.2998 l 17 865.129 -49.9082 909.872 -44.5547 907.829 33.2998 c 9 907.829 670.5 l 17 907.327 727.664 882.911 758.71 817.829 753.3 c 9 180.629 753.3 l 17 126.578 752.1 97.7783 724.5 94.2295 670.5 c 9 49.0293 706 m 17 52.9727 766 84.9727 796.667 145.029 798 c 9 853.029 798 l 17 925.342 804.011 952.472 769.516 953.029 706 c 9 953.029 -2 l 17 955.299 -88.5059 905.584 -94.4541 853.029 -96 c 9 145.029 -96 l 17 58.8623 -108.446 39.7363 -66.707 49.0293 -2 c 9 49.0293 706 l 17 EndSplineSet EndChar StartChar: uniE01B Encoding: 57371 57371 720 Width: 1092 Flags: HW Fore 896.75 597 m 13 894.02 435.54 896.75 183 896.75 183 c 4 800.75 308 l 13 698.21 308.39 545.75 318 537.826 309 c 4 513.903 281.83 478.276 265.5 439.25 265.5 c 4 365.558 265.5 305.75 325.308 305.75 399 c 4 305.75 472.692 365.558 532.5 439.25 532.5 c 4 479.717 532.5 515.721 512.225 540.486 484 c 4 545.75 478 699.247 483.39 800.75 483 c 21 896.75 597 l 13 589.839 522 m 5 590.75 522 742.049 522 742.049 522 c 4 692.794 643.354 573.713 729 434.75 729 c 4 251.762 729 103.25 580.488 103.25 397.5 c 4 103.25 214.512 251.762 66 434.75 66 c 4 571.412 66 688.844 148.834 739.544 267 c 4 739.544 267 587.75 270 584.818 267 c 4 548.344 225.098 494.623 198.6 434.75 198.6 c 4 324.957 198.6 235.85 287.707 235.85 397.5 c 4 235.85 507.293 324.957 596.4 434.75 596.4 c 4 497.433 596.4 553.373 567.356 589.839 522 c 5 EndSplineSet Comment: "menu+AAoA-input" Colour: ffffff EndChar StartChar: uniE01C Encoding: 57372 57372 721 Width: 1000 Flags: HW HStem: -84 171<551 569> 600 171<551 569> VStem: 805.7 169.8<343 365> Fore 455.993 581.539 m 1 485.355 593.446 517.422 600 551 600 c 0 691.595 600 805.7 485.088 805.7 343.5 c 0 805.7 201.912 691.595 87 551 87 c 0 439.06 87 343.912 164.845 309.777 266 c 9 456.5 266 l 25 228.5 498 l 25 24.5 270 l 17 24.5 264 134.103 272.091 134.409 266 c 0 144.5 65 344.698 -84 551 -84 c 0 785.324 -84 975.5 107.52 975.5 343.5 c 0 975.5 579.48 785.324 771 551 771 c 0 492.106 771 436.001 758.902 385.003 737.04 c 1 383.819 735.232 163.965 602.146 455.993 581.539 c 1 EndSplineSet Comment: "restart" Colour: ffffff EndChar StartChar: uniE01D Encoding: 57373 57373 722 Width: 1022 Flags: HW Fore 826 852.6 m 1 841.527 885.582 866.487 887.188 898 867 c 1 1013.9 652.47 1037.16 450.691 1038 252 c 1 1014 202.335 990 211.186 966 237.6 c 1 986.595 447.35 917.57 650.771 826 852.6 c 1 832.269 252.6 m 1 845.867 423.943 815.162 585.238 723 732.6 c 1 742.514 781.245 762.126 760.678 781.731 745.199 c 1 882.57 589.704 904.223 428.675 891 265.199 c 1 875.186 234.168 855.979 227.338 832.269 252.6 c 1 621 639.6 m 1 688.25 516.6 712.316 393.6 705 270.6 c 1 720.047 254.519 735.062 251.109 750 279.6 c 1 771.362 402.6 752.871 525.6 666 648.6 c 1 641.952 674.669 629.229 664.359 621 639.6 c 1 174 858 m 1 158.472 890.982 133.512 892.589 102 872.4 c 1 -13.9023 657.87 -37.1572 456.092 -38 257.4 c 1 -14 207.736 10 216.586 34 243 c 1 13.4053 452.75 82.4297 656.172 174 858 c 1 167.731 258 m 1 154.133 429.343 184.838 590.639 277 738 c 1 257.486 786.645 237.874 766.078 218.268 750.6 c 1 117.43 595.105 95.7773 434.075 109 270.6 c 1 124.814 239.569 144.022 232.738 167.731 258 c 1 379 645 m 1 311.75 522 287.684 399 295 276 c 1 279.954 259.919 264.938 256.51 250 285 c 1 228.638 408 247.129 531 334 654 c 1 358.048 680.07 370.773 669.76 379 645 c 1 694 -48 m 1 640.18 -47.0898 576.24 -46.7861 514.906 -46.7861 c 0 392.24 -46.7861 280 -48 280 -48 c 0 405 48 l 1 405.267 118.047 409.835 211.388 409.835 266.037 c 0 409.835 291.389 408.852 308.413 406 310.924 c 0 378.83 334.847 362.5 370.474 362.5 409.5 c 0 362.5 483.192 422.308 543 496 543 c 0 569.692 543 629.5 483.192 629.5 409.5 c 0 629.5 369.033 609.225 333.029 581 308.264 c 0 578.826 306.356 578.146 284.984 578.146 253.676 c 0 578.146 201.658 580.021 122.21 580.021 59.0254 c 0 580.021 55.29 580.014 51.6123 580 48 c 1 694 -48 l 1 EndSplineSet Comment: "station management" Colour: ffffff EndChar StartChar: uniE01E Encoding: 57374 57374 723 Width: 1026 VWidth: 1024 Flags: HW Fore 97 720 m 25 121 747 l 25 154 744 l 25 106 408 l 25 97 720 l 25 757 120 m 25 865 750 l 17 928 717 l 1 928 570 l 9 850 120 l 25 757 120 l 25 601 120 m 25 709 750 l 25 802 750 l 25 694 120 l 25 601 120 l 25 445 120 m 25 553 750 l 25 646 750 l 25 538 120 l 25 445 120 l 25 286 117 m 25 394 747 l 25 487 747 l 25 379 117 l 25 286 117 l 25 121 117 m 25 229 747 l 25 322 747 l 25 214 117 l 25 121 117 l 25 527 851 m 1 847 931 l 1 857 900 l 1 527 851 l 1 495 851 m 1 165 900 l 1 175 931 l 1 495 851 l 1 859 89 m 2 897.667 89 920.667 92 928 98 c 0 937.333 104.667 941.333 125.333 940 160 c 0 939.333 163.333 939 167.333 939 172 c 2 939 682 l 2 939 722.667 936 746.667 930 754 c 0 928.667 756.667 927 758.667 925 760 c 1 925 760 l 1 917 766 894.333 769.667 857 771 c 1 175 771 l 2 136.333 771 112.667 767.333 104 760 c 0 102.667 759.333 101.333 758.333 100 757 c 1 100 756 l 1 100 756 l 1 92.667 747.333 87.667 722.667 85 682 c 1 89 172 l 1 89 130.667 91.667 106.333 97 99 c 0 103 91 121.667 87.333 153 88 c 1 153 88 l 1 154 88 l 2 156.667 88.667 161.667 89 169 89 c 2 859 89 l 2 -1 685 m 1 1 754.333 5.33301 797 12 813 c 0 20.667 833 41 844.667 73 848 c 0 89 850 121.667 851 171 851 c 2 853 851 l 2 925.667 851 970 848 986 842 c 1 986 842 l 1 1000.67 836.667 1011 826.667 1017 812 c 1 1017 812 l 1 1017 811 l 1 1023 795 1026 752 1026 682 c 2 1026 175 l 2 1026 101.667 1022.67 56.667 1016 40 c 0 1010.67 25.333 1000.67 15.333 986 10 c 0 969.333 3.33301 926.333 0 857 0 c 2 171 0 l 2 101 0 57.667 3.33301 41 10 c 0 21 18.667 9.33301 39.333 6 72 c 0 4 86 3 106.333 3 133 c 0 3 143 3 143 3 158 c 2 3 159 l 2 3 164 3 164 3 175 c 1 -1 685 l 1 EndSplineSet Comment: "picture settings" Colour: ffffff EndChar StartChar: uniE01F Encoding: 57375 57375 724 Width: 888 Flags: HW Fore 75.2002 391.801 m 17 240.8 259.801 293.6 300.601 353.6 307.801 c 1 451.342 355.484 507.242 425.028 507.2 523.801 c 9 581.6 555 l 17 694.625 469.895 758.215 446.871 820 466.2 c 9 820 341.4 l 25 900 388.601 l 25 989.6 388.601 l 25 989.6 135 l 25 900 135 l 25 820 185.4 l 25 820 17.4004 l 25 10.4004 15 l 25 10.4004 391.801 l 25 75.2002 391.801 l 17 385.999 406.2 m 9 285.199 497.4 l 25 256.617 364.504 l 17 304.026 358.219 347.127 372.266 385.999 406.2 c 9 414.8 437.4 m 17 439.823 475.461 450.127 519.445 443.384 570.296 c 9 313.999 528.601 l 25 414.8 437.4 l 17 430.76 610.838 m 17 410.392 647.155 382.184 679.969 329.959 702.038 c 9 301.381 569.143 l 25 430.76 610.838 l 17 158.762 670.838 m 9 259.959 578.484 l 25 288.54 711.38 l 17 239.107 711.5 195.486 698.782 158.762 670.838 c 9 129.962 639.638 m 17 101.841 594.954 94.2705 550.271 101.777 505.589 c 9 231.158 547.284 l 25 129.962 639.638 l 17 215.197 373.848 m 9 243.779 506.742 l 25 114.396 465.047 l 17 129.175 420.953 162.113 390.071 215.197 373.848 c 9 158.762 670.838 m 25 158.762 670.838 m 25 129.962 639.638 m 25 158.762 670.838 m 25 129.962 639.638 m 25 129.962 639.638 m 25 269.6 742.2 m 0 384.191 742.2 477.2 649.195 477.2 534.601 c 0 477.2 420.005 384.191 327 269.6 327 c 0 155.005 327 61.999 420.005 61.999 534.601 c 0 61.999 649.195 155.005 742.2 269.6 742.2 c 0 894.8 571.801 m 9 793.998 663 l 25 765.417 530.104 l 17 812.827 523.82 855.928 537.865 894.8 571.801 c 9 923.6 603 m 17 948.619 641.062 958.93 685.046 952.18 735.896 c 9 822.8 694.2 l 25 923.6 603 l 17 939.56 776.438 m 17 919.189 812.756 890.979 845.569 838.76 867.638 c 9 810.181 734.742 l 25 939.56 776.438 l 17 667.562 836.438 m 9 768.76 744.085 l 25 797.342 876.98 l 17 747.908 877.101 704.287 864.383 667.562 836.438 c 9 638.762 805.238 m 17 610.641 760.555 603.07 715.872 610.577 671.189 c 9 739.959 712.885 l 25 638.762 805.238 l 17 723.997 539.447 m 9 752.578 672.343 l 25 623.197 630.646 l 17 637.975 586.555 670.912 555.672 723.997 539.447 c 9 667.562 836.438 m 25 667.562 836.438 m 25 638.762 805.238 m 25 667.562 836.438 m 25 638.762 805.238 m 25 638.762 805.238 m 25 778.4 907.801 m 0 892.989 907.801 986 814.796 986 700.2 c 0 986 585.605 892.989 492.601 778.4 492.601 c 0 663.805 492.601 570.8 585.605 570.8 700.2 c 0 570.8 814.796 663.805 907.801 778.4 907.801 c 0 EndSplineSet Comment: "video processing" Colour: ffffff EndChar StartChar: uniE020 Encoding: 57376 57376 725 Width: 1000 Flags: HW Fore 761.713 205.729 m 1 742.292 141.93 703.822 118.458 660.738 104.755 c 1 506.307 299.187 l 1 351.875 104.755 l 1 300.356 125.727 262.634 156.497 250.9 205.729 c 1 445.332 360.161 l 1 250.9 514.593 l 1 271.147 559.797 299.913 597.668 351.875 615.567 c 1 506.307 421.136 l 1 660.738 615.567 l 1 710.822 599.602 734.668 555.374 761.713 514.593 c 1 567.281 360.161 l 1 761.713 205.729 l 1 500 702 m 0 310.388 702 156.5 548.112 156.5 358.5 c 0 156.5 168.888 310.388 15 500 15 c 0 689.612 15 843.5 168.888 843.5 358.5 c 0 843.5 548.112 689.612 702 500 702 c 0 500 810 m 0 747.572 810 948.5 609.072 948.5 361.5 c 0 948.5 113.928 747.572 -87 500 -87 c 0 252.428 -87 51.5 113.928 51.5 361.5 c 0 51.5 609.072 252.428 810 500 810 c 0 EndSplineSet Comment: "exit" Colour: ffffff EndChar StartChar: uniE021 Encoding: 57377 57377 726 Width: 1000 Flags: HW Fore 30.5 81 m 1 768.5 81 l 1 768.5 -12 l 1 30.5 -12 l 1 30.5 81 l 1 231.5 199 m 1 969.5 199 l 1 969.5 106 l 1 231.5 106 l 1 231.5 199 l 1 30.5 319 m 1 768.5 319 l 1 768.5 226 l 1 30.5 226 l 1 30.5 319 l 1 231.5 440 m 1 969.5 440 l 1 969.5 347 l 1 231.5 347 l 1 231.5 440 l 1 30.5 560 m 1 768.5 560 l 1 768.5 467 l 1 30.5 467 l 1 30.5 560 l 1 231.5 678 m 1 969.5 678 l 1 969.5 585 l 1 231.5 585 l 1 231.5 678 l 1 30.5 798 m 1 768.5 798 l 1 768.5 705 l 1 30.5 705 l 1 30.5 798 l 1 EndSplineSet Comment: "deinterlacers" Colour: ffffff EndChar StartChar: uniE022 Encoding: 57378 57378 727 Width: 1000 Flags: H Fore 600.307 509.693 m 9 755.557 451.043 l 25 545.106 444.144 l 17 591.099 460.302 618.7 484.452 600.307 509.693 c 9 465.757 495.894 m 17 475.63 455.305 498.642 442.33 545.106 478.644 c 9 738.307 764.993 l 25 465.757 495.894 l 17 1056.86 754.644 m 5 1182.76 628.735 1136.11 355.496 928.057 147.443 c 5 720.004 -61.8746 614.106 -87.3574 441.606 -56.1064 c 5 879.757 137.094 1036.85 353.192 1056.86 754.644 c 5 817.656 754.644 m 0 723.226 849.073 519.944 799.073 363.905 643.035 c 0 207.867 486.995 157.866 283.715 252.297 189.283 c 0 346.729 94.8535 550.009 144.854 706.048 300.892 c 0 862.087 456.932 912.087 660.212 817.656 754.644 c 0 938.867 804.194 m 0 1064.78 678.286 998.107 407.246 790.057 199.193 c 0 582.004 -8.85742 310.964 -75.5254 185.056 50.3828 c 0 59.1475 176.291 125.814 447.332 333.866 655.384 c 0 541.918 863.436 812.959 930.103 938.867 804.194 c 0 EndSplineSet Comment: "framerate" Colour: ffffff EndChar StartChar: uniE023 Encoding: 57379 57379 728 Width: 1150 Flags: HW Fore 600.759 224.641 m 25 565.479 229.681 l 25 237.878 -97.9199 l 17 210.158 -110.767 182.438 -105.45 154.719 -95.4004 c 1 192.973 -120.872 231.351 -147.271 263.078 -123.119 c 9 600.759 224.641 l 25 466.914 315.644 m 1 474.296 294.312 479.184 273.617 545.318 237.24 c 1 221.012 -87.0664 l 1 161.897 -98.7578 128.091 -81.4219 142.607 -8.66406 c 1 466.914 315.644 l 1 1098.37 755.822 m 1 1182.97 671.211 1151.62 487.595 1011.81 347.783 c 1 872.003 207.122 774.638 196.079 658.719 217.08 c 1 896.811 274.086 1080.03 479.729 1098.37 755.822 c 1 555.488 405.949 m 1 581.547 530.653 703.411 678.434 882.079 770.846 c 1 855.025 782.079 753.028 776.646 620 647.87 c 1 531.334 515.56 544.291 443.603 555.488 405.949 c 1 937.625 755.822 m 0 874.168 819.279 737.562 785.679 632.704 680.82 c 0 527.846 575.961 494.246 439.358 557.703 375.9 c 0 621.162 312.443 757.767 346.044 862.623 450.901 c 0 967.481 555.76 1001.08 692.363 937.625 755.822 c 0 1019.08 789.119 m 0 1103.69 704.51 1058.89 522.37 919.077 382.559 c 0 779.267 242.749 597.127 197.948 512.518 282.559 c 0 427.907 367.17 472.707 549.31 612.518 689.12 c 0 752.328 828.931 934.468 873.731 1019.08 789.119 c 0 EndSplineSet Comment: "scan channels" Colour: ffffff EndChar StartChar: uniE024 Encoding: 57380 57380 729 Width: 1000 Flags: H Fore 1044 150 m 5 1104.43 229.747 1116 223.803 1116 331.5 c 4 1116 593.976 902.976 807 640.5 807 c 4 378.024 807 165 593.976 165 331.5 c 4 165 69.024 378.024 -144 640.5 -144 c 4 795.279 -144 864.154 -99.6094 951 15 c 4 882.022 -72.1318 799.177 -60 679.5 -60 c 4 471.672 -60 303 108.672 303 316.5 c 4 303 524.328 471.672 693 679.5 693 c 4 887.328 693 1056 524.328 1056 316.5 c 5 1056 243 1056 243 1044 150 c 5 EndSplineSet EndChar StartChar: uniE025 Encoding: 57381 57381 730 Width: 1000 Flags: HW Fore 426 156 m 1 419.468 393.64 563.572 556.413 798 579 c 1 711.906 591.816 564.955 579.727 480 492 c 1 371.119 398.345 411.276 233.024 426 156 c 1 678 654 m 0 866.784 654 1020 500.784 1020 312 c 0 1020 123.216 866.784 -30 678 -30 c 0 489.216 -30 336 123.216 336 312 c 0 336 500.784 489.216 654 678 654 c 0 1044 150 m 1 1104.43 229.747 1116 223.803 1116 331.5 c 0 1116 593.976 902.976 807 640.5 807 c 0 378.024 807 165 593.976 165 331.5 c 0 165 69.024 378.024 -144 640.5 -144 c 0 795.279 -144 864.154 -99.6094 951 15 c 0 882.022 -72.1318 799.177 -60 679.5 -60 c 0 471.672 -60 303 108.672 303 316.5 c 0 303 524.328 471.672 693 679.5 693 c 0 887.328 693 1056 524.328 1056 316.5 c 1 1056 243 1056 243 1044 150 c 1 EndSplineSet EndChar StartChar: uniE026 Encoding: 57382 57382 731 Width: 1000 Flags: H Fore 543.9 165.3 m 1 543.9 87 l 1 1035.3 87 l 1 1035.3 165.3 l 1 543.9 165.3 l 1 371.101 573 m 1 371.101 335.399 l 1 749.101 335.399 l 1 749.101 573 l 1 371.101 573 l 1 514.2 195 m 1 1067.7 195 l 1 1067.7 51.8994 l 1 514.2 51.8994 l 1 514.2 195 l 1 336 608.1 m 1 781.5 608.1 l 1 781.5 305.7 l 1 336 305.7 l 1 336 608.1 l 1 271.2 744.899 m 25 176.7 744.899 l 25 176.7 -150.601 l 25 122.7 -150.601 l 25 122.7 797.1 l 25 271.2 797.1 l 25 271.2 744.899 l 25 870.601 -66.9004 m 1 870.601 -134.4 l 1 1070.4 -134.4 l 1 1070.4 -66.9004 l 1 870.601 -66.9004 l 1 506.101 -64.2002 m 1 506.101 -131.7 l 1 732.9 -131.7 l 1 732.9 -64.2002 l 1 506.101 -64.2002 l 1 257.7 670.2 m 1 257.7 -21 l 1 1162.2 -21 l 1 1162.2 670.2 l 1 257.7 670.2 l 1 1092 -65.1006 m 0 1092 -65.1006 1092 -120.55 1092 -156 c 25 853.5 -156 l 25 853.5 -65.1006 l 25 759.9 -65.1006 l 25 759.9 -156 l 25 479.101 -156 l 25 479.101 -120.55 479.101 -65.1006 479.101 -65.1006 c 0 222.601 -65.1006 l 1 222.601 710.7 l 1 1202.7 710.7 l 1 1202.7 -65.1006 l 1 1092 -65.1006 l 0 EndSplineSet EndChar StartChar: uniE027 Encoding: 57383 57383 732 Width: 1000 Flags: HW Fore 433 -24 m 0 433 13.2598 463.24 43.5 500.5 43.5 c 0 537.76 43.5 568 13.2598 568 -24 c 0 568 -61.2598 537.76 -91.5 500.5 -91.5 c 0 463.24 -91.5 433 -61.2598 433 -24 c 0 383 738 m 17 461.001 822.771 539 829.281 617 738 c 9 501 120 l 25 383 738 l 17 EndSplineSet EndChar StartChar: uniE028 Encoding: 57384 57384 733 Width: 1000 Flags: HW Fore 741 414 m 1 741 295 l 1 559 295 l 1 559 113 l 1 440 113 l 1 440 295 l 1 258 295 l 1 258 414 l 1 440 414 l 1 440 596 l 1 559 596 l 1 559 414 l 1 741 414 l 1 500 702 m 0 310.388 702 156.5 548.112 156.5 358.5 c 0 156.5 168.888 310.388 15 500 15 c 0 689.612 15 843.5 168.888 843.5 358.5 c 0 843.5 548.112 689.612 702 500 702 c 0 500 810 m 0 747.572 810 948.5 609.072 948.5 361.5 c 0 948.5 113.928 747.572 -87 500 -87 c 0 252.428 -87 51.5 113.928 51.5 361.5 c 0 51.5 609.072 252.428 810 500 810 c 0 EndSplineSet EndChar StartChar: uniE029 Encoding: 57385 57385 734 Width: 1000 Flags: HW Fore 694 429 m 1 694 294 l 1 304 294 l 1 304 429 l 1 694 429 l 1 500 702 m 0 310.388 702 156.5 548.112 156.5 358.5 c 0 156.5 168.888 310.388 15 500 15 c 0 689.612 15 843.5 168.888 843.5 358.5 c 0 843.5 548.112 689.612 702 500 702 c 0 500 810 m 0 747.572 810 948.5 609.072 948.5 361.5 c 0 948.5 113.928 747.572 -87 500 -87 c 0 252.428 -87 51.5 113.928 51.5 361.5 c 0 51.5 609.072 252.428 810 500 810 c 0 EndSplineSet EndChar StartChar: uniE02A Encoding: 57386 57386 735 Width: 1000 Flags: H Fore 382 478 m 1 382 76 l 1 427 76 l 1 427 478 l 1 382 478 l 1 259 -50 m 1 259 -77 l 1 766 -77 l 1 766 -50 l 1 259 -50 l 1 319 55 m 1 319 22 l 1 715 22 l 1 715 55 l 1 319 55 l 1 523 943 m 1 619 967 l 1 622 957.699 l 1 523 943 l 1 513.4 943 m 1 414.4 957.699 l 1 417.4 967 l 1 513.4 943 l 1 622.601 714.399 m 2 634.2 714.399 641.101 715.3 643.301 717.1 c 0 646.101 719.1 647.301 725.3 646.9 735.699 c 0 646.7 736.699 646.601 737.899 646.601 739.3 c 2 646.601 892.3 l 2 646.601 904.5 645.7 911.699 643.9 913.899 c 0 643.5 914.699 643 915.3 642.4 915.699 c 1 642.4 915.699 l 1 640 917.5 633.2 918.6 622 919 c 1 417.4 919 l 2 405.8 919 398.7 917.899 396.101 915.699 c 0 395.7 915.5 395.301 915.199 394.9 914.8 c 1 394.9 914.5 l 1 394.9 914.5 l 1 392.7 911.899 391.2 904.5 390.4 892.3 c 1 391.601 739.3 l 1 391.601 726.899 392.4 719.6 394 717.399 c 0 395.801 715 401.4 713.899 410.801 714.1 c 1 410.801 714.1 l 1 411.101 714.1 l 2 411.9 714.3 413.4 714.399 415.601 714.399 c 2 622.601 714.399 l 2 481 691 m 0 416.2 687.699 l 2 397.947 698.084 382.2 688.699 377.2 690.699 c 0 371.2 693.3 367.7 699.5 366.7 709.3 c 0 366.101 713.5 365.801 719.6 365.801 727.6 c 0 365.801 730.6 365.801 730.6 365.801 735.1 c 2 365.801 735.399 l 2 365.801 736.899 365.801 736.899 365.801 740.199 c 1 364.601 893.199 l 1 365.2 914 366.5 926.8 368.5 931.6 c 0 371.101 937.6 377.2 941.1 386.801 942.1 c 0 391.601 942.699 401.4 943 416.2 943 c 2 620.801 943 l 2 642.601 943 655.9 942.1 660.7 940.3 c 1 660.7 940.3 l 1 665.101 938.699 668.2 935.699 670 931.3 c 1 670 931.3 l 1 670 931 l 1 671.801 926.199 672.7 913.3 672.7 892.3 c 2 672.7 740.199 l 2 672.7 718.199 671.701 704.699 669.7 699.699 c 0 668.102 695.3 665.101 692.3 660.7 690.699 c 0 655.7 688.699 639.921 698.26 622 687.699 c 2 550 691 l 0 550 583 550 570.22 550 493 c 25 679 493 l 25 679 74 l 25 727 74 l 25 727 -33 l 25 780 -33 l 25 780 -149 l 25 251 -149 l 25 251 -33 l 25 304 -33 l 25 304 74 l 25 352 74 l 25 352 493 l 25 481 493 l 25 481 570.22 481 574 481 691 c 0 EndSplineSet Comment: "favorites" Colour: ffffff EndChar StartChar: uniE02B Encoding: 57387 57387 736 Width: 841 Flags: HW Fore 798 579 m 1 802.436 614.775 790.152 644.131 774 672 c 1 987 672 l 1 987 579 l 1 798 579 l 1 655 73 m 0 786 73 l 1 786 -18 l 1 655 -18 l 0 655 73 l 0 348 73 m 0 348 -18 l 0 48 -18 l 1 48 73 l 1 348 73 l 0 348 100 m 0 249 100 l 1 249 193 l 1 351 192 l 0 348 100 l 0 603 193 m 0 987 193 l 1 987 100 l 1 603 99 l 0 603 193 l 0 603 220 m 1 786 220 l 1 786 313 l 1 653.706 313 l 1 612.193 303.139 588.826 277.691 603 220 c 1 368.556 313 m 1 48 313 l 1 48 220 l 1 347.889 220 l 1 352.37 251 355.635 282 368.556 313 c 1 378.439 341 m 1 249 341 l 1 249 434 l 1 453 435 l 1 399.603 413.363 385.362 378.426 378.439 341 c 1 689.941 341 m 1 713.406 366.515 740.886 386.777 747 435 c 1 987 434 l 1 987 341 l 1 689.941 341 l 1 183.571 554 m 0 48 554 l 1 48 461 l 1 185.47 461 l 0 183.571 554 l 0 417.4 461 m 0 436 554 l 0 540 555 l 1 555.133 518.821 531.661 489.29 500.975 461 c 1 417.4 461 l 0 727.786 699 m 1 786 699 l 1 786 791 l 1 669 791 l 1 703.629 765.606 737.636 739.994 727.786 699 c 1 319.784 791 m 1 48 791 l 1 48 699 l 1 254.433 699 l 1 244.966 725.54 269.557 756.578 319.784 791 c 1 548 222 m 1 424 222 l 1 422 276.667 434.667 321.667 462 357 c 0 476 375.667 496.333 396.667 523 420 c 1 560.333 450.667 582.333 475.333 589 494 c 1 589 494 l 1 592.333 504 594 516.667 594 532 c 0 594 576 577.667 608.667 545 630 c 0 528.333 641.333 509.667 647 489 647 c 0 448.333 647 417.667 627.667 397 589 c 0 383.667 564.333 377.667 536 379 504 c 1 379 502 l 1 243 502 l 1 243.667 574 257.667 629.333 285 668 c 0 286.333 670.667 288 673.333 290 676 c 0 333.333 735.333 398.667 765 486 765 c 0 572.667 765 639.333 736.667 686 680 c 0 686 679.333 686.333 678.667 687 678 c 0 715.667 642.667 731.333 600.667 734 552 c 0 734.667 546.667 735 541 735 535 c 0 735 483 720.667 440.333 692 407 c 0 684.667 398.333 676 389.667 666 381 c 0 654 370.333 640 359.333 624 348 c 2 615 341 l 2 583 318.333 563.667 300.333 557 287 c 0 551 274.333 548 252.667 548 222 c 1 564 167 m 1 564 21 l 1 414 21 l 1 414 167 l 1 564 167 l 1 EndSplineSet Comment: "Deinterlacer description" Colour: ffffff EndChar StartChar: uniE02C Encoding: 57388 57388 737 Width: 686 Flags: HW Fore -16.4199 828 m 26 1016.42 365.879 l 26 -16.4199 -128.16 l 26 -16.4199 828 l 26 41.8604 749.4 m 26 41.8604 -47.4004 l 26 916.58 363 l 26 41.8604 749.4 l 26 574.58 462 m 1 574.58 418.608 l 1 472.819 298.032 l 1 578.035 298.032 l 1 578.035 254.641 l 1 406.388 254.641 l 1 406.388 298.032 l 1 508.916 418.608 l 1 413.3 418.608 l 1 413.3 462 l 1 574.58 462 l 1 302.34 345.721 m 1 163.62 345.721 l 1 163.62 186.84 l 1 91.6201 186.84 l 1 91.6201 536.76 l 1 163.62 536.76 l 1 163.62 405.721 l 1 301.86 405.721 l 1 301.86 536.76 l 1 374.34 536.76 l 1 374.34 186.84 l 1 302.34 186.84 l 1 302.34 345.721 l 1 EndSplineSet Comment: "Attempted framerate" Colour: ffffff EndChar StartChar: uniE02D Encoding: 57389 57389 738 Width: 1026 VWidth: 1024 Flags: HW Fore 532 756 m 25 373 378 l 25 505 444 l 25 421 117 l 25 640 594 l 25 493 504 l 25 532 756 l 25 527 851 m 1 847 931 l 1 857 900 l 1 527 851 l 1 495 851 m 1 165 900 l 1 175 931 l 1 495 851 l 1 859 89 m 2 897.667 89 920.667 92 928 98 c 0 937.333 104.667 941.333 125.333 940 160 c 0 939.333 163.333 939 167.333 939 172 c 2 939 682 l 2 939 722.667 936 746.667 930 754 c 0 928.667 756.667 927 758.667 925 760 c 1 925 760 l 1 917 766 894.333 769.667 857 771 c 1 175 771 l 2 136.333 771 112.667 767.333 104 760 c 0 102.667 759.333 101.333 758.333 100 757 c 1 100 756 l 1 100 756 l 1 92.667 747.333 87.667 722.667 85 682 c 1 89 172 l 1 89 130.667 91.667 106.333 97 99 c 0 103 91 121.667 87.333 153 88 c 1 153 88 l 1 154 88 l 2 156.667 88.667 161.667 89 169 89 c 2 859 89 l 2 -1 685 m 1 1 754.333 5.33301 797 12 813 c 0 20.667 833 41 844.667 73 848 c 0 89 850 121.667 851 171 851 c 2 853 851 l 2 925.667 851 970 848 986 842 c 1 986 842 l 1 1000.67 836.667 1011 826.667 1017 812 c 1 1017 812 l 1 1017 811 l 1 1023 795 1026 752 1026 682 c 2 1026 175 l 2 1026 101.667 1022.67 56.667 1016 40 c 0 1010.67 25.333 1000.67 15.333 986 10 c 0 969.333 3.33301 926.333 0 857 0 c 2 171 0 l 2 101 0 57.667 3.33301 41 10 c 0 21 18.667 9.33301 39.333 6 72 c 0 4 86 3 106.333 3 133 c 0 3 143 3 143 3 158 c 2 3 159 l 2 3 164 3 164 3 175 c 1 -1 685 l 1 EndSplineSet Comment: "Television Norm" Colour: ffffff EndChar StartChar: uniE02E Encoding: 57390 57390 739 Width: 1000 Flags: HW Fore 691.361 30.2881 m 25 816.08 -64.2803 l 25 718.411 -124.66 l 25 691.361 30.2881 l 25 813.355 173.387 m 25 968.649 153.848 l 25 914.256 52.7227 l 25 813.355 173.387 l 25 848.302 336.131 m 25 992.561 396.856 l 25 996.017 282.083 l 25 848.302 336.131 l 25 817.142 500.52 m 25 911.711 625.238 l 25 972.091 527.569 l 25 817.142 500.52 l 25 706.444 603.706 m 25 725.983 759 l 25 827.109 704.607 l 25 706.444 603.706 l 25 470.983 630 m 0 300.415 630 161.983 491.568 161.983 321 c 0 161.983 150.432 300.415 12 470.983 12 c 0 641.552 12 779.983 150.432 779.983 321 c 0 779.983 491.568 641.552 630 470.983 630 c 0 2.9834 777 m 1 470.983 777 l 1 470.983 -117 l 1 2.9834 -117 l 1 2.9834 777 l 1 EndSplineSet Comment: "Input Filters" Colour: ffffff EndChar StartChar: uniE02F Encoding: 57391 57391 740 Width: 1000 Flags: HW Fore 94.9785 234 m 0 83.9785 153 l 1 -21.0215 153 l 1 11.1758 317.206 l 1 94.9785 234 l 0 34.9785 609 m 1 -35.0215 609 l 1 -65.0215 456 l 1 -75.6055 402.409 -55.0684 379.454 -34.0215 357 c 1 -84.0215 357 l 1 -124.021 153 l 1 -230.021 153 l 1 -190.021 357 l 1 -267.021 357 l 1 -267.021 456 l 1 -170.021 456 l 1 -140.021 609 l 1 -239.021 609 l 1 -239.021 708 l 1 -120.021 708 l 1 -86.0215 882 l 1 18.9785 882 l 1 -15.0215 708 l 1 87.9785 708 l 1 121.979 882 l 1 226.979 882 l 1 193.979 756 l 1 34.9785 609 l 1 749.482 -1.85059 m 0 603.111 -42.1553 l 0 559.979 -156 l 1 231.174 172.805 l 1 494.217 435.849 l 1 823.021 107.044 l 1 749.482 -1.85059 l 0 164.705 239.272 m 1 427.75 502.316 l 1 477.953 452.112 l 1 214.91 189.068 l 1 164.705 239.272 l 1 103.895 300.084 m 1 366.938 563.128 l 1 417.143 512.923 l 1 154.1 249.88 l 1 103.895 300.084 l 1 260.164 669.9 m 1 354.918 575.148 l 1 91.873 312.104 l 1 -6.02148 410 l 1 -20.0605 423.778 -26.9238 438.437 -26.9238 453.934 c 0 -26.9238 468.397 -20.9453 483.593 -9.24219 499.488 c 1 168.24 676.972 l 1 182.748 685.317 197.477 691.94 213.051 691.94 c 0 227.816 691.94 243.344 685.986 260.164 669.9 c 1 EndSplineSet Comment: "renumber channel" Colour: ffffff EndChar StartChar: uniE030 Encoding: 57392 57392 741 Width: 1000 Flags: HW Fore 277.61 573.601 m 1 277.61 138.9 l 1 712.311 138.9 l 1 712.311 573.601 l 1 277.61 573.601 l 1 808.79 479.101 m 1 864.14 479.101 l 1 894.739 454.62 914.72 429.96 924.08 405.12 c 0 941.72 358.68 921.739 309.81 864.14 258.51 c 1 808.79 258.51 l 1 913.55 335.55 913.55 409.079 808.79 479.101 c 1 960.261 372.99 m 0 960.261 375.15 960.17 377.4 959.989 379.74 c 0 957.65 411.06 935.42 444.359 893.3 479.64 c 1 1083.11 371.64 l 1 893.3 258.24 l 1 937.761 301.439 960.08 339.689 960.261 372.99 c 0 191.21 479.101 m 1 86.4502 409.079 86.4502 335.55 191.21 258.51 c 1 135.86 258.51 l 1 78.2607 309.81 58.2803 358.68 75.9199 405.12 c 0 85.2803 429.96 105.261 454.62 135.86 479.101 c 1 191.21 479.101 l 1 39.7393 372.99 m 0 39.9199 339.689 62.2393 301.439 106.7 258.24 c 1 -83.1104 371.64 l 1 106.7 479.64 l 1 64.5801 444.359 42.3496 411.06 40.0107 379.74 c 0 39.8301 377.4 39.7393 375.15 39.7393 372.99 c 0 188.511 212.851 m 0 188.511 63.2998 l 0 732.11 63.2998 l 1 732.11 12 l 1 188.511 12 l 1 137.21 12 l 1 137.21 212.7 l 0 188.511 212.851 l 0 137.21 525.9 m 0 137.21 573.601 l 1 188.511 573.601 l 1 188.511 525 l 0 137.21 525.9 l 0 234.41 624.9 m 1 766.311 624.9 l 1 766.311 93 l 1 234.41 93 l 1 234.41 624.9 l 1 EndSplineSet EndChar StartChar: uniE031 Encoding: 57393 57393 742 Width: 1000 Flags: HW Fore 528 388 m 29 201 388 l 29 201 318 l 29 113 420 l 29 201 519 l 29 201 454 l 29 528 454 l 29 778 454 l 25 778 519 l 25 866 420 l 25 778 318 l 25 778 388 l 25 528 388 l 29 80 618 m 1 80 198 l 1 920 198 l 1 920 618 l 1 80 618 l 1 511 2 m 0 122 2 l 9 122 124 l 25 164 124 l 25 164 58 l 17 514 58 l 0 852.196 58 l 9 852.196 124 l 25 894.196 124 l 25 894.196 2 l 17 511 2 l 0 511 820 m 0 894.196 820 l 9 894.196 697 l 25 852.196 697 l 25 852.196 764 l 17 514 764 l 0 164 764 l 9 164 697 l 25 122 697 l 25 122 820 l 17 511 820 l 0 41 654 m 1 959 654 l 1 959 168 l 1 41 168 l 1 41 654 l 1 EndSplineSet EndChar StartChar: uniE032 Encoding: 57394 57394 743 Width: 1026 VWidth: 1024 Flags: HW Fore 897 132 m 1 114 132 l 1 114 240 l 1 897 240 l 1 897 132 l 1 897 621 m 1 114 621 l 1 114 729 l 1 897 729 l 1 897 621 l 1 114 568 m 1 897 568 l 1 897 299 l 1 114 299 l 1 114 568 l 1 527 851 m 1 847 931 l 1 857 900 l 1 527 851 l 1 495 851 m 1 165 900 l 1 175 931 l 1 495 851 l 1 859 89 m 2 897.667 89 920.667 92 928 98 c 0 937.333 104.667 941.333 125.333 940 160 c 0 939.333 163.333 939 167.333 939 172 c 2 939 682 l 2 939 722.667 936 746.667 930 754 c 0 928.667 756.667 927 758.667 925 760 c 1 925 760 l 1 917 766 894.333 769.667 857 771 c 1 175 771 l 2 136.333 771 112.667 767.333 104 760 c 0 102.667 759.333 101.333 758.333 100 757 c 1 100 756 l 1 100 756 l 1 92.667 747.333 87.667 722.667 85 682 c 1 89 172 l 1 89 130.667 91.667 106.333 97 99 c 0 103 91 121.667 87.333 153 88 c 1 153 88 l 1 154 88 l 2 156.667 88.667 161.667 89 169 89 c 2 859 89 l 2 -1 685 m 1 1 754.333 5.33301 797 12 813 c 0 20.667 833 41 844.667 73 848 c 0 89 850 121.667 851 171 851 c 2 853 851 l 2 925.667 851 970 848 986 842 c 1 986 842 l 1 1000.67 836.667 1011 826.667 1017 812 c 1 1017 812 l 1 1017 811 l 1 1023 795 1026 752 1026 682 c 2 1026 175 l 2 1026 101.667 1022.67 56.667 1016 40 c 0 1010.67 25.333 1000.67 15.333 986 10 c 0 969.333 3.33301 926.333 0 857 0 c 2 171 0 l 2 101 0 57.667 3.33301 41 10 c 0 21 18.667 9.33301 39.333 6 72 c 0 4 86 3 106.333 3 133 c 0 3 143 3 143 3 158 c 2 3 159 l 2 3 164 3 164 3 175 c 1 -1 685 l 1 EndSplineSet EndChar StartChar: uniE033 Encoding: 57395 57395 744 Width: 1026 VWidth: 1024 Flags: HW Fore 842.175 106.025 m 2 186.675 106.025 l 2 179.709 106.025 174.959 105.708 172.425 105.075 c 2 171.475 105.075 l 1 171.475 105.075 l 1 141.709 104.441 123.975 107.925 118.275 115.525 c 0 113.208 122.491 110.675 145.608 110.675 184.875 c 1 106.875 669.375 l 1 109.408 708.009 114.158 731.441 121.125 739.675 c 1 121.125 739.675 l 1 121.125 740.625 l 1 122.392 741.892 123.658 742.842 124.925 743.475 c 0 133.158 750.441 155.642 753.925 192.375 753.925 c 2 840.275 753.925 l 1 875.741 752.658 897.275 749.175 904.875 743.475 c 1 904.875 743.475 l 1 906.775 742.209 908.358 740.309 909.625 737.775 c 0 915.325 730.809 918.175 708.009 918.175 669.375 c 2 918.175 184.875 l 2 918.175 180.441 918.491 176.642 919.125 173.475 c 0 920.392 140.541 916.592 120.908 907.725 114.575 c 0 900.759 108.875 878.908 106.025 842.175 106.025 c 2 762.203 631.292 m 25 699.388 684 l 25 541.904 496.319 l 25 497.474 533.601 l 25 505.177 388.765 l 25 642.257 412.114 l 25 604.721 443.61 l 25 762.203 631.292 l 25 133.5 366 m 1 133.5 135 l 1 469.5 135 l 1 469.5 366 l 1 133.5 366 l 1 527.5 851 m 1 847.5 931 l 1 857.5 900 l 1 527.5 851 l 1 495.5 851 m 1 165.5 900 l 1 175.5 931 l 1 495.5 851 l 1 859.5 89 m 2 898.167 89 921.167 92 928.5 98 c 0 937.833 104.667 941.833 125.333 940.5 160 c 0 939.833 163.333 939.5 167.333 939.5 172 c 2 939.5 682 l 2 939.5 722.667 936.5 746.667 930.5 754 c 0 929.167 756.667 927.5 758.667 925.5 760 c 1 925.5 760 l 1 917.5 766 894.833 769.667 857.5 771 c 1 175.5 771 l 2 136.833 771 113.167 767.333 104.5 760 c 0 103.167 759.333 101.833 758.333 100.5 757 c 1 100.5 756 l 1 100.5 756 l 1 93.167 747.333 88.167 722.667 85.5 682 c 1 89.5 172 l 1 89.5 130.667 92.167 106.333 97.5 99 c 0 103.5 91 122.167 87.333 153.5 88 c 1 153.5 88 l 1 154.5 88 l 2 157.167 88.667 162.167 89 169.5 89 c 2 859.5 89 l 2 -0.5 685 m 1 1.5 754.333 5.83301 797 12.5 813 c 0 21.167 833 41.5 844.667 73.5 848 c 0 89.5 850 122.167 851 171.5 851 c 2 853.5 851 l 2 926.167 851 970.5 848 986.5 842 c 1 986.5 842 l 1 1001.17 836.667 1011.5 826.667 1017.5 812 c 1 1017.5 812 l 1 1017.5 811 l 1 1023.5 795 1026.5 752 1026.5 682 c 2 1026.5 175 l 2 1026.5 101.667 1023.17 56.667 1016.5 40 c 0 1011.17 25.333 1001.17 15.333 986.5 10 c 0 969.833 3.33301 926.833 0 857.5 0 c 2 171.5 0 l 2 101.5 0 58.167 3.33301 41.5 10 c 0 21.5 18.667 9.83301 39.333 6.5 72 c 0 4.5 86 3.5 106.333 3.5 133 c 0 3.5 143 3.5 143 3.5 158 c 2 3.5 159 l 2 3.5 164 3.5 164 3.5 175 c 1 -0.5 685 l 1 EndSplineSet EndChar StartChar: uniE034 Encoding: 57396 57396 745 Width: 1000 Flags: HW Fore 113 526 m 5 113 258 l 5 889 258 l 5 889 526 l 5 113 526 l 5 452 744 m 29 452 648 l 29 382 648 l 29 484 560 l 29 583 648 l 29 518 648 l 29 518 744 l 29 452 744 l 29 452 54 m 29 518 54 l 29 518 150 l 29 583 150 l 29 484 238 l 29 382 150 l 29 452 150 l 29 452 54 l 29 87.0352 771.36 m 5 912.965 771.36 l 5 912.965 32.6396 l 5 87.0352 32.6396 l 5 87.0352 771.36 l 5 41.1504 812.4 m 5 41.1504 -8.40039 l 5 958.85 -8.40039 l 5 958.85 812.4 l 5 41.1504 812.4 l 5 17 834 m 5 983 834 l 5 983 -30 l 5 17 -30 l 5 17 834 l 5 EndSplineSet EndChar StartChar: uniE035 Encoding: 57397 57397 746 Width: 1000 Flags: HW Fore 113 571 m 1 889 571 l 1 889 232 l 1 113 232 l 1 113 571 l 1 452 598 m 25 452 694 l 25 382 694 l 25 484 782 l 25 583 694 l 25 518 694 l 25 518 598 l 25 452 598 l 25 452 200 m 25 518 200 l 25 518 104 l 25 583 104 l 25 484 16 l 25 382 104 l 25 452 104 l 25 452 200 l 25 41.1504 812.4 m 1 41.1504 -8.40039 l 1 958.85 -8.40039 l 1 958.85 812.4 l 1 41.1504 812.4 l 1 17 834 m 1 983 834 l 1 983 -30 l 1 17 -30 l 1 17 834 l 1 EndSplineSet EndChar StartChar: uniE036 Encoding: 57398 57398 747 Width: 1026 VWidth: 1024 Flags: HW Fore 470.921 519.52 m 1 402.28 519.52 l 1 398.44 544.48 393.16 563.2 386.44 575.68 c 0 373 601.12 353.32 613.841 327.4 613.841 c 0 290.601 613.841 264.521 587.2 249.16 533.92 c 0 243.081 512.319 239.24 487.12 237.641 458.319 c 1 236.681 428.8 l 1 236.681 346.72 251.721 291.76 281.8 263.92 c 0 294.28 252.4 308.681 246.641 325 246.641 c 0 360.521 246.641 384.2 268.24 396.041 311.44 c 0 399.241 323.44 401.32 336.88 402.28 351.76 c 1 472.36 351.76 l 1 469.801 280.72 450.28 227.44 413.8 191.92 c 0 388.841 167.92 358.601 155.92 323.081 155.92 c 0 268.04 155.92 226.28 186.641 197.8 248.079 c 0 175.721 295.601 164.681 356.319 164.681 430.24 c 0 164.681 530.081 183.881 604.479 222.28 653.44 c 0 249.8 688.48 284.041 706 325 706 c 0 376.521 706 416.2 680.56 444.041 629.68 c 2 447.4 623.2 l 2 460.841 596.8 468.681 562.239 470.921 519.52 c 1 866.921 522.52 m 1 798.28 522.52 l 1 794.44 547.48 789.16 566.2 782.44 578.68 c 0 769 604.12 749.32 616.841 723.4 616.841 c 0 686.601 616.841 660.521 590.2 645.16 536.92 c 0 639.081 515.319 635.24 490.12 633.641 461.319 c 1 632.681 431.8 l 1 632.681 349.72 647.721 294.76 677.8 266.92 c 0 690.28 255.4 704.681 249.641 721 249.641 c 0 756.521 249.641 780.2 271.24 792.041 314.44 c 0 795.241 326.44 797.32 339.88 798.28 354.76 c 1 868.36 354.76 l 1 865.801 283.72 846.28 230.44 809.8 194.92 c 0 784.841 170.92 754.601 158.92 719.081 158.92 c 0 664.04 158.92 622.28 189.641 593.8 251.079 c 0 571.721 298.601 560.681 359.319 560.681 433.24 c 0 560.681 533.081 579.881 607.479 618.28 656.44 c 0 645.8 691.48 680.041 709 721 709 c 0 772.521 709 812.2 683.56 840.041 632.68 c 2 843.4 626.2 l 2 856.841 599.8 864.681 565.239 866.921 522.52 c 1 527 851 m 1 847 931 l 1 857 900 l 1 527 851 l 1 495 851 m 1 165 900 l 1 175 931 l 1 495 851 l 1 859 89 m 2 897.667 89 920.667 92 928 98 c 0 937.333 104.667 941.333 125.333 940 160 c 0 939.333 163.333 939 167.333 939 172 c 2 939 682 l 2 939 722.667 936 746.667 930 754 c 0 928.667 756.667 927 758.667 925 760 c 1 925 760 l 1 917 766 894.333 769.667 857 771 c 1 175 771 l 2 136.333 771 112.667 767.333 104 760 c 0 102.667 759.333 101.333 758.333 100 757 c 1 100 756 l 1 100 756 l 1 92.667 747.333 87.667 722.667 85 682 c 1 89 172 l 1 89 130.667 91.667 106.333 97 99 c 0 103 91 121.667 87.333 153 88 c 1 153 88 l 1 154 88 l 2 156.667 88.667 161.667 89 169 89 c 2 859 89 l 2 -1 685 m 1 1 754.333 5.33301 797 12 813 c 0 20.667 833 41 844.667 73 848 c 0 89 850 121.667 851 171 851 c 2 853 851 l 2 925.667 851 970 848 986 842 c 1 986 842 l 1 1000.67 836.667 1011 826.667 1017 812 c 1 1017 812 l 1 1017 811 l 1 1023 795 1026 752 1026 682 c 2 1026 175 l 2 1026 101.667 1022.67 56.667 1016 40 c 0 1010.67 25.333 1000.67 15.333 986 10 c 0 969.333 3.33301 926.333 0 857 0 c 2 171 0 l 2 101 0 57.667 3.33301 41 10 c 0 21 18.667 9.33301 39.333 6 72 c 0 4 86 3 106.333 3 133 c 0 3 143 3 143 3 158 c 2 3 159 l 2 3 164 3 164 3 175 c 1 -1 685 l 1 EndSplineSet EndChar StartChar: uniE037 Encoding: 57399 57399 748 Width: 1000 Flags: HW Fore 484.1 -61.2002 m 0 102.8 -61.2002 l 1 102.8 697.2 l 1 536.453 697 l 0 525.104 617.2 l 0 182.8 617.2 l 1 182.8 501 l 1 153.5 438 l 1 182.8 378 l 1 182.8 18.7998 l 1 445.21 19 l 0 484.1 -61.2002 l 0 659.889 -61.2002 m 0 672.479 17 l 0 817.2 18.7998 l 1 817.2 617.2 l 1 761.367 617.2 l 0 774.056 696 l 0 897.2 697.2 l 1 897.2 -61.2002 l 1 659.889 -61.2002 l 0 639.5 879 m 1 729.5 849 l 1 577.5 -95 l 1 336.5 402 l 1 249.078 356 l 1 210.5 435 l 1 396.5 519 l 1 543.5 204 l 1 639.5 879 l 1 EndSplineSet EndChar StartChar: uniE038 Encoding: 57400 57400 749 Width: 1000 Flags: HW Fore 102.8 697.2 m 5 897.2 697.2 l 5 897.2 -61.2002 l 5 102.8 -61.2002 l 5 102.8 697.2 l 5 182.8 617.2 m 5 182.8 18.7998 l 5 817.2 18.7998 l 5 817.2 617.2 l 5 182.8 617.2 l 5 EndSplineSet EndChar StartChar: uniE039 Encoding: 57401 57401 750 Width: 1000 Flags: HW Fore 481.648 191.823 m 25 431.825 33.5264 l 17 408.742 39.1445 385.009 41.6416 366.874 71.0264 c 9 481.648 191.823 l 25 772.577 277 m 25 894.874 164.823 l 17 912.056 181.229 931.361 195.26 932.373 229.774 c 9 772.577 277 l 25 687.874 191.823 m 25 737.697 33.5264 l 17 760.78 39.1445 784.516 41.6416 802.648 71.0264 c 9 687.874 191.823 l 25 582.874 164.823 m 25 546.874 2.82324 l 17 569.675 -3.85352 591.478 -13.5576 621.874 2.82324 c 9 582.874 164.823 l 25 481.648 609 m 25 431.825 767.297 l 17 408.742 761.679 385.009 759.182 366.874 729.797 c 9 481.648 609 l 25 798.874 396 m 25 960.875 431.999 l 17 967.552 409.2 977.256 387.396 960.874 357 c 9 798.874 396 l 25 772.577 523.823 m 25 894.874 636 l 17 912.056 619.594 931.361 605.562 932.373 571.049 c 9 772.577 523.823 l 25 687.874 609 m 25 737.697 767.297 l 17 760.78 761.679 784.516 759.182 802.648 729.797 c 9 687.874 609 l 25 582.874 636 m 25 546.874 798 l 17 569.674 804.677 591.477 814.381 621.874 798 c 9 582.874 636 l 25 122.124 597 m 9 124.854 435.54 122.124 183 122.124 183 c 0 218.124 308 l 9 320.664 308.39 473.124 318 481.049 309 c 0 504.972 281.83 540.599 265.5 579.624 265.5 c 0 653.316 265.5 713.124 325.308 713.124 399 c 0 713.124 472.692 653.316 532.5 579.624 532.5 c 0 539.157 532.5 503.153 512.225 478.389 484 c 0 473.124 478 319.627 483.39 218.124 483 c 17 122.124 597 l 9 EndSplineSet EndChar StartChar: uniE03A Encoding: 57402 57402 751 Width: 1000 Flags: HW Fore 622.25 725 m 5 782.25 765 l 5 787.25 749.5 l 5 622.25 725 l 5 606.25 725 m 5 441.25 749.5 l 5 446.25 765 l 5 606.25 725 l 5 788.25 344 m 6 807.584 344 819.084 345.5 822.75 348.5 c 4 827.416 351.834 829.416 362.166 828.75 379.5 c 4 828.416 381.166 828.25 383.166 828.25 385.5 c 6 828.25 640.5 l 6 828.25 660.834 826.75 672.834 823.75 676.5 c 4 823.084 677.834 822.25 678.834 821.25 679.5 c 5 821.25 679.5 l 5 817.25 682.5 805.916 684.334 787.25 685 c 5 446.25 685 l 6 426.916 685 415.084 683.166 410.75 679.5 c 4 410.084 679.166 409.416 678.666 408.75 678 c 5 408.75 677.5 l 5 408.75 677.5 l 5 405.083 673.166 402.583 660.834 401.25 640.5 c 5 403.25 385.5 l 5 403.25 364.834 404.583 352.666 407.25 349 c 4 410.25 345 419.584 343.167 435.25 343.5 c 5 435.25 343.5 l 5 435.75 343.5 l 6 437.084 343.833 439.584 344 443.25 344 c 6 788.25 344 l 6 358.25 642 m 5 359.25 676.666 361.417 698 364.75 706 c 4 369.083 716 379.25 721.834 395.25 723.5 c 4 403.25 724.5 419.584 725 444.25 725 c 6 785.25 725 l 6 821.584 725 843.75 723.5 851.75 720.5 c 5 851.75 720.5 l 5 859.084 717.834 864.25 712.834 867.25 705.5 c 5 867.25 705.5 l 5 867.25 705 l 5 870.25 697 871.75 675.5 871.75 640.5 c 6 871.75 387 l 6 871.75 350.334 870.085 327.833 866.75 319.5 c 4 864.085 312.167 859.084 307.167 851.75 304.5 c 4 843.416 301.167 821.916 299.5 787.25 299.5 c 6 444.25 299.5 l 6 409.25 299.5 387.583 301.167 379.25 304.5 c 4 369.25 308.833 363.417 319.167 361.75 335.5 c 4 360.75 342.5 360.25 352.666 360.25 366 c 4 360.25 371 360.25 371 360.25 378.5 c 6 360.25 379 l 6 360.25 381.5 360.25 381.5 360.25 387 c 5 358.25 642 l 5 128.25 81.6006 m 1 645.051 81.6006 l 1 645.051 16.8008 l 1 128.25 16.8008 l 1 128.25 81.6006 l 1 128.25 186 m 1 859.051 186 l 1 859.051 121.2 l 1 128.25 121.2 l 1 128.25 186 l 1 311.25 285.601 m 1 128.25 285.601 l 1 128.25 220.801 l 1 649.051 220.801 l 1 650.25 255 l 1 383.25 255 l 1 355.938 257.006 330.679 268.613 311.25 285.601 c 1 128.25 328.2 m 1 128.25 394.2 l 1 311.25 393 l 25 311.25 327 l 25 128.25 328.2 l 1 128.25 436.2 m 1 128.25 495.601 l 1 311.25 494.4 l 25 311.25 435 l 25 128.25 436.2 l 1 128.25 535.2 m 1 128.25 600 l 1 311.25 599.8 l 25 311.25 534 l 25 128.25 535.2 l 1 128.25 639.2 m 1 128.25 699.601 l 1 311.25 699.4 l 25 311.25 639 l 25 128.25 639.2 l 1 128.25 739.2 m 1 128.25 804 l 1 348.865 804 l 1 320.743 785.373 304.038 765.534 311.25 739 c 1 128.25 739.2 l 1 EndSplineSet EndChar StartChar: uniE03B Encoding: 57403 57403 752 Width: 1000 Flags: HW Fore 321.5 77 m 1 450.5 77 l 1 450.5 -133 l 1 321.5 -133 l 1 321.5 77 l 1 300.5 101 m 1 300.5 -148 l 1 468.5 -148 l 1 468.5 101 l 1 300.5 101 l 1 276.5 122 m 25 591.5 122 l 25 591.5 10 l 25 669.5 10 l 25 669.5 -168 l 25 276.5 -168 l 25 276.5 122 l 25 750.5 815 m 1 750.5 863 l 1 919.495 785.348 1055.12 669.693 1098.5 449 c 1 1055.92 448.423 l 1 1011.42 598.342 925.811 744.515 750.5 815 c 1 921.5 368 m 1 1068.5 368 l 1 1068.5 92 l 1 921.5 92 l 1 921.5 368 l 1 903.5 392 m 1 903.5 71 l 1 1083.5 71 l 1 1083.5 392 l 1 903.5 392 l 1 693.5 359 m 1 837.5 359 l 1 837.5 233 l 1 693.5 233 l 1 693.5 359 l 1 669.5 389 m 1 669.5 209 l 1 858.5 209 l 1 858.5 389 l 1 669.5 389 l 1 630.5 431 m 1 1125.5 431 l 1 1125.5 38 l 1 630.5 38 l 1 630.5 431 l 1 -44.5 352 m 17 -25.5205 523.759 54.582 625.127 198.5 653 c 9 198.5 614 l 17 74.6592 588.58 10.2305 497.286 -5.5 352 c 9 -44.5 352 l 17 -80.5 293 m 1 438.5 293 l 1 438.5 248 l 1 -80.5 248 l 1 -80.5 293 l 1 -98.5 308 m 1 -98.5 233 l 1 459.5 233 l 1 459.5 308 l 1 -98.5 308 l 1 -128.5 338 m 1 591.5 338 l 1 591.5 167 l 1 -128.5 167 l 1 -128.5 338 l 1 477.5 898.5 m 1 637.5 938.5 l 1 642.5 923 l 1 477.5 898.5 l 1 461.5 898.5 m 1 296.5 923 l 1 301.5 938.5 l 1 461.5 898.5 l 1 643.5 517.5 m 2 662.834 517.5 674.334 519 678 522 c 0 682.666 525.334 684.666 535.666 684 553 c 0 683.666 554.666 683.5 556.666 683.5 559 c 2 683.5 814 l 2 683.5 834.334 682 846.334 679 850 c 0 678.334 851.334 677.5 852.334 676.5 853 c 1 676.5 853 l 1 672.5 856 661.166 857.834 642.5 858.5 c 1 301.5 858.5 l 2 282.166 858.5 270.334 856.666 266 853 c 0 265.334 852.666 264.666 852.166 264 851.5 c 1 264 851 l 1 264 851 l 1 260.333 846.666 257.833 834.334 256.5 814 c 1 258.5 559 l 1 258.5 538.334 259.833 526.166 262.5 522.5 c 0 265.5 518.5 274.834 516.667 290.5 517 c 1 290.5 517 l 1 291 517 l 2 292.334 517.333 294.834 517.5 298.5 517.5 c 2 643.5 517.5 l 2 213.5 815.5 m 1 214.5 850.166 216.667 871.5 220 879.5 c 0 224.333 889.5 234.5 895.334 250.5 897 c 0 258.5 898 274.834 898.5 299.5 898.5 c 2 640.5 898.5 l 2 676.834 898.5 699 897 707 894 c 1 707 894 l 1 714.334 891.334 719.5 886.334 722.5 879 c 1 722.5 879 l 1 722.5 878.5 l 1 725.5 870.5 727 849 727 814 c 2 727 560.5 l 2 727 523.834 725.335 501.333 722 493 c 0 719.335 485.667 714.334 480.667 707 478 c 0 698.666 474.667 677.166 473 642.5 473 c 2 299.5 473 l 2 264.5 473 242.833 474.667 234.5 478 c 0 224.5 482.333 218.667 492.667 217 509 c 0 216 516 215.5 526.166 215.5 539.5 c 0 215.5 544.5 215.5 544.5 215.5 552 c 2 215.5 552.5 l 2 215.5 555 215.5 555 215.5 560.5 c 1 213.5 815.5 l 1 EndSplineSet EndChar StartChar: uniE03C Encoding: 57404 57404 753 Width: 1000 Flags: HW Fore 602.721 765 m 29 548.721 405 l 29 846.12 507 l 29 767.721 591 l 29 1009.68 879 l 21 1006.86 939.24 971.561 955.829 933.721 969 c 13 686.721 675 l 29 602.721 765 l 29 60.3193 -153.6 m 5 60.3193 109.2 l 5 416.721 109.2 l 5 416.721 -153.6 l 5 60.3193 -153.6 l 5 265.52 343.2 m 5 297.92 343.2 l 5 297.92 246 l 5 265.52 246 l 5 265.52 343.2 l 5 96.3193 213.6 m 5 96.3193 361.2 l 5 330.319 361.2 l 5 330.319 213.6 l 5 96.3193 213.6 l 5 438.319 -157.2 m 4 485.12 -157.2 l 5 485.12 350.4 l 5 351.92 350.4 l 29 351.92 190.8 l 29 74.7207 190.8 l 29 74.7207 253.044 74.7207 350.4 74.7207 350.4 c 4 -11.6807 350.4 l 5 -11.6807 -157.2 l 5 38.7207 -157.2 l 4 38.7207 -157.2 36.3809 19.8848 38.7207 130.8 c 29 438.319 130.8 l 29 438.319 17.0762 438.319 -157.2 438.319 -157.2 c 4 EndSplineSet EndChar StartChar: uniE03D Encoding: 57405 57405 754 Width: 1000 Flags: HW Fore 321.52 490.199 m 4 113.774 490.199 -54.8301 321.595 -54.8301 113.85 c 4 -54.8301 -93.8955 113.774 -262.5 321.52 -262.5 c 4 529.266 -262.5 697.87 -93.8955 697.87 113.85 c 4 697.87 321.595 529.266 490.199 321.52 490.199 c 4 323.471 170.399 m 4 292.255 170.399 266.92 145.065 266.92 113.85 c 4 266.92 82.6338 292.255 57.2998 323.471 57.2998 c 4 354.685 57.2998 380.02 82.6338 380.02 113.85 c 4 380.02 145.065 354.685 170.399 323.471 170.399 c 4 325.42 240.6 m 4 394.31 240.6 450.221 184.689 450.221 115.8 c 4 450.221 46.9102 394.31 -9 325.42 -9 c 4 256.53 -9 200.62 46.9102 200.62 115.8 c 4 200.62 184.689 256.53 240.6 325.42 240.6 c 4 319.57 513.6 m 4 540.231 513.6 719.32 334.512 719.32 113.85 c 4 719.32 -106.812 540.231 -285.9 319.57 -285.9 c 4 98.9082 -285.9 -80.1797 -106.812 -80.1797 113.85 c 4 -80.1797 334.512 98.9082 513.6 319.57 513.6 c 4 671.22 765 m 25 755.22 675 l 25 1002.22 969 l 17 1040.06 955.829 1075.36 939.24 1078.18 879 c 9 836.22 591 l 25 914.62 507 l 25 617.22 405 l 25 671.22 765 l 25 EndSplineSet EndChar StartChar: uniE03E Encoding: 57406 57406 755 Width: 1000 Flags: HW Fore 408.5 -123 m 25 1029.5 204 l 25 1047.5 174 l 25 426.5 -153 l 25 408.5 -123 l 25 330.5 762 m 25 363.5 735 l 25 9.5 306 l 25 -23.5 333 l 25 330.5 762 l 25 753.979 781.769 m 1 957.979 832.769 l 1 964.354 813.006 l 1 753.979 781.769 l 1 733.58 781.769 m 1 523.205 813.006 l 1 529.58 832.769 l 1 733.58 781.769 l 1 965.63 295.994 m 2 990.28 295.994 1004.94 297.906 1009.62 301.731 c 0 1015.57 305.981 1018.12 319.155 1017.27 341.256 c 0 1016.84 343.381 1016.63 345.931 1016.63 348.906 c 2 1016.63 674.031 l 2 1016.63 699.956 1014.72 715.256 1010.89 719.932 c 0 1010.04 721.631 1008.98 722.906 1007.71 723.756 c 1 1007.71 723.756 l 1 1002.6 727.581 988.154 729.919 964.354 730.769 c 1 529.58 730.769 l 2 504.929 730.769 489.842 728.431 484.317 723.756 c 0 483.468 723.33 482.616 722.693 481.768 721.844 c 1 481.768 721.206 l 1 481.768 721.206 l 1 477.093 715.681 473.904 699.956 472.205 674.031 c 1 474.755 348.906 l 1 474.755 322.557 476.455 307.043 479.854 302.369 c 0 483.68 297.269 495.58 294.931 515.555 295.356 c 1 515.555 295.356 l 1 516.192 295.356 l 2 517.893 295.781 521.08 295.994 525.755 295.994 c 2 965.63 295.994 l 2 417.38 675.943 m 1 418.655 720.143 421.416 747.344 425.667 757.544 c 0 431.192 770.294 444.154 777.731 464.555 779.856 c 0 474.755 781.131 495.58 781.769 527.03 781.769 c 2 961.805 781.769 l 2 1008.13 781.769 1036.39 779.856 1046.59 776.031 c 1 1046.59 776.031 l 1 1055.94 772.631 1062.53 766.256 1066.35 756.906 c 1 1066.35 756.906 l 1 1066.35 756.269 l 1 1070.18 746.068 1072.09 718.656 1072.09 674.031 c 2 1072.09 350.818 l 2 1072.09 304.068 1069.97 275.381 1065.72 264.756 c 0 1062.32 255.405 1055.94 249.03 1046.59 245.632 c 0 1035.97 241.381 1008.55 239.257 964.354 239.257 c 2 527.03 239.257 l 2 482.405 239.257 454.779 241.381 444.155 245.632 c 0 431.405 251.156 423.967 264.33 421.843 285.156 c 0 420.567 294.081 419.93 307.043 419.93 324.044 c 0 419.93 330.419 419.93 330.419 419.93 339.981 c 2 419.93 340.619 l 2 419.93 343.807 419.93 343.807 419.93 350.818 c 1 417.38 675.943 l 1 183.991 311.421 m 0 51.5537 311.421 -55.9326 203.936 -55.9326 71.498 c 0 -55.9326 -60.9395 51.5537 -168.425 183.991 -168.425 c 0 316.428 -168.425 423.914 -60.9395 423.914 71.498 c 0 423.914 203.936 316.428 311.421 183.991 311.421 c 0 185.234 107.549 m 0 165.334 107.549 149.184 91.3975 149.184 71.498 c 0 149.184 51.5977 165.334 35.4473 185.234 35.4473 c 0 205.134 35.4473 221.284 51.5977 221.284 71.498 c 0 221.284 91.3975 205.134 107.549 185.234 107.549 c 0 186.477 152.301 m 0 230.395 152.301 266.037 116.658 266.037 72.7412 c 0 266.037 28.8242 230.395 -6.81836 186.477 -6.81836 c 0 142.56 -6.81836 106.917 28.8242 106.917 72.7412 c 0 106.917 116.658 142.56 152.301 186.477 152.301 c 0 182.747 326.338 m 0 323.42 326.338 437.588 212.17 437.588 71.498 c 0 437.588 -69.1738 323.42 -183.343 182.747 -183.343 c 0 42.0762 -183.343 -72.0928 -69.1738 -72.0928 71.498 c 0 -72.0928 212.17 42.0762 326.338 182.747 326.338 c 0 EndSplineSet EndChar StartChar: uniE03F Encoding: 57407 57407 756 Width: 1000 Flags: HW Fore -41 371 m 29 88 269 l 29 100 92 l 29 145 410 l 29 73 455 l 29 -41 371 l 29 481 578 m 29 442 467 l 29 556 578 l 29 481 578 l 29 298 587 m 29 241 287 l 29 316 326 l 29 247 44 l 29 370 47 l 29 316 176 l 29 421 407 l 29 370 416 l 29 394 584 l 29 298 587 l 29 811 -22 m 29 820 95 l 29 877 17 l 29 1018 479 l 29 1129 419 l 29 919 -67 l 29 811 -22 l 29 520 161 m 29 553 365 l 29 643 521 l 29 703 467 l 29 754 659 l 29 823 605 l 29 748 413 l 29 661 434 l 29 613 116 l 29 520 161 l 29 673 59 m 29 706 368 l 29 784 272 l 29 871 587 l 29 949 548 l 29 820 158 l 29 748 230 l 29 733 29 l 29 673 59 l 29 700 752 m 5 1287.17 413 l 5 948.166 -174.166 l 5 361 164.834 l 5 700 752 l 5 710.981 711.019 m 5 401.981 175.815 l 5 937.185 -133.185 l 5 1246.18 402.019 l 5 710.981 711.019 l 5 302.292 668 m 4 427 740 l 5 468.569 668 l 4 433.927 668 l 4 416.019 699.019 l 5 362.293 668 l 4 302.292 668 l 4 299.254 -82 m 4 359.255 -82 l 4 178.834 -186.166 l 5 -160.166 401 l 5 145 577.188 l 4 145 542.546 l 4 -119.185 390.019 l 5 189.815 -145.185 l 5 299.254 -82 l 4 562 -1 m 4 622 -31 l 4 175 -31 l 5 175 647 l 5 613 647 l 4 571 617 l 4 205 617 l 5 205 -1 l 5 562 -1 l 4 EndSplineSet EndChar StartChar: uniE040 Encoding: 57408 57408 757 Width: 1000 VWidth: 1024 Flags: HW Fore 172 441 m 5 172 219 l 5 895 219 l 5 895 441 l 5 172 441 l 5 154 459 m 5 910 459 l 5 910 204 l 5 154 204 l 5 154 459 l 5 169 156 m 5 901 156 l 5 901 132 l 5 169 132 l 5 169 156 l 5 169 534 m 5 901 534 l 5 901 510 l 5 169 510 l 5 169 534 l 5 145 114 m 5 931 114 l 5 931 24 l 5 145 24 l 5 145 114 l 5 145 642 m 5 931 642 l 5 931 552 l 5 145 552 l 5 145 642 l 5 548 755 m 5 868 835 l 5 878 804 l 5 548 755 l 5 516 755 m 5 186 804 l 5 196 835 l 5 516 755 l 5 880 -7 m 6 918.667 -7 941.667 -4 949 2 c 4 958.333 8.66699 962.333 29.333 961 64 c 4 960.333 67.333 960 71.333 960 76 c 6 960 586 l 6 960 626.667 957 650.667 951 658 c 4 949.667 660.667 948 662.667 946 664 c 5 946 664 l 5 938 670 915.333 673.667 878 675 c 5 196 675 l 6 157.333 675 133.667 671.333 125 664 c 4 123.667 663.333 122.333 662.333 121 661 c 5 121 660 l 5 121 660 l 5 113.667 651.333 108.667 626.667 106 586 c 5 110 76 l 5 110 34.667 112.667 10.333 118 3 c 4 124 -5 142.667 -8.66699 174 -8 c 5 174 -8 l 5 175 -8 l 6 177.667 -7.33301 182.667 -7 190 -7 c 6 880 -7 l 6 20 589 m 5 22 658.333 26.333 701 33 717 c 4 41.667 737 62 748.667 94 752 c 4 110 754 142.667 755 192 755 c 6 874 755 l 6 946.667 755 991 752 1007 746 c 5 1007 746 l 5 1021.67 740.667 1032 730.667 1038 716 c 5 1038 716 l 5 1038 715 l 5 1044 699 1047 656 1047 586 c 6 1047 79 l 6 1047 5.66699 1043.67 -39.333 1037 -56 c 4 1031.67 -70.667 1021.67 -80.667 1007 -86 c 4 990.333 -92.667 947.333 -96 878 -96 c 6 192 -96 l 6 122 -96 78.667 -92.667 62 -86 c 4 42 -77.333 30.333 -56.667 27 -24 c 4 25 -10 24 10.333 24 37 c 4 24 47 24 47 24 62 c 6 24 63 l 6 24 68 24 68 24 79 c 5 20 589 l 5 EndSplineSet EndChar StartChar: uniE041 Encoding: 57409 57409 65535 Width: 1000 Flags: HWO Fore 375.549 202.065 m 25 583.439 125.698 l 25 602.531 182.974 l 25 375.549 202.065 l 25 283.625 293.989 m 25 207.258 501.879 l 25 264.533 520.971 l 25 283.625 293.989 l 25 359.992 277.019 m 25 929.92 846.947 l 25 949.014 827.854 l 25 527.576 406.419 l 25 359.992 277.019 l 25 309.789 255.099 m 9 929.213 874.523 l 25 1062.15 741.588 l 25 750.316 429.754 l 17 580.398 276.823 440.037 245.22 309.789 255.099 c 9 -38.8145 574.004 m 1 712.133 -176.943 l 1 688.797 -200.278 l 1 -62.1504 550.669 l 1 -38.8145 574.004 l 1 EndSplineSet EndChar StartChar: commaaccent Encoding: 63171 63171 693 Width: 333 Flags: W Fore 112 -60 m 1 234 -60 l 1 234 -163 l 2 234 -217.667 215 -258.333 177 -285 c 0 158.333 -299 136.667 -306.333 112 -307 c 1 112 -261 l 1 158 -252.333 180.333 -222.667 179 -172 c 1 112 -172 l 1 112 -60 l 1 EndSplineSet EndChar StartChar: fi Encoding: 64257 64257 694 Width: 611 Flags: W Fore 548 540 m 1 548 0 l 1 408 0 l 1 408 540 l 1 548 540 l 1 548 729 m 1 548 604 l 1 408 604 l 1 408 729 l 1 548 729 l 1 308 529 m 1 308 436 l 1 225 436 l 1 225 0 l 1 85 0 l 1 85 436 l 1 9 436 l 1 9 529 l 1 85 529 l 1 85 594 l 2 85 684 131 729 223 729 c 1 303 726 l 1 303 621 l 1 263 624 l 1 239.667 624 227 610 225 582 c 1 225 529 l 1 308 529 l 1 EndSplineSet Ligature: 0 0 'liga' f i EndChar StartChar: fl Encoding: 64258 64258 695 Width: 611 Flags: W Fore 546 729 m 1 546 0 l 1 406 0 l 1 406 729 l 1 546 729 l 1 311 529 m 1 311 436 l 1 228 436 l 1 228 0 l 1 88 0 l 1 88 436 l 1 12 436 l 1 12 529 l 1 88 529 l 1 88 594 l 2 88 684 134 729 226 729 c 1 306 726 l 1 306 621 l 1 266 624 l 1 241.333 624 228.667 610 228 582 c 1 228 529 l 1 311 529 l 1 EndSplineSet Ligature: 0 0 'liga' f l EndChar StartChar: uniFB1D Encoding: 64285 64285 696 Width: 284 Flags: W Fore 212 333 m 1 73 276 l 1 73 600 l 1 212 600 l 1 212 333 l 1 104 224 m 1 186 224 l 1 186 142 l 1 104 142 l 1 104 224 l 1 EndSplineSet EndChar StartChar: uniFB1E Encoding: 64286 64286 697 Width: 305 Flags: W Fore 100 813 m 1 0 813 l 1 0 799 4.33333 779.333 13 754 c 1 13 754 l 1 24 731 l 1 35.3333 711 51 695.333 71 684 c 1 96.3333 668 123.667 660 153 660 c 0 181.667 660 209 668 235 684 c 0 255 695.333 270.667 711 282 731 c 0 294 750.333 302 777.667 306 813 c 1 206 813 l 1 206 800.333 202.667 789.333 196 780 c 2 194 778 l 2 184 766 170.333 760 153 760 c 128 135.667 760 122 766 112 778 c 0 105.333 785.333 101.333 797 100 813 c 1 EndSplineSet EndChar StartChar: afii57705 Encoding: 64287 64287 698 Width: 542 Flags: W Fore 212 333 m 1 73 276 l 1 73 600 l 1 212 600 l 1 212 333 l 1 470 333 m 1 331 276 l 1 331 600 l 1 470 600 l 1 470 333 l 1 166 222 m 1 366 222 l 1 366 140 l 1 166 140 l 1 166 222 l 1 EndSplineSet EndChar StartChar: uniFB20 Encoding: 64288 64288 699 Width: 653 Flags: W Fore 350 118 m 1 358.667 119.333 369 123.667 381 131 c 0 401.667 143.667 417 159.333 427 178 c 0 435.667 194 440 211.667 440 231 c 2 440 600 l 1 579 600 l 1 579 231 l 1 580.333 193 571.333 158.667 552 128 c 1 531.333 89.3333 501 58.6667 461 36 c 0 419 11.3333 376 -0.666667 332 0 c 2 86 0 l 1 86 115 l 1 209 115 l 1 99 600 l 1 241 600 l 1 350 118 l 1 EndSplineSet EndChar StartChar: uniFB21 Encoding: 64289 64289 700 Width: 964 Flags: W Fore 342 337 m 1 304 304.333 278.333 277.333 265 256 c 0 248.333 228.667 236 192.667 228 148 c 1 228 0 l 1 89 0 l 1 89 158 l 1 100.333 220 116.333 268.333 137 303 c 0 145.667 317.667 156.667 333 170 349 c 0 183.333 365 209.333 388 248 418 c 2 252 421 l 1 61 600 l 1 256 600 l 1 623 258 l 1 673 304.667 705.333 349.667 720 393 c 0 722 401 l 2 732 444 l 1 732 600 l 1 871 600 l 1 871 433 l 1 860.333 373.667 842.333 325 817 287 c 1 790 250 l 1 764.667 221.333 736 199 704 183 c 1 900 0 l 1 700 0 l 1 342 337 l 1 EndSplineSet EndChar StartChar: uniFB22 Encoding: 64290 64290 701 Width: 888 Flags: W Fore 594 485 m 1 63 485 l 1 63 600 l 1 816 600 l 1 816 485 l 1 733 485 l 1 733 0 l 1 594 0 l 1 594 485 l 1 EndSplineSet EndChar StartChar: uniFB23 Encoding: 64291 64291 702 Width: 932 Flags: W Fore 862 374 m 1 862 0 l 1 723 0 l 1 723 365 l 1 715.667 397.667 708.667 419.333 702 430 c 0 700.667 432.667 699 435.667 697 439 c 2 693 444 l 2 687.667 450.667 684.333 454.333 683 455 c 2 682 456 l 1 682 456 l 1 680 457 680 457 676 459 c 0 658 469 632.667 477 600 483 c 2 598 484 l 1 597 484 l 1 596 484 l 1 595 484 l 1 590 485 l 1 79 485 l 1 79 600 l 1 602 600 l 1 658 593.333 706 579.667 746 559 c 1 746 559 l 1 752 556 l 2 778 543.333 798.667 525.333 814 502 c 0 837.333 468.667 852.667 430.667 860 388 c 1 862 374 l 1 79 0 m 1 79 349 l 1 218 349 l 1 218 0 l 1 79 0 l 1 EndSplineSet EndChar StartChar: uniFB24 Encoding: 64292 64292 703 Width: 845 Flags: W Fore 523 0 m 1 76 0 l 1 76 115 l 1 512 115 l 1 548.667 121.667 573.333 128.333 586 135 c 2 587 135 l 1 588 136 l 1 588 136 l 1 597 141 l 2 604.333 145 609 148.333 611 151 c 0 611.667 152.333 613 154 615 156 c 0 627 172.667 636 194.333 642 221 c 1 642 222 l 1 642 222 l 1 645 235 l 1 645 365 l 1 637.667 397.667 630.667 419.333 624 430 c 0 622.667 432.667 621 435.667 619 439 c 2 615 444 l 2 609.667 450.667 605.333 454.667 602 456 c 1 602 456 l 1 597 459 l 2 579.667 469 554.667 477 522 483 c 2 521 483 l 1 520 484 l 1 519 484 l 1 512 485 l 1 76 485 l 1 76 600 l 1 523 600 l 1 578.333 594 626.333 580.667 667 560 c 1 667 560 l 1 674 556 l 2 698.667 544 719 526 735 502 c 0 759 467.333 774.667 428.667 782 386 c 2 784 374 l 1 784 226 l 1 776.667 180 763 141.333 743 110 c 2 735 98 l 2 719.667 74 699.333 56 674 44 c 1 632 22 584.333 7.66667 531 1 c 2 523 0 l 1 EndSplineSet EndChar StartChar: uniFB25 Encoding: 64293 64293 704 Width: 917 Flags: W Fore 535 101 m 2 535 0 l 1 396 0 l 1 396 107 l 2 396 149 419.333 193.333 466 240 c 0 498 272 550 303 622 333 c 2 623 334 l 1 624 334 l 1 625 334 l 1 638 340 l 2 678 358.667 700.667 385 706 419 c 1 706 485 l 1 62 485 l 1 62 750 l 1 201 750 l 1 201 600 l 1 845 600 l 1 845 412 l 1 844.333 366.667 821.667 328.333 777 297 c 2 776 296 l 1 775 295 l 1 764 288 l 2 744 275.333 705.333 256 648 230 c 0 620.667 218 600 206.667 586 196 c 0 551.333 169.333 534.333 139 535 105 c 0 535 101 l 2 EndSplineSet EndChar StartChar: uniFB26 Encoding: 64294 64294 705 Width: 933 Flags: W Fore 863 0 m 1 80 0 l 1 80 600 l 1 596 600 l 2 654.667 600 707 585.333 753 556 c 0 798.333 527.333 830.667 488.333 850 439 c 0 858.667 416.333 863 393 863 369 c 2 863 0 l 1 724 115 m 1 724 369 l 1 722 402.333 710 429.333 688 450 c 2 687 451 l 1 676 459 l 2 649.333 475.667 622.667 484.333 596 485 c 2 219 485 l 1 219 115 l 1 724 115 l 1 EndSplineSet EndChar StartChar: uniFB27 Encoding: 64295 64295 706 Width: 850 Flags: W Fore 780 374 m 1 780 0 l 1 641 0 l 1 641 365 l 1 633.667 397.667 626.667 419.333 620 430 c 0 618.667 432.667 617 435.667 615 439 c 2 611 444 l 2 605.667 450.667 602.333 454.333 601 455 c 2 600 456 l 1 600 456 l 1 598 457 598 457 594 459 c 0 576 469 550.667 477 518 483 c 2 516 484 l 1 515 484 l 1 514 484 l 1 513 484 l 1 508 485 l 1 63 485 l 1 63 600 l 1 520 600 l 1 576 593.333 624 579.667 664 559 c 1 664 559 l 1 670 556 l 2 696 543.333 716.667 525.333 732 502 c 0 755.333 468.667 770.667 430.667 778 388 c 1 780 374 l 1 EndSplineSet EndChar StartChar: uniFB28 Encoding: 64296 64296 707 Width: 1006 Flags: W Fore 328 485 m 1 328 229 l 1 324 162 l 1 320 141.333 312.333 121.333 301 102 c 1 289.667 78.6667 268.333 59.3333 237 44 c 0 190.333 20 147.667 6 109 2 c 0 103 1.33333 96.6667 0.666667 90 0 c 0 82.6667 -0.666667 73.3333 1 62 5 c 1 62 121 l 1 89 115 l 1 90 115 l 2 108 115 122 117.333 132 122 c 2 148 129 l 2 159.333 134.333 168.667 142.333 176 153 c 0 182.667 163 186.333 179.333 187 202 c 0 187.667 214 188.333 224.333 189 233 c 1 189 485 l 1 123 485 l 1 123 600 l 1 675 600 l 1 731.667 593.333 780.667 579.667 822 559 c 1 822 559 l 1 825 557 l 2 852.333 543 873 525 887 503 c 1 910.333 469.667 925.667 431.667 933 389 c 1 935 374 l 1 935 0 l 1 796 0 l 1 796 366 l 1 788.667 398.667 782 420 776 430 c 2 775 431 l 2 771 437 771 437 766 445 c 0 760.667 451.667 757.333 455.333 756 456 c 2 755 457 l 1 755 457 l 1 753 458 753 458 749 460 c 0 731.667 469.333 707 477 675 483 c 0 670.333 483.667 666.333 484.333 663 485 c 2 328 485 l 1 EndSplineSet EndChar StartChar: uniFB29 Encoding: 64297 64297 708 Width: 584 Flags: W Fore 533 291 m 1 533 172 l 1 50 172 l 1 50 291 l 1 232 291 l 1 232 473 l 1 351 473 l 1 351 291 l 1 533 291 l 1 EndSplineSet EndChar StartChar: afii57694 Encoding: 64298 64298 709 Width: 840 Flags: W Fore 215 323 m 1 283 323 l 2 303.667 323 319.667 328.667 331 340 c 1 344.333 351.333 351 367 351 387 c 2 351 600 l 1 490 600 l 1 490 387 l 2 490 333.667 470.667 291.333 432 260 c 1 399.333 228.667 357 211.333 305 208 c 1 283 208 l 1 230 208 l 1 236 198 l 1 252.667 174.667 267.667 158.667 281 150 c 2 310 133 l 1 336 121 360 115 382 115 c 2 461 115 l 2 483.667 115 507.333 121 532 133 c 0 559.333 147.667 578 161 588 173 c 1 588 173 l 1 606 198 l 1 620 220.667 627 243 627 265 c 2 627 600 l 1 766 600 l 1 766 265 l 1 766.667 221.667 754 180.667 728 142 c 0 698 95.3333 657 59.3333 605 34 c 1 562.333 11.3333 514.333 8.67362e-19 461 0 c 2 382 0 l 2 328.667 0 280.333 11.3333 237 34 c 1 185.667 58.6667 144.667 94.6667 114 142 c 1 88.6667 178 76 219 76 265 c 2 76 600 l 1 215 600 l 1 215 323 l 1 650 721 m 1 732 721 l 1 732 639 l 1 650 639 l 1 650 721 l 1 EndSplineSet EndChar StartChar: afii57695 Encoding: 64299 64299 710 Width: 840 Flags: W Fore 215 323 m 1 283 323 l 2 303.667 323 319.667 328.667 331 340 c 1 344.333 351.333 351 367 351 387 c 2 351 600 l 1 490 600 l 1 490 387 l 2 490 333.667 470.667 291.333 432 260 c 1 399.333 228.667 357 211.333 305 208 c 1 283 208 l 1 230 208 l 1 236 198 l 1 252.667 174.667 267.667 158.667 281 150 c 2 310 133 l 1 336 121 360 115 382 115 c 2 461 115 l 2 483.667 115 507.333 121 532 133 c 0 559.333 147.667 578 161 588 173 c 1 588 173 l 1 606 198 l 1 620 220.667 627 243 627 265 c 2 627 600 l 1 766 600 l 1 766 265 l 1 766.667 221.667 754 180.667 728 142 c 0 698 95.3333 657 59.3333 605 34 c 1 562.333 11.3333 514.333 8.67362e-19 461 0 c 2 382 0 l 2 328.667 0 280.333 11.3333 237 34 c 1 185.667 58.6667 144.667 94.6667 114 142 c 1 88.6667 178 76 219 76 265 c 2 76 600 l 1 215 600 l 1 215 323 l 1 101 721 m 1 183 721 l 1 183 639 l 1 101 639 l 1 101 721 l 1 EndSplineSet EndChar StartChar: uniFB2C Encoding: 64300 64300 711 Width: 840 Flags: W Fore 215 323 m 1 283 323 l 2 303.667 323 319.667 328.667 331 340 c 1 344.333 351.333 351 367 351 387 c 2 351 600 l 1 490 600 l 1 490 387 l 2 490 333.667 470.667 291.333 432 260 c 1 399.333 228.667 357 211.333 305 208 c 1 283 208 l 1 230 208 l 1 236 198 l 1 252.667 174.667 267.667 158.667 281 150 c 2 310 133 l 1 336 121 360 115 382 115 c 2 461 115 l 2 483.667 115 507.333 121 532 133 c 0 559.333 147.667 578 161 588 173 c 1 588 173 l 1 606 198 l 1 620 220.667 627 243 627 265 c 2 627 600 l 1 766 600 l 1 766 265 l 1 766.667 221.667 754 180.667 728 142 c 0 698 95.3333 657 59.3333 605 34 c 1 562.333 11.3333 514.333 8.67362e-19 461 0 c 2 382 0 l 2 328.667 0 280.333 11.3333 237 34 c 1 185.667 58.6667 144.667 94.6667 114 142 c 1 88.6667 178 76 219 76 265 c 2 76 600 l 1 215 600 l 1 215 323 l 1 474 263 m 1 556 263 l 1 556 181 l 1 474 181 l 1 474 263 l 1 650 721 m 1 732 721 l 1 732 639 l 1 650 639 l 1 650 721 l 1 EndSplineSet EndChar StartChar: uniFB2D Encoding: 64301 64301 712 Width: 840 Flags: W Fore 215 323 m 1 283 323 l 2 303.667 323 319.667 328.667 331 340 c 1 344.333 351.333 351 367 351 387 c 2 351 600 l 1 490 600 l 1 490 387 l 2 490 333.667 470.667 291.333 432 260 c 1 399.333 228.667 357 211.333 305 208 c 1 283 208 l 1 230 208 l 1 236 198 l 1 252.667 174.667 267.667 158.667 281 150 c 2 310 133 l 1 336 121 360 115 382 115 c 2 461 115 l 2 483.667 115 507.333 121 532 133 c 0 559.333 147.667 578 161 588 173 c 1 588 173 l 1 606 198 l 1 620 220.667 627 243 627 265 c 2 627 600 l 1 766 600 l 1 766 265 l 1 766.667 221.667 754 180.667 728 142 c 0 698 95.3333 657 59.3333 605 34 c 1 562.333 11.3333 514.333 8.67362e-19 461 0 c 2 382 0 l 2 328.667 0 280.333 11.3333 237 34 c 1 185.667 58.6667 144.667 94.6667 114 142 c 1 88.6667 178 76 219 76 265 c 2 76 600 l 1 215 600 l 1 215 323 l 1 474 263 m 1 556 263 l 1 556 181 l 1 474 181 l 1 474 263 l 1 101 721 m 1 183 721 l 1 183 639 l 1 101 639 l 1 101 721 l 1 EndSplineSet EndChar StartChar: uniFB2E Encoding: 64302 64302 713 Width: 714 Flags: W Fore 286 285 m 1 262 255.667 245.333 221.333 236 182 c 0 235.333 180.667 235 179 235 177 c 1 228 148 l 1 228 0 l 1 89 0 l 1 89 158 l 1 100.333 220 116.333 268.333 137 303 c 0 145.667 317.667 156.667 333 170 349 c 0 181.333 363 195.333 376 212 388 c 1 61 600 l 1 222 600 l 1 425 315 l 1 449 344.333 465.667 377.333 475 414 c 1 482 444 l 1 482 600 l 1 621 600 l 1 621 433 l 1 610.333 373.667 592.333 325 567 287 c 1 540 250 l 1 528 236 514 223.333 498 212 c 1 650 0 l 1 487 0 l 1 286 285 l 1 256 -60 m 1 456 -60 l 1 456 -142 l 1 256 -142 l 1 256 -60 l 1 EndSplineSet EndChar StartChar: uniFB2F Encoding: 64303 64303 714 Width: 714 Flags: W Fore 286 285 m 1 262 255.667 245.333 221.333 236 182 c 0 235.333 180.667 235 179 235 177 c 1 228 148 l 1 228 0 l 1 89 0 l 1 89 158 l 1 100.333 220 116.333 268.333 137 303 c 0 145.667 317.667 156.667 333 170 349 c 0 181.333 363 195.333 376 212 388 c 1 61 600 l 1 222 600 l 1 425 315 l 1 449 344.333 465.667 377.333 475 414 c 1 482 444 l 1 482 600 l 1 621 600 l 1 621 433 l 1 610.333 373.667 592.333 325 567 287 c 1 540 250 l 1 528 236 514 223.333 498 212 c 1 650 0 l 1 487 0 l 1 286 285 l 1 405 -142 m 1 405 -248 l 1 323 -248 l 1 323 -142 l 1 264 -142 l 1 264 -60 l 1 464 -60 l 1 464 -142 l 1 405 -142 l 1 EndSplineSet EndChar StartChar: uniFB30 Encoding: 64304 64304 715 Width: 714 Flags: W Fore 286 285 m 1 262 255.667 245.333 221.333 236 182 c 0 235.333 180.667 235 179 235 177 c 1 228 148 l 1 228 0 l 1 89 0 l 1 89 158 l 1 100.333 220 116.333 268.333 137 303 c 0 145.667 317.667 156.667 333 170 349 c 0 181.333 363 195.333 376 212 388 c 1 61 600 l 1 222 600 l 1 425 315 l 1 449 344.333 465.667 377.333 475 414 c 1 482 444 l 1 482 600 l 1 621 600 l 1 621 433 l 1 610.333 373.667 592.333 325 567 287 c 1 540 250 l 1 528 236 514 223.333 498 212 c 1 650 0 l 1 487 0 l 1 286 285 l 1 270 153 m 1 352 153 l 1 352 71 l 1 270 71 l 1 270 153 l 1 EndSplineSet EndChar StartChar: uniFB31 Encoding: 64305 64305 716 Width: 651 Flags: W Fore 380 115 m 1 380 365 l 1 372.667 397.667 365.667 419.333 359 430 c 0 358.333 431.333 357.333 433 356 435 c 2 350 444 l 2 345.333 450 341.333 454 338 456 c 2 333 459 l 2 315 469 289.667 477 257 483 c 2 247 485 l 1 77 485 l 1 77 600 l 1 259 600 l 1 315 593.333 363 579.667 403 559 c 2 409 556 l 2 435.667 543.333 456 525.333 470 502 c 1 493.333 469.333 509 431.667 517 389 c 1 517 388 l 1 519 374 l 1 519 115 l 1 610 115 l 1 610 0 l 1 77 0 l 1 77 115 l 1 380 115 l 1 216 339 m 1 298 339 l 1 298 257 l 1 216 257 l 1 216 339 l 1 EndSplineSet EndChar StartChar: uniFB32 Encoding: 64306 64306 717 Width: 557 Flags: W Fore 347 138 m 1 220 0 l 1 47 0 l 1 224 194 l 1 341 194 l 1 322 361 l 1 312.667 397.667 305.667 420.667 301 430 c 1 292 444 l 1 286.667 450.667 282.333 454.667 279 456 c 2 274 459 l 2 256 469 230.667 477 198 483 c 2 188 485 l 1 115 485 l 1 115 600 l 1 200 600 l 1 255.333 594 302.667 580.667 342 560 c 0 350 556 l 0 376 543.333 396.667 525.333 412 502 c 0 430.667 475.333 445 441 455 399 c 1 455 398 l 1 460 378 l 1 503 0 l 1 363 0 l 1 347 138 l 1 190 339 m 1 272 339 l 1 272 257 l 1 190 257 l 1 190 339 l 1 EndSplineSet EndChar StartChar: uniFB33 Encoding: 64307 64307 718 Width: 638 Flags: W Fore 344 485 m 1 63 485 l 1 63 600 l 1 566 600 l 1 566 485 l 1 483 485 l 1 483 0 l 1 344 0 l 1 344 485 l 1 206 339 m 1 288 339 l 1 288 257 l 1 206 257 l 1 206 339 l 1 EndSplineSet EndChar StartChar: uniFB34 Encoding: 64308 64308 719 Width: 682 Flags: W Fore 612 374 m 1 612 374 l 1 612 0 l 1 473 0 l 1 473 365 l 1 465.667 397.667 458.667 419.333 452 430 c 0 451.333 432 450.333 433.667 449 435 c 2 443 444 l 2 437.667 450.667 434.333 454.667 433 456 c 2 432 456 l 1 426 459 l 2 408 469.667 382.667 478 350 484 c 2 340 485 l 1 79 485 l 1 79 600 l 1 352 600 l 1 408 594 456 580.667 496 560 c 2 502 556 l 1 528 544 548.667 526 564 502 c 1 587.333 469.333 602.667 431.333 610 388 c 1 612 374 l 1 79 0 m 1 79 349 l 1 218 349 l 1 218 0 l 1 79 0 l 1 304 339 m 1 386 339 l 1 386 257 l 1 304 257 l 1 304 339 l 1 EndSplineSet EndChar StartChar: afii57723 Encoding: 64309 64309 720 Width: 367 Flags: W Fore 149 0 m 1 149 600 l 1 288 600 l 1 288 0 l 1 149 0 l 1 30 339 m 1 112 339 l 1 112 257 l 1 30 257 l 1 30 339 l 1 EndSplineSet EndChar StartChar: uniFB36 Encoding: 64310 64310 721 Width: 443 Flags: W Fore 149 485 m 1 63 485 l 1 63 600 l 1 371 600 l 1 371 485 l 1 288 485 l 1 288 0 l 1 149 0 l 1 149 485 l 1 26 339 m 1 108 339 l 1 108 257 l 1 26 257 l 1 26 339 l 1 EndSplineSet EndChar StartChar: uniFB38 Encoding: 64312 64312 722 Width: 670 Flags: W Fore 340 485 m 1 340 485 l 1 322 485 306.667 481 294 473 c 1 294 595 l 1 316 598.333 333 600 345 600 c 0 395 600 446.333 585.333 499 556 c 1 523.667 544 544 526 560 502 c 0 584 467.333 599.667 428.667 607 386 c 2 609 374 l 1 609 226 l 1 601.667 180 588 141.333 568 110 c 2 560 98 l 2 544.667 74 524.333 56 499 44 c 1 447 14.6667 394.667 -8.67362e-19 342 0 c 0 290.667 0 238.667 14.6667 186 44 c 1 161.333 56 141 74 125 98 c 0 101 132.667 85.3333 171.333 78 214 c 2 76 226 l 1 76 600 l 1 215 600 l 1 215 235 l 1 222.333 202.333 229.333 180.667 236 170 c 0 236.667 168.667 237.667 167 239 165 c 2 245 156 l 1 251 149.333 255.333 145 258 143 c 2 262 141 l 2 291.333 125.667 311 117.333 321 116 c 1 321 116 l 1 321 116 l 1 342 115 l 1 363.333 115.667 381.667 119.667 397 127 c 1 397 128 l 1 398 128 l 1 422 141 l 2 429.333 145 434 148.333 436 151 c 0 437.333 152.333 438.667 154 440 156 c 0 452 172.667 461 194.333 467 221 c 1 467 222 l 1 467 222 l 1 470 235 l 1 470 365 l 1 462.667 397.667 456 419.333 450 430 c 0 448.667 431.333 447.667 433 447 435 c 1 440 444 l 2 434.667 450.667 430.667 454.667 428 456 c 2 422 459 l 2 393.333 473.667 375.333 481.667 368 483 c 1 368 483 l 1 340 485 l 1 300 339 m 1 382 339 l 1 382 257 l 1 300 257 l 1 300 339 l 1 EndSplineSet EndChar StartChar: uniFB39 Encoding: 64313 64313 723 Width: 354 Flags: W Fore 282 333 m 1 143 276 l 1 143 600 l 1 282 600 l 1 282 333 l 1 34 437 m 1 116 437 l 1 116 355 l 1 34 355 l 1 34 437 l 1 EndSplineSet EndChar StartChar: uniFB3A Encoding: 64314 64314 724 Width: 590 Flags: W Fore 381 -200 m 1 381 365 l 1 373.667 397.667 366.667 419.333 360 430 c 0 359.333 431.333 358.333 433 357 435 c 2 351 444 l 2 345.667 450.667 341.333 454.667 338 456 c 2 333 459 l 2 315.667 469 290.667 477 258 483 c 2 257 483 l 1 248 485 l 1 62 485 l 1 62 600 l 1 259 600 l 1 314.333 594 362.333 580.667 403 560 c 2 410 556 l 2 434.667 544 455 526 471 502 c 0 495 467.333 510.667 428.667 518 386 c 2 520 374 l 1 520 -200 l 1 381 -200 l 1 216 339 m 1 298 339 l 1 298 257 l 1 216 257 l 1 216 339 l 1 EndSplineSet EndChar StartChar: uniFB3B Encoding: 64315 64315 725 Width: 595 Flags: W Fore 273 0 m 1 273 0 l 1 76 0 l 1 76 115 l 1 262 115 l 1 298 121.667 322.333 128.333 335 135 c 2 336 135 l 1 347 141 l 2 353.667 145 358 148.333 360 151 c 0 362 153 362 153 365 156 c 0 377 172.667 386 194.333 392 221 c 1 392 222 l 1 392 222 l 1 395 235 l 1 395 365 l 1 387.667 397.667 380.667 419.333 374 430 c 0 373.333 431.333 372.333 433 371 435 c 2 365 444 l 1 359 450.667 354.667 454.667 352 456 c 2 347 459 l 2 329 469 304 477 272 483 c 2 271 483 l 1 262 485 l 1 76 485 l 1 76 600 l 1 273 600 l 1 328.333 594 376 580.667 416 560 c 2 424 556 l 2 448.667 544 469 526 485 502 c 0 509 467.333 524.667 428.667 532 386 c 2 534 374 l 1 534 226 l 1 526.667 180 512.667 141.333 492 110 c 1 485 98 l 1 469 74 448.667 56 424 44 c 0 381.333 22 333.667 7.66667 281 1 c 2 273 0 l 1 212 339 m 1 294 339 l 1 294 257 l 1 212 257 l 1 212 339 l 1 EndSplineSet EndChar StartChar: uniFB3C Encoding: 64316 64316 726 Width: 667 Flags: W Fore 232 419 m 1 314 419 l 1 314 337 l 1 232 337 l 1 232 419 l 1 410 101 m 1 410 0 l 1 271 0 l 1 271 107 l 1 276.333 151.667 280.333 177.333 283 184 c 0 287.667 200.667 295.667 217 307 233 c 0 326.333 259.667 356.333 285 397 309 c 0 417 321 429 330.333 433 337 c 0 443 351.667 449.667 372.333 453 399 c 1 453 400 l 1 453 400 l 1 456 419 l 1 456 485 l 1 62 485 l 1 62 750 l 1 201 750 l 1 201 600 l 1 595 600 l 1 595 412 l 1 591.667 366 583.667 331.333 571 308 c 2 559 287 l 1 538.333 255.667 506 227.667 462 203 c 0 446 193.667 436.333 187 433 183 c 0 419 165 411.333 144 410 120 c 1 410 119 l 1 410 101 l 1 EndSplineSet EndChar StartChar: uniFB3E Encoding: 64318 64318 727 Width: 704 Flags: W Fore 298 485 m 1 226 0 l 1 86 0 l 1 158 485 l 1 67 485 l 1 67 600 l 1 367 600 l 2 413.667 600 454.667 591.667 490 575 c 0 541.333 551.667 580 518 606 474 c 0 624 445.333 633 410.333 633 369 c 2 633 0 l 1 363 0 l 1 363 115 l 1 494 115 l 1 494 369 l 2 494 390.333 490 407.333 482 420 c 0 467.333 441.333 455.667 455 447 461 c 2 446 461 l 1 445 462 l 1 445 462 l 1 444 463 l 1 443 463 l 1 421 475 l 2 407.667 481.667 389.667 485 367 485 c 2 298 485 l 1 336 339 m 1 418 339 l 1 418 257 l 1 336 257 l 1 336 339 l 1 EndSplineSet EndChar StartChar: uniFB40 Encoding: 64320 64320 728 Width: 429 Flags: W Fore 359 0 m 1 73 0 l 1 73 115 l 1 220 115 l 1 220 365 l 1 212.667 397.667 205.667 419.333 199 430 c 0 198.333 431.333 197.333 433 196 435 c 2 190 444 l 2 186 449.333 180 454.333 172 459 c 2 171 460 l 1 170 461 l 2 142.667 477 114 485 84 485 c 1 84 600 l 1 144 600 199.667 585 251 555 c 0 277.667 539.667 297.333 522 310 502 c 1 338 462 354 424.333 358 389 c 1 358 388 l 1 359 374 l 1 359 0 l 1 77 339 m 1 159 339 l 1 159 257 l 1 77 257 l 1 77 339 l 1 EndSplineSet EndChar StartChar: uniFB41 Encoding: 64321 64321 729 Width: 670 Flags: W Fore 342 0 m 1 342 0 l 1 291.333 -0.666667 239.333 14 186 44 c 1 160.667 56 140.333 74 125 98 c 1 97 138 81 175.667 77 211 c 1 76 226 l 1 76 600 l 1 348 600 l 1 395.333 598 441.667 585.333 487 562 c 2 488 562 l 1 488 561 l 1 499 556 l 2 523 544 543.333 526 560 502 c 0 583.333 467.333 599 428.667 607 386 c 1 609 374 l 1 609 226 l 1 601.667 180 587.667 141.333 567 110 c 1 560 98 l 1 544 74 523.667 56 499 44 c 1 445 14 392.667 -0.666667 342 0 c 1 342 115 m 1 363.333 115.667 381.333 119.667 396 127 c 2 397 128 l 1 398 128 l 1 422 141 l 2 428.667 145 433 148.333 435 151 c 0 437 153 437 153 440 156 c 0 452 172.667 461 194.333 467 221 c 1 467 222 l 1 467 222 l 1 470 235 l 1 470 365 l 1 462 397.667 455 419.333 449 430 c 0 447.667 431.333 446.667 433 446 435 c 1 440 444 l 1 434 450.667 429.667 454.667 427 456 c 2 422 459 l 2 404 469 378.667 477 346 483 c 1 346 483 l 1 337 485 l 1 215 485 l 1 215 235 l 1 222.333 202.333 229 180.667 235 170 c 0 236.333 168.667 237.333 167 238 165 c 1 245 156 l 2 250.333 149.333 254.667 145 258 143 c 2 262 141 l 2 290.667 125.667 310 117.333 320 116 c 2 321 116 l 1 321 116 l 1 342 115 l 1 300 339 m 1 382 339 l 1 382 257 l 1 300 257 l 1 300 339 l 1 EndSplineSet EndChar StartChar: uniFB43 Encoding: 64323 64323 730 Width: 661 Flags: W Fore 451 -200 m 1 451 367 l 1 447.667 395 445 410.667 443 414 c 2 439 421 l 2 425 442.333 413.333 455.667 404 461 c 2 403 462 l 1 403 462 l 1 402 463 l 1 377 476 l 2 364.333 482.667 309 486 211 486 c 1 211 407 l 2 211 383.667 214.667 369.333 222 364 c 0 229.333 358.667 244 356 266 356 c 2 319 356 l 1 319 241 l 1 254 241 l 1 212.667 246.333 190.667 249.333 188 250 c 0 163.333 256.667 141 268 121 284 c 1 88.3333 313.333 72 351.333 72 398 c 2 72 601 l 1 328 601 l 1 374 599.667 413.667 591.333 447 576 c 0 498.333 552.667 537 519 563 475 c 0 577 452.333 585.333 423.333 588 388 c 1 590 373 l 1 590 -200 l 1 451 -200 l 1 339 396 m 1 421 396 l 1 421 314 l 1 339 314 l 1 339 396 l 1 EndSplineSet EndChar StartChar: uniFB44 Encoding: 64324 64324 731 Width: 660 Flags: W Fore 335 0 m 1 335 0 l 1 79 0 l 1 79 115 l 1 327 115 l 1 358.333 118.333 375.667 120.667 379 122 c 0 380.333 122.667 382 123.667 384 125 c 0 406.667 137 422 147.667 430 157 c 2 431 158 l 1 431 159 l 1 434.333 163 439.333 170 446 180 c 0 451.333 186.667 455 200.333 457 221 c 1 458 234 l 1 458 366 l 1 454.667 394 452 409.667 450 413 c 1 450 414 l 1 449 415 l 1 449 416 l 1 448 417 l 1 446 420 l 2 432 441.333 420.333 454.667 411 460 c 1 411 461 l 1 410 461 l 1 409 462 l 1 384 475 l 2 371.333 481.667 316 485 218 485 c 1 218 406 l 2 218 383.333 221.667 369.333 229 364 c 0 236.333 358 251 355 273 355 c 2 326 355 l 1 326 240 l 1 261 240 l 1 220.333 245.333 198.333 248.333 195 249 c 0 171 255.667 148.667 267 128 283 c 1 96 313 79.6667 349.333 79 392 c 1 79 397 l 1 79 600 l 1 335 600 l 1 381.667 598.667 420.667 590.667 452 576 c 0 452.667 576 453.333 575.667 454 575 c 0 505.333 551.667 544 518 570 474 c 0 584 451.333 592.667 422.333 596 387 c 1 597 372 l 1 597 228 l 1 590 173 l 1 586.667 157 580 141.333 570 126 c 1 544 82 505.333 48.3333 454 25 c 0 426.667 11.6667 391 3.66667 347 1 c 2 346 1 l 1 345 1 l 1 344 1 l 1 343 1 l 1 335 0 l 1 352 389 m 1 434 389 l 1 434 307 l 1 352 307 l 1 352 389 l 1 EndSplineSet EndChar StartChar: uniFB46 Encoding: 64326 64326 732 Width: 671 Flags: W Fore 373 362 m 1 386.333 363.333 394.333 365.333 397 368 c 0 400.333 370 403.333 372.667 406 376 c 2 407 377 l 1 407 377 l 1 411 382 l 2 422.333 396.667 431.667 416.333 439 441 c 2 440 444 l 1 440 600 l 1 579 600 l 1 579 433 l 1 572.333 395.667 557.667 361.333 535 330 c 1 535 329 l 1 529 321 l 2 509 291 479.333 270 440 258 c 1 606 0 l 1 86 0 l 1 86 115 l 1 374 115 l 1 61 600 l 1 219 600 l 1 373 362 l 1 118 287 m 1 200 287 l 1 200 205 l 1 118 205 l 1 118 287 l 1 EndSplineSet EndChar StartChar: uniFB47 Encoding: 64327 64327 733 Width: 672 Flags: W Fore 489 94 m 1 489 94 l 1 445 69.3333 404 55 366 51 c 2 335 49 l 1 335 165 l 1 341 164 l 1 368.333 169.333 385 173.667 391 177 c 2 392 177 l 1 392 177 l 1 412 190 l 2 420.667 196.667 426.667 202 430 206 c 0 442.667 222.667 451.667 244.667 457 272 c 0 458.333 277.333 459.333 281.667 460 285 c 1 460 485 l 1 80 485 l 1 80 600 l 1 599 600 l 1 599 276 l 1 593 230 578.333 190 555 156 c 2 550 148 l 2 536 126.667 515.667 108.667 489 94 c 1 219 371 m 1 219 -200 l 1 80 -200 l 1 80 371 l 1 219 371 l 1 294 366 m 1 376 366 l 1 376 284 l 1 294 284 l 1 294 366 l 1 EndSplineSet EndChar StartChar: uniFB48 Encoding: 64328 64328 734 Width: 600 Flags: W Fore 530 374 m 1 530 374 l 1 530 0 l 1 391 0 l 1 391 365 l 1 383.667 397.667 376.667 419.333 370 430 c 0 369.333 432 368.333 433.667 367 435 c 2 361 444 l 2 355.667 450.667 352.333 454.667 351 456 c 2 350 456 l 1 344 459 l 2 326 469.667 300.667 478 268 484 c 2 258 485 l 1 63 485 l 1 63 600 l 1 270 600 l 1 326 594 374 580.667 414 560 c 2 420 556 l 1 446 544 466.667 526 482 502 c 1 505.333 469.333 520.667 431.333 528 388 c 1 530 374 l 1 216 339 m 1 298 339 l 1 298 257 l 1 216 257 l 1 216 339 l 1 EndSplineSet EndChar StartChar: uniFB49 Encoding: 64329 64329 735 Width: 840 Flags: W Fore 215 323 m 1 283 323 l 2 303.667 323 319.667 328.667 331 340 c 1 344.333 351.333 351 367 351 387 c 2 351 600 l 1 490 600 l 1 490 387 l 2 490 333.667 470.667 291.333 432 260 c 1 399.333 228.667 357 211.333 305 208 c 1 283 208 l 1 230 208 l 1 236 198 l 1 252.667 174.667 267.667 158.667 281 150 c 2 310 133 l 1 336 121 360 115 382 115 c 2 461 115 l 2 483.667 115 507.333 121 532 133 c 0 559.333 147.667 578 161 588 173 c 1 588 173 l 1 606 198 l 1 620 220.667 627 243 627 265 c 2 627 600 l 1 766 600 l 1 766 265 l 1 766.667 221.667 754 180.667 728 142 c 0 698 95.3333 657 59.3333 605 34 c 1 562.333 11.3333 514.333 8.67362e-19 461 0 c 2 382 0 l 2 328.667 0 280.333 11.3333 237 34 c 1 185.667 58.6667 144.667 94.6667 114 142 c 1 88.6667 178 76 219 76 265 c 2 76 600 l 1 215 600 l 1 215 323 l 1 474 263 m 1 556 263 l 1 556 181 l 1 474 181 l 1 474 263 l 1 EndSplineSet EndChar StartChar: uniFB4A Encoding: 64330 64330 736 Width: 756 Flags: W Fore 328 485 m 1 328 229 l 1 324 162 l 1 320 141.333 312.333 121.333 301 102 c 1 289.667 78.6667 268.333 59.3333 237 44 c 0 190.333 20 147.667 6 109 2 c 0 103 1.33333 96.6667 0.666667 90 0 c 0 82.6667 -0.666667 73.3333 1 62 5 c 1 62 121 l 1 89 115 l 1 90 115 l 2 108 115 122 117.333 132 122 c 2 148 129 l 2 159.333 134.333 168.667 142.333 176 153 c 0 182.667 163 186.333 179.333 187 202 c 0 187.667 214 188.333 224.333 189 233 c 1 189 485 l 1 123 485 l 1 123 600 l 1 425 600 l 1 481.667 593.333 530.667 579.667 572 559 c 1 572 559 l 1 575 557 l 2 602.333 543 623 525 637 503 c 1 660.333 469.667 675.667 431.667 683 389 c 1 685 374 l 1 685 0 l 1 546 0 l 1 546 366 l 1 538.667 398.667 532 420 526 430 c 2 525 431 l 2 521 437 521 437 516 445 c 0 510.667 451.667 507.333 455.333 506 456 c 2 505 457 l 1 499 460 l 2 481.667 469.333 457 477 425 483 c 0 420.333 483.667 416.333 484.333 413 485 c 2 328 485 l 1 395 339 m 1 477 339 l 1 477 257 l 1 395 257 l 1 395 339 l 1 EndSplineSet EndChar StartChar: afii57700 Encoding: 64331 64331 737 Width: 297 Flags: W Fore 79 0 m 1 79 600 l 1 218 600 l 1 218 0 l 1 79 0 l 1 104 742 m 1 186 742 l 1 186 660 l 1 104 660 l 1 104 742 l 1 EndSplineSet EndChar StartChar: uniFB4C Encoding: 64332 64332 738 Width: 651 Flags: W Fore 380 115 m 1 380 365 l 1 372.667 397.667 365.667 419.333 359 430 c 0 358.333 431.333 357.333 433 356 435 c 2 350 444 l 2 345.333 450 341.333 454 338 456 c 2 333 459 l 2 315 469 289.667 477 257 483 c 2 247 485 l 1 77 485 l 1 77 600 l 1 259 600 l 1 315 593.333 363 579.667 403 559 c 2 409 556 l 2 435.667 543.333 456 525.333 470 502 c 1 493.333 469.333 509 431.667 517 389 c 1 517 388 l 1 519 374 l 1 519 115 l 1 610 115 l 1 610 0 l 1 77 0 l 1 77 115 l 1 380 115 l 1 166 742 m 1 366 742 l 1 366 660 l 1 166 660 l 1 166 742 l 1 EndSplineSet EndChar StartChar: uniFB4D Encoding: 64333 64333 739 Width: 595 Flags: W Fore 273 0 m 1 273 0 l 1 76 0 l 1 76 115 l 1 262 115 l 1 298 121.667 322.333 128.333 335 135 c 2 336 135 l 1 347 141 l 2 353.667 145 358 148.333 360 151 c 0 362 153 362 153 365 156 c 0 377 172.667 386 194.333 392 221 c 1 392 222 l 1 392 222 l 1 395 235 l 1 395 365 l 1 387.667 397.667 380.667 419.333 374 430 c 0 373.333 431.333 372.333 433 371 435 c 2 365 444 l 1 359 450.667 354.667 454.667 352 456 c 2 347 459 l 2 329 469 304 477 272 483 c 2 271 483 l 1 262 485 l 1 76 485 l 1 76 600 l 1 273 600 l 1 328.333 594 376 580.667 416 560 c 2 424 556 l 2 448.667 544 469 526 485 502 c 0 509 467.333 524.667 428.667 532 386 c 2 534 374 l 1 534 226 l 1 526.667 180 512.667 141.333 492 110 c 1 485 98 l 1 469 74 448.667 56 424 44 c 0 381.333 22 333.667 7.66667 281 1 c 2 273 0 l 1 168 742 m 1 368 742 l 1 368 660 l 1 168 660 l 1 168 742 l 1 EndSplineSet EndChar StartChar: uniFB4E Encoding: 64334 64334 740 Width: 660 Flags: W Fore 335 0 m 1 335 0 l 1 79 0 l 1 79 115 l 1 327 115 l 1 358.333 118.333 375.667 120.667 379 122 c 0 380.333 122.667 382 123.667 384 125 c 0 406.667 137 422 147.667 430 157 c 2 431 158 l 1 431 159 l 1 434.333 163 439.333 170 446 180 c 0 451.333 186.667 455 200.333 457 221 c 1 458 234 l 1 458 366 l 1 454.667 394 452 409.667 450 413 c 1 450 414 l 1 449 415 l 1 449 416 l 1 448 417 l 1 446 420 l 2 432 441.333 420.333 454.667 411 460 c 1 411 461 l 1 410 461 l 1 409 462 l 1 384 475 l 2 371.333 481.667 316 485 218 485 c 1 218 406 l 2 218 383.333 221.667 369.333 229 364 c 0 236.333 358 251 355 273 355 c 2 326 355 l 1 326 240 l 1 261 240 l 1 220.333 245.333 198.333 248.333 195 249 c 0 171 255.667 148.667 267 128 283 c 1 96 313 79.6667 349.333 79 392 c 1 79 397 l 1 79 600 l 1 335 600 l 1 381.667 598.667 420.667 590.667 452 576 c 0 452.667 576 453.333 575.667 454 575 c 0 505.333 551.667 544 518 570 474 c 0 584 451.333 592.667 422.333 596 387 c 1 597 372 l 1 597 228 l 1 590 173 l 1 586.667 157 580 141.333 570 126 c 1 544 82 505.333 48.3333 454 25 c 0 426.667 11.6667 391 3.66667 347 1 c 2 346 1 l 1 345 1 l 1 344 1 l 1 343 1 l 1 335 0 l 1 214 742 m 1 414 742 l 1 414 660 l 1 214 660 l 1 214 742 l 1 EndSplineSet EndChar StartChar: uniFB4F Encoding: 64335 64335 741 Width: 714 Flags: W Fore 83 569 m 1 83 750 l 1 222 750 l 1 222 600 l 1 425 315 l 1 449 344.333 465.667 377.333 475 414 c 1 482 444 l 1 482 600 l 1 621 600 l 1 621 433 l 1 610.333 373.667 592.333 325 567 287 c 1 540 250 l 1 528 236 514 223.333 498 212 c 1 650 0 l 1 487 0 l 1 83 569 l 1 EndSplineSet Ligature: 0 0 'liga' afii57664 afii57676 EndChar StartChar: uniFE9E Encoding: 65182 65182 742 Width: 636 Flags: W Fore 363 -120 m 1 250 -120 l 1 250 -6 l 1 363 -6 l 1 363 -120 l 1 136 -62 m 0 136 -107.333 151.667 -145.667 183 -177 c 0 218.333 -211 267.333 -228 330 -228 c 0 348 -228 368.667 -226.333 392 -223 c 1 458 -209 l 1 543 -178 l 1 598 -283 l 1 568 -299 525 -316 469 -334 c 1 399 -349 l 2 377 -353 355.667 -355 335 -355 c 0 299.667 -355 274.333 -353.667 259 -351 c 2 214 -343 l 1 196 -336 l 1 134.667 -318 88.6667 -284.667 58 -236 c 0 28 -190 13 -134.333 13 -69 c 0 13 -17 34.6667 41.3333 78 106 c 1 104 136 l 1 136 168 l 1 170 196 l 1 212 226 l 1 262 257 l 1 316 285 l 1 288 286 l 1 220 288 l 1 196 287 l 1 154 284 l 1 145 283 l 1 136 281 l 1 94 262 l 1 84 256 l 1 26 349 l 1 34 359 l 1 46 369 l 1 59 379 l 1 77 391 l 2 101 405.667 128 412.667 158 412 c 2 617 396 l 1 606 274 l 1 564 274 l 2 548.667 274 534.333 272.667 521 270 c 2 500 266 l 1 491 264 l 1 477 258 l 1 443 243 l 1 418 228 l 1 434.667 202 451.333 181.667 468 167 c 1 473.333 161 489.667 151.667 517 139 c 1 535 132.333 554.667 129 576 129 c 2 650 129 l 1 650 0 l 1 555 0 l 2 487 0 432.333 25.6667 391 77 c 1 365 118 l 1 330 179 l 1 291 151 l 1 250 119 l 2 225.333 99 199 70.6667 171 34 c 0 147.667 2 136 -30 136 -62 c 0 EndSplineSet EndChar EndChars EndSplineFont tvtime-1.0.11/data/COPYING.tvtimeSansBold0000664000175000017500000000164312354244126014735 00000000000000Copyright (c) 2003 Scott Van Wart tvtimeSansBold is based on FreeSansBold from the freefont project. freefont is a collection of free Universal Character Set outline fonts. Copyright (C) 2002 Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. tvtime-1.0.11/data/FreeMonoBold.ttf0000664000175000017500000053010112354244126013773 00000000000000€`GSUB»F¹[ìÈOS/2ßvMÇ´VcmapÏ»é7 ºcvt !yÈgaspÿÿÌglyf¡PòÔ$headÖÊ÷F$ø6hheaÙ­%0$hmtxõ[Øj%T\kern»¸Øã7°locaP3ÄNÌDmaxp’—f nameZ¿÷‡f0kpostcþX={œ4© "Hlatnÿÿligainitmedi Tj: 0ô-ÏOÎLÍIõM,ILAVAVX¼ÈÈÈÈÈÈ1   ÿPxûPfEd ûƒþ“Zƒm¿´˜â€b ~ƒŽ“—¥©°¸»ÁÃÉãîðö3TY\akmsu}…‰Ž˜œ¢ÇÑÝ"(7uz~ŠŒ¡ÎÑÕñ_ù¹Äêô™›ù   " & 0 7 : < F I K d ‰ ¤ ª ¬!!!"!'!+!_!“"""""""a"e#%•%¡%º%Ç%Ë%Í%Ù%î%÷& &7&;&lö¾öÃûÿÿ  †•™§«³»ÀÃÈÍæðôø$PV[_emouy‚‡Œ”œžÆÐØ!'7tz~„ŒŽ£ÐÕñŒ°»Ðð›     & 0 2 9 < D H K d p £ ª ¬!!!"!&!*!S!"""""""`"d#%% %£%¼%É%Í%Ï%â%ð&&0&9&iö¾öÃûÿÿÿõÿãÿÂÿÀÿ¿ÿ¾ÿ½ÿ¼ÿ»ÿ¹ÿ·ÿ³ÿ²ÿ®ÿ«ÿ©ÿ¨ÿ¥ÿ¤ÿ¢ÿžÿ‚ÿÿ€ÿ~ÿ{ÿzÿyÿxÿuÿqÿpÿnÿmÿjÿgÿfÿCÿ;ÿ5ÿÿ ÿÿþóþ·þ³þ°þ«þªþ©þ¨þ§þ¤þ‰þ{þOý™ý˜ýýˆå}å|åxäaä`ä^ä[äRäQäPäOäHäGäFä.ä#ä ääãŸãœã‘ãŽãŒãeã5âÇâÅâ¼âºâ¶â´âtâráÈßÙßÏßÎßÍßÌßËßÊßÂßÁ߲ߌߋß^  Í’²Ÿ À~{€utho  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a†‡‰‹“˜ž£¢¤¦¥§©«ª¬­¯®°±³µ´¶¸·¼»½¾rdeix¡pkvjˆšsgwl|¨ºcnm}b‚…—¹Áy„ŒƒŠ‘Ž•–”œ›qz!yÿÿ!nš.±/<²í2±Ü<²í2±/<²í2²ü<²í23!%!!!MþÔ þõšýf!XÜÿñ}~#"/'473632#"'&5476;2{-' +2 H)#)%  þ×.' )!3*ýÃ$'% )ˆ8ÐZ3"/3"/ˆ€¦€Zþ!ÿþ!>ÿ¤£TX32+32+#"'&?##"/?#"'&'476;7#"'&'476;7676323767632#3¿   "     H 2#    !!  !    G  vGH¼ j ¨ ¡¨?!¡ j ¨ ¡¨  þûjSÿ…¬[632#"'&'&#"#"'&=&'#"'&=47632327654/&/4767547632_  %  + .JKAW%*Y"+ +$ 7G ;J‰D"+ j$  ! * ( )%*C`1S#  !S  =!  )+jO/  Pÿñ i"2BR2#"'&5476"01327654'&"/4?%6322#"'&5476"327654'&äJ)8%.F*8%.* &, (ôþ–j ™J)8&.E*8%.* '* (i;$.D*8%/D+A&, &. Ýv  v K;$.D*8%/D+A&, &. Kÿòü&;B%73232+'#"'&547&'476326321&'"'32m5!   = )Ho/` :+3!%)%"/T4RÆR ! 4 I$1g87)F/"  ! (óx4:ì8lZ3"/ì€Zþ!ÿgèx2#"'&'&5476767µ"  de   k[ x  •’¤  ª¨“'uÿgUx2"/547674'&5476¨ k]  "  de  x ª¨•Ÿ'¡”’¤ SÐn8'&'5'476325476327632"/#"'&547ÛV+ V V ,V4  44t  Y!  Y #GHH *.0'%#"'&=#"'&'476;54763232#^ Ž!  Ž !  æ¤  ¤ ¤"  ¤ “ÿb_†73#"/7Û„ †þô*å.I%!"'&'4763!2ìþ€!  €!  å  áÿñwu#"'&5476;25($)% $ (% )Sÿ· #"'&'476?2ùþÀ  A býY' ¦' Sÿñ~&#"'&'54?6323276=4'&#"L4WW4ML4WW4Mþ³= F= Fg_Q77P_Q77P‰mq*L)7mq*L)S~ 32#!"'&'476;#"/4767^e  þÒ"  eW   ~ýæ  ™  6ü~/73632!56767654'&#"1"'&54?632ÏÉ.þ:¸0_3#>#  *>^k>,':d6 Xi˜,W2)  +28H4F:2 5Bÿñ~?327654'&#"#"'5'47632#"'&547632327674/&'&'47(2 @@# E=Lc91=p?>z0 #U_&941!'6 .":0DB-7`T9/1!  "&2 +# Kün22+"'&'476;5!55¿;=; „"  &þðñ–nþ€20&2 &S‘þ€òòBÿñn6632"#"'&'4763221327654'&/"#"/!2#Û7,g=/7:t {< $@‹ 96B " .   sO;TY]=:NU7+C1AO /5 .7 þî+4 -2jÿñ~$7"'&547632#"'&54763232767&/&#"03276¶<=X9.45c}9'MeŒU  `C,F J.4. +@H9LX9;fGm „a|) S6½k?;5áÿñwµ##"'&5476;2#"'&5476;25($)% ($)% $ (% )?$ )$)“ÿb_µ73#"/72#"'&5476Û„ ~9-6,†þô$, /* .*6 õ"'-632û þR®   ˆ ÙÔ *Š.¦#!2#!"'&'476!2#!"'&'476l€  þ€"  €  þ€"  ¦  ¸  85.ô%&'4?67632 #"'&/547]þû®þR   ‰  ÙÔ hÿñV'956?2#"'&=671654'&'"#"'&#"'&5476;2hl?!s:$A"<,€ 6 72 Ï)#)% ÌO4L/BM16 81"5 !  þD$'% )Lÿhýl7A54'&#"3276321#"/&=47632+5"'&547653—5G+!3"AI A1?n; /P=Ta5#7/!J0"M0@M, F O‡d B*9?/5\Z+ ò-/ þ6%!ÿò4U8632#"'&'&/&#"32767632#"'&=476323¿   +6\2"S0BH& 5EsTEXLlED3 T!  G/@@`, $%2XHgB€RH  &G&7"'476;2+"'&'476;2?6=4'&+J; ÔsLCFG}Ì! 1koL()-,Mnd2XNp/mJK ,$-H.H53 &GB7!547632!"'&'476;#"'&'4763!#"'&=#3547632#"'&= þ)"  !  Á êU &  ó4!  ˜  –!  2! 'q!   &G?732+"'&'476;#"'&'4763!#"'&=!3547632#"'&=Âd!  ×"  !  × ÿU  ó   —  3!  q!  !ÿòPUB%"'&'&'4=4?632672#"'&'&'&#"3275#"'&'476;2&fM(O<NNzQ@    TU/5-4_E8d"  ¯! ´„6F?g GrSM  N! - /5P@U&,E  &EGN%#32+"'&'476;&'476;2+35#"'&'476;2#32+"'&'476;™Ö!  y!  2 e!  Ö  e! 0!  y  ñ  - ŽŽ  +þ  SG%32#!"'&'476;#"'&'4763!2#^e BþÒ  ee!  .  ãþ 2   6ÿòeG.#"'54763232767561#"'&'4763!2#ê*A\Tƒ E09&w!  !  ãþØM/8A¢"  !`$   ZGH732+"'&'476;#"'&'476;2+7&'4?32#32+&'&'Â#  –"  !  –!  #²-d! >°UD  n=PÐl    •™ !+ 2™-•$ º9 !;G)3547632!"'&'476;#"'&'476;2#× þ("  99!  Ö  ãþ\!  !À   ÿíoH832+"'&'47&'4763332#2+"'&'476;#Ž#  ! =3 mЇn! 0; ‚"  #o[…þß  ..þ×) +þ2 !ûÿøPG032+"'&'47#"'&'476;#"'&'476;2##­#!  ! =!  s#!  ‚ =cŠþÚ  . þx$  2þÿòCU2#"'&'476"327654'&,gR^URptRPUQqQ6,B1@O7-B1UMY}ZV[XZVdG:La>/F9Lc?. G(3732+"'&'476;#"'&'476;2327654'&'Âc  Ö"  !  és=)21Q9bvR@Èd   I1CI76 ·9BÿoCU5E632327632#"/&#""'&54?&/&547632#"327654'&&." &3,",R>U!,UQqsRRa8T Q5,A2@O7-C1   <1,M[ZVZX}ˆ["øG9N_?0F9Ld?. kG5@732+"'&'476;#"'&'476;232+&'&/327654'&+Â#!  –"  !  ßy>%lA= !  O4M"`L\&3!pÞz   I,=[<8b eN$d-, >ÿòUP#"'&/&'&#"#"'"'547672327654'&'&'&'&5476326?2  <D @ n);X:SSI2  ? "P$$QU,C M;QM5  X! ,(  /N^0 'BB! $ (! &J V4'! *.G+32+"'&'476;##"'&=!#"'&=]B  ç  Ak  ãþ  ]  ÁÁ!  ] ÿòNG3#"'&5&'476;2+32765#"'&'476;2T@QQ@T< ‚"  #6!*E&#!  ‚ ãþêk?11@j1 þá8!1"  2ÿëmG*%#"'&'476;2##"'&/476;2+/  „!  ÍcÊ  …!  S  þã  ÿöbG*#&'476;2+73#"'&'476;2#,[o>- ƒ!  0$LhL#5!  ƒ! /)Y! &_^' !\!  õ‘  ‘î2( !ˆˆ" ! IG73547632!5##"'&=!Éâ þ:.³ ˜dH!  ¬dF!  ªaúÿlÛs32+32#^;  Ÿž  ýÁ  Sÿ·#"'5&'&547632¸A  þÀ  ‹ýZ§ }ÿl^s#"'&'476;#"'&'4763ú;  Ÿž  0? üù SEŒ"'5&54?"/+u ÂÄ îŠ éé ÿôÿƒdÿµ!5dýK22}ð^¸"/&54?2Â… … ¨o p *ÿð;Â*7!5#"'&54763254'"#"'&54767232#'5&#"32„K[[6#'D‡-;]3A" RZ‰,!  t?0F)(R'8#,1,L 0  P&Ê ‡2 % ÿøÿò;p#3632#"/#"'&'476;#"'&'4763"327654'&®?WmDFFDlK@ t  !   F('B$/D)'')pß2ACecDA)# ¨ þï('4M%('63)(6ÿð5Â0#"'&'&'&#"3276?632#"/&547632632  )AJ*(°B' @Bp…E=ZDbV: .€M!  +(<{   (! @=]{D4!ÿòep#232+5#"'&5476325#"'&'4763"27654'&!  tCCmDFFDnW?!  †E('')Š)'')pýô #-ADddCA2| þï('54)(('47'(!ÿð&Â(%!3276?2"'&'47632%!&'&#"1&þh"‚6X ! #>s)‡K5TIe}K;þk&GU+ ¬X U3S—  Qí  í %\& $#  1% !ÿ3PÃ*:532++"'&'476;276=#"'&547632"327654'&št!  H3Dp"  mCBKpE7QAZQOF)9$-F+9$‘$ þ›]6& 271P?YoD6d6",D(6"+E( EpD63232+"'&'476;54'5'&#"32+"'&'476;#"'&'4763Ã;Ng0!  p!  ,-$!  p !  pë=H(6¸  «( ·  ¨ >o"32#!"'&'476;5#"'&'47637#5^z  þ¨"  zN#  ¤vµþ¯  í ºiiuÿ3èo!#"'&'4763!+"'&'476;2765#5„Ê"  .G3Er"  oC*wQ þ7\6' 2ƒii!;p77#"'476;#"'&'476;7&5476;2+32+"'47'×tA !  tO p!  v !!  vAg¤¤2¨ þ¯? ` 2[>p32#!"'&'476;#"'&'4763^z  þ¨"  zN#  pýô  ¨ ÿíoÂC6726322+4'&#"21+4'"2+"'&'475&'4?,)9--;H%9B^5 ^#""; X! <9% µ#119 *Û227"Í) 7$$Í2 -í1& ;Â?67376322+"'4754'1"#"32+"'&'476;5&'47637Ã75 D3;; YB=P60   p  <)µ04%,W¶22.²D- ¶  í0(*ÿð.Â2#"'&5476"327654'&/rL@SIfuLAUJeW.?)6T.>)ÂNAZgE=NAZkD:d: +D'8"+C'ÿøÿ3;Â1C732+"'&'476;#"'&'476;6723232#"'&"327654/&®:!  ®"  !  t>I vG7SC\QF“?&(?%1W((&B«  º -5O=Vg>151 D!8$1#!ÿ3eÂ,=5#"'&547632532+32+"'&'4763"327674'&¯HTwF5SC^P<t!  !  ®!  \<(+*&??&+A%i«8M9PlA5. - þF  Ç!:2$ :E!6;Á16?2#"&#"32#!"'&'476;5#"'&'4763Y24. *#M5‹!  þ×!  :#"  µAC& $;*“  í IÿðÂA'&#"#"'#"'&=47632327674'&'&'&547632632#"™)>?Ef+=O)\! 0æ!  ×  dN,( /ßß2( +þF Uµ73632!5%##"'&=!ô¯/þN• ™d6 XSþ  mQ§ÿg±o309"'&=4/&'476?547632\ % %@(015#), !å0 %  & 5#+­--¤@)#$ úÿg^n#"'&547632^  ,ý}  ƒ!  §ÿg±o354?&/54/&/47632#"'&14767676ü % % @(015#), !0 % & 5#+­--¤@)#$ >³'2"/&#"1#"'&5476723276è 283J !'5;+-1 #l % <A (" +=#+.ÿÿÜÿ}ª%672##"'&532+"'&547216Þ-' +2 H)% )$r).' þ×!3*=% )$ )SÿÔó•D%#"'&=&'&5476754763272#"'&/&#"327632_ i*J)5 -  AO& 7 (81J cM  QY+4_?" M"  !C *  +6 <"$  ,!&VJ%#36721!"'&'471;6?65'#"'&'476;&547632#"/&#"32:-Ë+( Tþ¿ 0 E!  ,F,;G4"  (0D!  ó;9-'N  & $8 3&Z/+ ! # : I@;K'&'476326327672#"/#"'"'&54?&547"327654'&ƒ!  01/2 ! "/000!  Â5+2-„   0000"    "001/-3+7CDR7&'476;2+32+32+32+"'&'476;5#"'4;5#"'4;''&5476;2-_( [  ‹Haaa/ BÂ"  .aaaHŠ( \! \… & Ç"# 2 #"È  ! úÿg^n$#"'&=47632#"'&=47632^  )  ,Ë  Ë! *þ3Ë  Ë!  $ÿV4G?S#"+5432327654/&'&54767&5476;#"'&5'&'"2;6?4'¯-k\lM &+Jç, ‘)ijg [*,Lá  &|[Y~‚ZWZZ€YYINBYfF>OAZhF;v¶éS&5D5#"'&54763254#""'1'4763232#'5&#"2?21!"'1&54737!2b75G&/c$:#, 9OAZgE=}"Ûr32#"'&'4²ô ) ô r " %}óÛT2#"'&5476"327674'&,S4(C0>P4)A0><"1#<"1T@0@W4&@1@T5'=2%;$1(<"*.p'9#"'&=#"'&'476;54763232#!2#!"'&'476^ Ž"  Ž !  þ€  þ€"  Jd  d €"  € æ  •÷­}'3632!567654'&#""/4767632ým þè­ #% (8J%!: +8D  !#6%(&îº}B327654/"#"/47632"#"'&5476323274'&'&'&'4721+(  4#(K#0?)&If 3[(!ä !  !41 =3"&  4úðÛ¸#"/4?632Ä…  … pp o  ÿg;µ1#"'&5#"'&'476;275#"'&'476;2+5#"à !  t*=Y#"  ‡; _ONP  ¨ þÛ36Ç þ¯2&1ÿR.G)3:32+"'&'+1##"'476;&'&=476;2#57#67Ô$56]   ‰4 Oz>%QJeÅ66èUE,ùý§'''  H)3.M4/Nïê5,7ëý§ áÖwZ%#"'&5476;25($)% Ö$ (% )´ÿ—!3#"'&'476323274'FJ5/- #5)K;    ¦÷²~32+"'4;5"/4?N9*+µ+,90~þ¼!""!í  z¶àS+2#"'&'476"327654'&#"'476;2-T3#@/;S3#?/<1+1*eþ3 þ3S@-:J/"=)7M2&N)) &.þ±' &'!;Ÿ%%'&'4?632#"/47/&'4?2#"/47®— ÷÷ O— ÷÷ Ù  ¹¸   Œ  ¹¸   ÿÞu~'<?32+"'4;5"/4?#"'&547672+"'4;5#575†9*+µ+,90×þü   l$%$,O*+£’O~þ¼!""!í  Lþ= à ¦æ ""!7òæÿÞu~'Q32+"'4;5"/4?#"'&5476723632!567654'+&#""'&54767632†9*+µ+,90×þü   m!þè­ # % (8J%!~þ¼!""!í  Lþ= à þ! +8D !#6%(&#ÿÕv};Mbe327654/"#"/47632#"'&54?23274'&'&'&'47%#"'&547672+"'4;5#575V+(  4#(K#0?)&If 3[(!Žþû   m$%$,O+,¤“Pä !  !41 =3"&  4-þ= à ¦æ ""!7òæSÿð‚&8"'&5476?63232754763232+"'&5476ðk?"s:$A"<,€ 672 Ï)#)% YO4L/BM16 81"5   ¼$'% )ÿëmG03C%#32+"'4763#"'&'476;2+"'&'476;/"/&54?2 î  …A ›?!  ØÇ#  ‹  @NO… … ž: 2 þ  žÀÀ6p o ÿëmG03G%#32+"'4763#"'&'476;2+"'&'476;/#"/4?632 î  …A ›?!  ØÇ#  ‹  @NOÀ…  …  ž: 2 þ  žÀÀýo p ÿëmG03G%#32+"'4763#"'&'476;2+"'&'476;/#"/4?"' î  …A ›?!  ØÇ#  ‹  @NOBq   ˜—  ž: 2 þ  žÀÀìa   €€   ÿëm03U%#32+"'4763#"'&'476;2+"'&'476;/2#"'&#"##"/4763232?6 î  …A ›?!  ØÇ#  ‹  @NOÚ&*!B! ',5 + ž: 2 þ  žÀÀ $0* !-ÿëm03CS%#32+"'4763#"'&'476;2+"'&'476;/2#"'&547632#"'&5476 î  …A ›?!  ØÇ#  ‹  @NO'& $ ß& $ ž: 2 þ  žÀÀ# $ $# $ $ÿëmg03CS%#32+"'4763#"'&'476;2+"'&'476;/2#"'&5476"327654'& î  …A ›?!  ØÇ#  ‹  @NOA@%3!'?%3!') #' %ž: 2 þ  žÀÀe5&;%3'<%5#& "(ÿìfGKN7#"'&'4763!#"'&=#3672#"/#3547632!"'&5476;5##"'4763755s!  · ~/ )“ þ£-  ](9_A Ý@d ¥  A5 N ,   {& ::)12ŸÔÔ!ÿ4UX#"'&'476323274/#5&'&'&=476323632#"'&'&'#'&#"32767632QJ2;-#' Q1\ WMlED   +6\2"T/AI& 7 9K9    ]#Dp B€RH  T!  G/@@`, $& &GBR7!547632!"'&'476;#"'&'4763!#"'&=#3547632#"'&="/&54?2 þ)"  !  Á êU &  D… … ó4!  ˜  –!  2! 'q!  Ep o  &GBV7!547632!"'&'476;#"'&'4763!#"'&=#3547632#"'&=#"/4?632 þ)"  !  Á êU &  Š…  …  ó4!  ˜  –!  2! 'q!   o p  &GBY7!547632!"'&'476;#"'&'4763!#"'&=#3547632#"'&=#"/47371?"' þ)"  !  Á êU &   q    ˜—  ó4!  ˜  –!  2! 'q!  ûa   €€    &BRb7!547632!"'&'476;#"'&'4763!#"'&=#3547632#"'&=2#"'&547632#"'&5476 þ)"  !  Á êU &  \& $ ß& $ ó4!  ˜  –!  2! 'q!  +# $ $# $ $SG%532#!"'&'476;#"'&'4763!2#"/&54?2^e BþÒ  ee!  .  ç… … ãþ 2   Up o SG%932#!"'&'476;#"'&'4763!2##"/4?632^e BþÒ  ee!  .  …  …  ãþ 2   o p SG%<32#!"'&'476;#"'&'4763!2##"/47371?"'^e BþÒ  ee!  .  —q    ˜—  ãþ 2    a   €€   S%5E32#!"'&'476;#"'&'4763!2#2#"'&547632#"'&5476^e BþÒ  ee!  .  ÿ& $ ß& $ ãþ 2   ;# $ $# $ $&G$:7#"'&'476;5"'476;2+"'&'4763732?6=4'&+32#J  !; ÔsLCFG}Í 1doL()-,MnJ Bó Œ2XNp/mJK ,$-H.H53Œ 2ÿøP0R32+"'&'47#"'&'476;#"'&'476;2###"'&#"#"/476323327576­#!  ! =!  s#!  ‚ =c&*!B  &-1 , ŠþÚ  . þx$  2þ$0*  .ÿòCG/2#"'&'476"327654'&"/&54?2,gR^URptRPUQqQ6,B1@O7-B1… … UMY}ZV[XZVdG:La>/F9Lc?.Gp o ÿòCG32#"'&'476"327654'&#"/4?632,gR^URptRPUQqQ6,B1@O7-B1;…  …  UMY}ZV[XZVdG:La>/F9Lc?.o p ÿòCG62#"'&'476"327654'&'#"/47371?"',gR^URptRPUQqQ6,B1@O7-B1@q    ˜—  UMY}ZV[XZVdG:La>/F9Lc?.ýa   €€   ÿòCA2#"'&'476"327654'&2#"'&#"##"/4763232?6,gR^URptRPUQqQ6,B1@O7-B1`&*!B! ',5 + UMY}ZV[XZVdG:La>/F9Lc?.. $0* !-ÿòC/?2#"'&'476"327654'&2#"'&547632#"'&5476,gR^URptRPUQqQ6,B1@O7-B1¨& $ ß& $ UMY}ZV[XZVdG:La>/F9Lc?.-# $ $# $ $dPôà-%#"'&5476?'&'476327672"/,ggg gggg Ñg gggg gg ÿºN~%.77#"'&14?&5476327672#"327654&#"Ÿ6! 9CURqMH.4=UQqJâç%*P6-þ¹ë,,Q6,DIWqZV0: APpZVžþÛG9L=±)G:L@ ÿòNG3C#"'&5&'476;2+32765#"'&'476;2"/&54?2T@QQ@T< ‚"  #6!*E&#!  ‚ þ‘… … ãþêk?11@j1 þá8!1"  2Up o  ÿòNG3G#"'&5&'476;2+32765#"'&'476;2#"/4?632T@QQ@T< ‚"  #6!*E&#!  ‚ §…  …  ãþêk?11@j1 þá8!1"  2o p  ÿòNG3J#"'&5&'476;2+32765#"'&'476;2#"/47371?"'T@QQ@T< ‚"  #6!*E&#!  ‚ þÞq    ˜—  ãþêk?11@j1 þá8!1"  2 a   €€    ÿòN3CS#"'&5&'476;2+32765#"'&'476;22#"'&547632#"'&5476T@QQ@T< ‚"  #6!*E&#!  ‚ þv& $ ß& $ ãþêk?11@j1 þá8!1"  2;# $ $# $ $CG6J%32+"'&'476;5'"'4?327&'476;2'##"/4?632^A!  æ!  !A¥>)Y! &_^' !\!  X…  …  õ‘  ‘î2( !ˆˆ" ! o p  G5?732+"'&'476;#"'&'476;2+32'32?4'&+Ãc  Ö"    Ö  cbx4 ##.X=bƒX8ƒŒ(    (' &45&2 d* * ÿðoJ747632#"'&54?2327654'&'&'4729767674'&#"+"'&'4763_F,;[4#qE%1G '   )%I6/ +H*B]!  dzN)A,:/%B|k06!3,8'$,) *>þ—)3 *ÿð;¸*7G!5#"'&54763254'"#"'&54767232#'5&#"32"/&54?2„K[[6#'D‡-;]3A" RZ‰,!  t?0F)(Rd… … '8#,1,L 0  P&Ê ‡2 % To p *ÿð;¸*7H!5#"'&54763254'"#"'&54767232#'5&#"32#"/4?632„K[[6#'D‡-;]3A" RZ‰,!  t?0F)(Rq…  … '8#,1,L 0  P&Ê ‡2 % p o *ÿð;¸*7K!5#"'&54763254'"#"'&54767232#'5&#"32#"/4?"'„K[[6#'D‡-;]3A" RZ‰,!  t?0F)(Rq   ˜—  '8#,1,L 0  P&Ê ‡2 %  a      *ÿð;*7`!5#"'&54763254'"#"'&54767232#'5&#"322#"'&#"#"'='476323327576„K[[6#'D‡-;]3A" RZ‰,!  t?0F)(RŒ&*"A  ',2, '8#,1,L 0  P&Ê ‡2 % < %0+!-*ÿð;Ž*7GW!5#"'&54763254'"#"'&54767232#'5&#"322#"'&547632#"'&5476„K[[6#'D‡-;]3A" RZ‰,!  t?0F)(Ry& $ ß& $ '8#,1,L 0  P&Ê ‡2 % :# $ $# $ $*ÿð;×*7GW!5#"'&54763254'"#"'&54767232#'5&#"322#"'&5476"327654'&„K[[6#'D‡-;]3A" RZ‰,!  t?0F)(R@%3!'?%3!') #' %'8#,1,L 0  P&Ê ‡2 % ƒ5&;%3'<%5#& "(ÿóÿðdÂAMZ%#2327632#"/#"'#"'&54767676354/""'&5476326325&#"273&'&'"1cû*&) 3N2) 3;g..;L<G )I/B24eX; * ®'"$6ÿ5ÂK#"'&'476323274#5&'&'47632632#"'&'&'&#"32767632VJ2:. #8L0Y[DbU:    )AK*(°B' 57L8    "X ;y|E3 "M!  +(<{   $ !ÿð&¸(8%!3276?2"'&'47632%!&'&#"1"/&54?2&þh"‚6X ! #>s)‡K5TIe}K;þk&GU+ C… … ¬X Us)‡K5TIe}K;þk&GU+ …  … ¬X Us)‡K5TIe}K;þk&GU+ šq   ˜—  ¬X Us)‡K5TIe}K;þk&GU+ 1& $ ß& $ ¬X U¸.32#!"'&'476;5#"'&'47637"/&54?2^z  þ¨"  zN#  #… … µþ¯  í óo p >¸/32#!"'&'476;5#"'&'47637#"/4?632^z  þ¨"  zN#  î…  … µþ¯  í »p o >¸232#!"'&'476;5#"'&'47637#"/4?"'^z  þ¨"  zN#  pq   ˜—  µþ¯  í ªa      >Ž.>32#!"'&'476;5#"'&'476372#"'&547632#"'&5476^z  þ¨"  zN#  & $ ß& $ µþ¯  í Ù# $ $# $ $*ÿð.†7G#"'&547632&'#"'5'4?/&'476327632"327654'&¡-™EOntMAOF_9: ?J\  2 "AMŒP/=*5O/>%Gk#'r@GL@WfE=O+2       ) ô9#.?&4!)H);:a67376322+"'4754#"32+"'&'476;5&'47637%#"'&#"#"'='4763232?6Ã75 D3;; YB=X2%  p  <)Y &*"A! &,1 + µ04%,W¶22.²H ¶  í0(Û%0+!.*ÿð.¸/2#"'&5476"327654'&"/&54?2/rL@SIfuLAUJeW.?)6T.>)Š… … ÂNAZgE=NAZkD:d: +D'8"+C'Jo p *ÿð.¸02#"'&5476"327654'&#"/4?632/rL@SIfuLAUJeW.?)6T.>)K…  … ÂNAZgE=NAZkD:d: +D'8"+C'p o *ÿð.¸32#"'&5476"327654'&#"/4?"'/rL@SIfuLAUJeW.?)6T.>)7q   ˜—  ÂNAZgE=NAZkD:d: +D'8"+C'a      *ÿð.H2#"'&5476"327654'&2#"'&#"#"'='476323327576/rL@SIfuLAUJeW.?)6T.>)i&*"A  ',2, ÂNAZgE=NAZkD:d: +D'8"+C'2 %0+!-*ÿð.Ž/?2#"'&5476"327654'&2#"'&547632#"'&5476/rL@SIfuLAUJeW.?)6T.>)Ÿ& $ ß& $ ÂNAZgE=NAZkD:d: +D'8"+C'0# $ $# $ $*.!2!2#!"'&'47621#"'&547621#"'&'476l€  þ€"  à9,5*9,5*J  ª,-( -t, -( -ÿº=î$-6#"'"/4?&54763276723276547&#"$*4SIfB>8 06RJdH;0 u½U.þݾ"T.’+AMgE=:2BOgE=1yÃ9!+"jÅ8"+& ÿó;¸2B2+5#"'&=#/1&5476;32?3675#"'&'4763'"/&54?2þ; _71F1; " tX2%#"   … … µþ¯203%,X¶ þêH ¶ óo p  ÿó;¸2C2+5#"'&=#/1&5476;32?3675#"'&'47637#"/4?632þ; _71F1; " tX2%#"  +…  … µþ¯203%,X¶ þêH ¶ »p o  ÿó;¸2F2+5#"'&=#/1&5476;32?3675#"'&'4763'#"/4?"'þ; _71F1; " tX2%#"  Oq   ˜—  µþ¯203%,X¶ þêH ¶ ªa       ÿó;Ž2BR2+5#"'&=#/1&5476;32?3675#"'&'4763'2#"'&547632#"'&5476þ; _71F1; " tX2%#"  ¸& $ ß& $ µþ¯203%,X¶ þêH ¶ Ù# $ $# $ $ÿ3C¸4E7&'4?32"#7"'4?32#32+"'&'476;#"/4?632ò¬/)Z! 7rx>)\! 0æ!  ×"  d …  … N,( /ßß2( +þF  Ùp o ÿøÿ3;p.@732+"'&'476;#"'&'476;6?2#"'&"327654/&®:!  ®"  !  t>IvF7SC\QF“?&(?%1W((&B«  u è5O=Vg>151 D!8$1#ÿ3CŽ4DT7&'4?32"#7"'4?32#32+"'&'476;2#"'&547632#"'&5476ò¬/)Z! 7rx>)\! 0æ!  ×"  d & $ ß& $ N,( /ßß2( +þF  ÷# $ $# $ $ÿëm03B%#32+"'4763#"'&'476;2+"'&'476;/32#"'&'4 î  …A ›?!  ØÇ#  ‹  @NO(ô ) ô ž: 2 þ  žÀÀÿ " %*ÿð;r*7F!5#"'&54763254'"#"'&54767232#'5&#"3232#"'&'4„K[[6#'D‡-;]3A" RZ‰,!  t?0F)(R€ô ) ô '8#,1,L 0  P&Ê ‡2 %  " %ÿëm?03X%#32+"'4763#"'&'476;2+"'&'476;/21013276575?6?2#"'&'476 î  …A ›?!  ØÇ#  ‹  @NO; 8D >3>O7(ž: 2 þ  žÀÀ=52# ?-&8(2 *ÿð;¯*7\!5#"'&54763254'"#"'&54767232#'5&#"3221013276575?6?2#"'&'476„K[[6#'D‡-;]3A" RZ‰,!  t?0F)(R“ 8D >3>O7('8#,1,L 0  P&Ê ‡2 % [52# ?-&8(2 ÿëÿ0mGHK2327632#"'&54767#"'&'476;'#32+"'4763#"'&'4763'bÇ" E$  #+)F/ D  î  …A ›?!  íNOGþ  '.  78( :: 2 þ»ÀÀ*ÿ0DÂ@M%32327632#"'&54767#5#"'&54763254'"#"'&5476725&#"32é! 0>$  #+)F/ :K[[6#'D‡-;]3A" RZ‰,d?0F)(Rd '/( 78( '8#,1,L 0  P&§2 % !ÿò4G8L632#"'&'&/&#"32767632#"'&=4763237#"/4?632¿   +6\2"S0BH& 5EsTEXLlED …  …  3 T!  G/@@`, $%2XHgB€RH Êo p 6ÿð5¸0A#"'&'&'&#"3276?632#"/&547632632'#"/4?632  )AJ*(°B' @Bp…E=ZDbV: .V…  … €M!  +(<{   (! @=]{D4®p o ÿÿ!ÿò46&& þ~ÿÿ6ÿð5¤&F ìÿÿ!ÿò4ç&&þYÿÿ6ÿð5U&F Ç!ÿò438L632#"'&'&/&#"32767632#"'&=476323'7632'&'47632¿   +6\2"S0BH& 5EsTEXLlEDŠp   —˜ 3 T!  G/@@`, $%2XHgB€RH a   €€  6ÿð5¤0E#"'&'&'&#"3276?632#"/&547632632'7632'&'47632  )AJ*(°B' @Bp…E=ZDbV: .Ùp  —˜ €M!  +(<{   (! @=]{D4t` €€  &)&97"'476;2+"'&'476;2?6=4'&+?632'&'4?2J; ÔsLCFG}Ì! 1koL()-,MnHp   —˜ d2XNp/mJK ,$-H.H53Øa   €€  !ÿò©}0?7632#'32+5#"'&5476325#"'&'476;"27654'&L  R!  tCCmDFFDnW?!  túE('')Š)'')ït }þ½ #-ADddCA2| þï('54)(('47'(&G$:7#"'&'476;5"'476;2+"'&'4763732?6=4'&+32#J  !; ÔsLCFG}Í 1doL()-,MnJ Bó Œ2XNp/mJK ,$-H.H53Œ 2!ÿðep+>32+32+5#"'&5476325#"'&'476;"327674/&'& B!  tDPƒF1SE`PF!  tùO+H!,b$> )û 2þÍ (T:SoG;.y þî<$/N@!M) &BQ7!547632!"'&'476;#"'&'4763!#"'&=#3547632#"'&=32#"'&'4 þ)"  !  Á êU &  eô ) ô ó4!  ˜  –!  2! 'q!   " %!ÿð&r(7%!3276?2"'&'47632%!&'&#"132#"'&'4&þh"‚6X ! #>s)‡K5TIe}K;þk&GU+ ô ) ô ¬X Us)‡K5TIe}K;þk&GU+ •& $ ¬X U+U=VkD;S@\1<5 &)BV7!547632!"'&'476;#"'&'4763!#"'&=#3547632#"'&=7632'&'47632 þ)"  !  Á êU &  p   —˜ ó4!  ˜  –!  2! 'q!  Èa   €€  !ÿð&š(=%!3276?2"'&'47632%!&'&#"17632'&'47632&þh"‚6X ! #>s)‡K5TIe}K;þk&GU+ –p  —˜ ¬X U3>O7(´„6F?g GrSM  N! - /5P@U&,E  &52# ?-&8(2 !ÿ3P¯*:_532++"'&'476;276=#"'&547632"327654'&21013276575?6?2#"'&'476št!  H3Dp"  mCBKpE7QAZQOF)9$-F+9$ž 8D >3>O7(‘$ þ›]6& 271P?YoD6d6",D(6"+E(P52# ?-&8(2 ÿÿ!ÿòPç&* Yÿÿ!ÿ3PU&J Ç!þêPUBS%"'&'&'4=4?632672#"'&'&'&#"3275#"'&'476;2#"/4?632&fM(O<NNzQ@    TU/5-4_E8d"  ¯! þR  R ´„6F?g GrSM  N! - /5P@U&,E  &þÂ~ ~ !ÿ3PÑ*:L532++"'&'476;276=#"'&547632"327654'&#"'5'4?632št!  H3Dp"  mCBKpE7QAZQOF)9$-F+9$=R  R ‘$ þ›]6& 271P?YoD6d6",D(6"+E(/~ ~ ÿÿE6&+ ~ÿÿ E_&K ÿ–§EGN%#32+"'&'476;&'476;2+35#"'&'476;2#32+"'&'476;™Ö!  y!  2 e!  Ö  e! 0!  y  ñ  - ŽŽ  +þ   EpM32+63232+"'&'476;54'5'&#"32+"'&'476;#"'&'476Oä  !p;Ng0!  p!  ,-$!  p !  p ‡=H(6¸  «( ·  ¨ ÿÿSô&,dÿÿ>b&óÒS%432#!"'&'476;#"'&'4763!2#32#"'&'4^e BþÒ  ee!  .  þïô ) ô ãþ 2    " %>r-32#!"'&'476;5#"'&'4763732#"'&'4^z  þ¨"  zN#  ô ) ô µþ¯  í ½ " %ÿÿS'&, xÿÿ>•&ó æSÿ0G>32327632#"'&54?#"'&'476;#"'&'4763!2#^e H$  #+)F.!é  ee!  .  ãþ  */  78'   >ÿ0o7;32327632#"'&54767!"'&'476;5#"'&'47637#5^z  )#$  #+)F/ þê"  zN#  ¤vµþ¯ '  78( í ºiiS%532#!"'&'476;#"'&'4763!2#2#"'&5476^e BþÒ  ee!  .  —& $ ãþ 2   ;# $ $>µ32#!"'&'476;5#"'&'4763^z  þ¨"  zN#  µþ¯  í SG%32#!"'&'476;#"'&'4763!2#^e BþÒ  ee!  .  ãþ 2   uÿ3èo!#"'&'4763!+"'&'476;2765#5„Ê"  .G3Er"  oC*wQ þ7\6' 2ƒiiÿÿ6ÿòe6&- w~uÿ3è1#"'&'4763!+"'&'476;2765#"/4?"'„Ê"  .G3Er"  oCUq   ˜—  Q þ7\6' 2Øa       þêZGHY732+"'&'476;#"'&'476;2+7&'4?32#32+&'&'#"/4?632Â#  –"  !  –!  #²-d! >°UD  n=PTR  R Ðl    •™ !+ 2™-•$ º9 þ~ ~ !þê;p7H7#"'476;#"'&'476;7&5476;2+32+"'47'#"/4?632×tA !  tO p!  v !!  vAgiR  R ¤¤2¨ þ¯? ` 2[þÐ~ ~ 4$µ63#"'476;5#"'&'476;7&5476;2+32+"'47'êtA !  tP p!  ˆˆ !  !vAN2í –? n 2M!;G)=3547632!"'&'476;#"'&'476;2##"/4?632× þ("  99!  Ö  ;…  …  ãþ\!  !À   o p >H/32#!"'&'476;#"'&'4763%#"/4?632^z  þ¨"  zN#  …  … pýô  ¨ p o !þê;G):3547632!"'&'476;#"'&'476;2##"/4?632× þ("  99!  Ö  R  R ãþ\!  !À   ýŸ~ ~ >þêp/32#!"'&'476;#"'&'4763#"/4?632^z  þ¨"  zN#  ¦R  R pýô  ¨ ý~ ~ !;V)<3547632!"'&'476;#"'&'476;2#7#"'5&54?632× þ("  99!  Ö  ôR  R ãþ\!  !À   0~~ >}.32#!"'&'476;#"'&'4763#"/4?632^z  þ¨"  zN#  YR  R pýô  ¨ 6} } ÿÿ!;G&/yN ÿÿ>(p&Oy± ;G@76323547632!"'476;5#"'&5476?5#"'&'476;2#X ‰× þ(A 96 h9!  Ö  ã|4  Q["  ¿2g  <¥  >p7763232#!"'&'476;5#"'&54?5#"'&'4763^#!Uz  þ¨"  z" SK#  !pá 1·   /¥ ÿøPG0D32+"'&'47#"'&'476;#"'&'476;2###"/4?632­#!  ! =!  s#!  ‚ =c…  …  ŠþÚ  . þx$  2þÿo p ;¸?P67376322+"'4754'1"#"32+"'&'476;5&'47637%#"/4?632Ã75 D3;; YB=P60   p  <)_…  … µ04%,W¶22.²D- ¶  í0(»p o ÿøþêPG0A32+"'&'47#"'&'476;#"'&'476;2###"/4?632­#!  ! =!  s#!  ‚ =c^R  R ŠþÚ  . þx$  2þ~~ ~ þê;Â?P67376322+"'4754'1"#"32+"'&'476;5&'47637#"/4?632Ã75 D3;; YB=P60   p  <)íR  R µ04%,W¶22.²D- ¶  í0(ýÍ~ ~ ÿøP)0D32+"'&'47#"'&'476;#"'&'476;2##7632'&'47632­#!  ! =!  s#!  ‚ =cƒp   —˜ ŠþÚ  . þx$  2þ»a   €€  ;¤?T67376322+"'4754'1"#"32+"'&'476;5&'4763?632'&'47632Ã75 D3;; YB=P60   p  <)Èp  —˜ µ04%,W¶22.²D- ¶  í0(` €€ ;Â?67376322+"'4754'1"#"32+"'&'476;5&'47637Ã75 D3;; YB=P60   p  <)µ04%,W¶22.²D- ¶  í0(ÿøÿ5PGC%32+"'&'47#"'&'476;#"'&'476;2##"/4767232765¯þþ#!  ! =!  s#!  ‚ =C.>h 3ˆþÚ  . þx$  2þ_7'1/ÿ5þÂG#"/47632327654'1"#"32+"'&'476;5&'4763736737632þC.>h 3P60   p  <)^75 D3;þØ_7'1/$D- ¶  í0(04%,ÿòC.2#"'&'476"327654'&32#"'&'4,gR^URptRPUQqQ6,B1@O7-B1ºô ) ô UMY}ZV[XZVdG:La>/F9Lc?. " %*ÿð.r.2#"'&5476"327654'&32#"'&'4/rL@SIfuLAUJeW.?)6T.>)±ô ) ô ÂNAZgE=NAZkD:d: +D'8"+C' " %ÿÿÿòC'&2 xÿÿ*ÿð.•&R æÿòCF0A2#"'&'476"327654'&"/4?632"/4?632,gR^URptRPUQqQ6,B1@O7-B1!f  f  f  f  UMY}ZV[XZVdG:La>/F9Lc?. m  nm  n*ÿð.¶4I2#"'&5476"327654'&#"/471?632#"/471?632/rL@SIfuLAUJeW.?)6T.>)f f f  f  ÂNAZgE=NAZkD:d: +D'8"+C'n nn nÿìdG3@%3547632!"'&54763!#"'&=#3632#"'&'5n“  þŸƒPD]LnN . 'wG(74(ó!  z^PvŒSD¥!  A7 N *(P(P: ÿõÿðeÂ(8A%#327137632"'#"'&547632632%"327654'&3&'&'"dü@1 2IS46NR6.C2@M85PD57þH))+*¨ #%«W JJM@WsG4PP==p…6#,J'6"+N&\&+ kG5@T732+"'&'476;#"'&'476;232+&'&/327654'&+#"/4?632Â#!  –"  !  ßy>%lA= !  O4M"`L\&3!p…  …  Þz   I,=[<8b eN$d-, o p 6;¸1B6?2#"&#"32#!"'&'476;5#"'&'4763%#"/4?632Y24. *#M5‹!  þ×!  :#"  5…  … µAC& $;*“  í »p o  þêkG5@Q732+"'&'476;#"'&'476;232+&'&/327654'&+#"/4?632Â#!  –"  !  ßy>%lA= !  O4M"`L\&3!pR  R Þz   I,=[<8b eN$d-, ýŸ~ ~ 6þê;Á1B6?2#"&#"32#!"'&'476;5#"'&'4763#"/4?632Y24. *#M5‹!  þ×!  :#"  ÃR  R µAC& $;*“  í ýÍ~ ~  kG5@T732+"'&'476;#"'&'476;232+&'&/327654'&+?632'&'47632Â#!  –"  !  ßy>%lA= !  O4M"`L\&3!pkp   —˜ Þz   I,=[<8b eN$d-, öa   €€  6;¸1F6?2#"&#"32#!"'&'476;5#"'&'4763?632'&'47632Y24. *#M5‹!  þ×!  :#"  ²p  —˜ µAC& $;*“  í •` €€ >ÿòGPd#"'&/&'&#"#"'"'547672327654'&'&'&'&5476326?2'#"/4?632  <D @ n);X:SSI2  ? "P$$QU,C M;QM5  A…  …  X! ,(  /N^0 'BB! $ (! &J V4'! Ëo p Iÿð¸AR'&#"#"'#"'&=47632327674'&'&'&547632632#"#"/4?632™)>?Ef+=Oÿò6&6 ~ÿÿIÿð¤&V ì>ÿUm#"'&'476323274'#5&'"'5476721327654'&'&'&'&5476326?2#"'&/&'&#"LJ5-.#* 581  ?"Q%$OU,C L;QN5    <D C m+;_/ K;   [BB! % (! &J V3(! !X! ,(  /Nc/IÿÂZ#"'&'476323274'#5&'#"'&=47632327674'&'&'&547632672#"/&#"LJ5/-#* @* ' -QM"FŸ M6KH8 .  )>?Ei(@V.K;   X  !" ,'  GG'B%!   %LJ(>ÿò3Pd#"'&/&'&#"#"'"'547672327654'&'&'&'&5476326?2'7632'&'47632  <D @ n);X:SSI2  ? "P$$QU,C M;QM5  Ëp   —˜ X! ,(  /N^0 'BB! $ (! &J V4'! ‘a   €€  Iÿð¤AV'&#"#"'#"'&=47632327674'&'&'&547632632#"7632'&'47632™)>?Ef+=O)Y! &_^' !\!  þÂ& $ ß& $ õ‘  ‘î2( !ˆˆ" ! ;# $ $# $ $IG/73547632!5##"'&=!#"/4?632Éâ þ:.³ ˜4…  …  dH!  ¬dF!  ªao p U¸)73632!5%##"'&=!#"/4?632ô¯/þN• ™6…  … d6 XSþ  mQ p o I+73547632!5##"'&=!2#"'&5476Éâ þ:.³ ˜Ì& $ dH!  ¬dF!  ªa8# $ $UŽ(73632!5%##"'&=!2#"'&5476ô¯/þN• ™Î& $ d6 XSþ  mQ*# $ $I)/73547632!5##"'&=!'7632'&'47632Éâ þ:.³ ˜Ìp   —˜ dH!  ¬dF!  ªaÕa   €€  Uš-73632!5%##"'&=!'7632'&'47632ô¯/þN• ™Ìp  —˜ d6 XSþ  mQÈ` €€ K;o/%32#!"'&'476;5#"'&'476;547632'&#"+‹!  þ×!  :/"  !.X,=P9)>3Sd  í %\& $#  1ÿøÿò;p<"327654'&32+632#"/#"'&'476;#"'&'476CF('B$/D)'')þ³×!  c?WmDFFDlK@ t  !  _('4M%('63)( {2ACecDA)# ¨ ÿ¾;G @327674'&+3254/&+'#"'&'&'476;2#!"'&'476;ÂqT<…¯f(%>‡d- 1eýh8$<iP1DþÙ"  V-/ þ6%ñ "&:XB*9?/5\Z+ ÿÿCGŒÿøÿò;p<"327654'&!2#!632#"/#"'&'476;#"'&'476CF('B$/D)'')þ³Ÿ!  þÕ?WmDFFDlK@ t  !  _('4M%('63)( {2ACecDA)# ¨ ÿÿ!ÿò4U&UGÀ!ÿò—§F6703632'&'&#"#"'&'&/&#"32767632#"'&=476323Á1:&  +6\2"S0BH& 5EsTEXLlED2I2-e!  G/@@`, $%2XHgB€RH 6ÿðŽ">67632'&'&#"#"'&'&'&#"3276?632#"/&547632¸0:&  )AJ*(°B' @Bp…E=ZDbL«H2-^!  +(<{   (! @=]{D4ÿÿ&G’ÿ¨&G 3732?6=4'&+'32+"'&'4763#"'&'&'476®oL()-,MnuësLCFG}Ì! 1- 1Wd$-H.H53dXNp/mJK , "&:LÿÿCGGŒXÀ@!ÿòep2"27654'&7!"'&'4763!32+5#"'&547632E('')Š)'')PþÔ!  !  tCCmDFFDnW?_('54)(('47'(­ ýô #-ADddCA2ÿÿ*ÿ4.Â\X²Àÿÿ &G(3GÀ>ÿòU[2+"##13276767632#"/#"'&54?&/476326?2#"'&/&'&#"n  ;<%#8"*K+ 3ISƒ>$;. M;QN4    <D U "( $ !BB'J*:N/ HV4'! !X! ,( ÿ™ÿ…&G?7#"/4763232765#"'&'4763!#"'&=!3547632#"'&=ÂC.>h 3!  × ÿU  ó±_7'1/¡ —  3!  q!  9ÿ…$~?32+#"/476323276=#"'&'476;5476320#"'&#"b9"  9C.>h 39"  !9A/>d ) ” î_7'1/î 7V5(.#  (!ÿò˜¤N67632'&'&#"#"'&'&'&#"3275#"'&'476;2"'&'&'4=4?632Ä 5:&   TU/5-4_E8d"  ¯! *fM(O<NNzJ:I 2-N! - /5P@U&,E  & „6F?g GrSMÿåÿóepI275#"/476;#"'&'&=4/&'"32+"'&'476;#"'&'476;632…>9)  t#0??0.$'!  p !  t/r# }FH²"þçQ%%%#I s*#×  ¨ Ë]iÿð#G!303327632"'&5#"'&'4763^,L.V3&N#  Gþf< 0 F2E6 SG;5#"'&'4763!2+32+32#!"'&'476;5#"'&'4763úe!  .  ee!  ee BþÒ  ee!  N•  • † 2 † !;~A747632#"'&#"7&5476;2+32+"'47'#"'4763sA/>d ) O p!  v !!  vAgtA dgV5(.#  (©? ` 2[¤2>p45#"'&'476;32+32#!"'&'476;5#"'&'4763úN#  ²e!  ez  þ¨"  ze!  N¾ þÞ †  † Cq<#"/&'4?'#"'&'476;27632+"'47'+"'47ñU Xd a<R SÅ2 !\B@xr: !Z=1°- . 3* ,þ†- 2/ßß0 2+ÿíÿóoGE!5"'#"'&'"'4;32767"'5'476;2767"'476;2+#Ï,)9--;H%9B^ 5 ^#""; X! <9%#119+m22þ7" _)þ7$$_2 -þ1& ÿ„ÿ…PG3#"/4763232765#"'&'476;#"'&'476;2##­C.>h 3!  s#!  ‚ =cŠþ¸_7'1/¡ þx$  2þÿ3;Â?67376322+"'474'1"#"32+"'&'476;5&'47637Ã75 D3;; YB=P60   p  <)µ04%,Wþ}22.D- ¶  í0(ÿòCU!2#"'&'476&'&#"!3276,gR^URptRPUQ!F*1Q6 [þ«F$(Q6UMY}ZV[XZVþô\/G*7dU'H ÿòY˜2"327654'&#"'&'476323254'&76?6,Q6,B1@O7-B1©.URptRPUQqPD- 1ñG:La>/F9Lc?.#Hg}ZV[XZV/ ! &:E*ÿð[1"327654'&#"'&5476323254'&76?6.W.?)6T.>)²SIfuLAUJfSB- 1^: +D'8"+C'!.6gE=NAZkD:, ! &:Dÿñ‹tF3276=4'&#"763232+"'&'476;4#"#"'&'54?632g= F= FÚ@IT   p  ".L4WW4ML4W:EDq*L)7Dq*L)À8^!+þš  fFKk6Q77P6Q7ÿÞÿï‹æC6767&'#&7''&7&7627632;2+"'&'476;4'1+"ÎtM dC’6KD`oF9KEa71,ZJ&  p  )^e] QV!BSgE>QBXhD?88)þþ  ÿ­G =327654'&'+"'&'&'476;2#32+"'&'476;ÂvR@Ú - 1Wús=)21Q9bc  Ö"  ã·9B "&:MI1CI76 d  ÿøÿ3;~M7327654/&#"'6723232#"'&'32+"'&'476;47632#"'&#"®?%1W((&>?&(>I vG7SC\QF:!  ®"  A/>d ) çD!8$1#1•5O=Vg>15«  4V5(.#  (ÿÿ>ÿòUG6XÀ@ÿÿIÿðÂGVXÀ@IG'5!#"'&=#3547632!5á˜Æ á–—â þ:%Áaª  "F¾ÁH!  ¬d ÿ5OI%#"'&=#"'&'476;547632321+327632#"/4767232765­E={,#!  # µ µh 3G&× X!  XÄ "  \_7'1/ÿý.G3"#"'&'4763!#"'&=#32+"'&'476;Ž,  1X  mB  ç  Aã ! &:NÁ!  ]þ   ÿð~D547632#"'&#"321+327632"'&=#"'&'4763rA/>d ) µ µ)µ ! &:G þF lN,( /ßß2(IG1%3547632!57#"'&'476;7##"'&=!32#2iâ þ:j"!  qu³ ˜w!  ê†!  |d† •!  za˜ Uµ,%3632!57&'&5476;7##"'&=!#+7¯/þNJ  LU• ™i  š66 XSHS  mQf,ÿÎ3G86#"'&'&7676327654'1&+"/547637##"'&=!Y5$r>Iy_@5,n < ~!  u³ ˜NH1?x6K?G! •!  zaÿÿ,ÿÎ3GGp_À@6 V>+3632!57#"'&'476;674'#&'"1"'&54?632ê ,‰Ñ.þ*´9!  »%2(>#  *>^k>,G `6 Xi !)0 )  +28H4F0ÿÿúÿg^n_šÿg¾n##"'&547632#"'&547632¾  À  ,ý}  ƒ!  ý}  ƒ!  ÿÿÜÿñ}~ÿ38o)GK3547632!"'&'476;#"'&'476;2##"'&'476;+"'&'476;2765#5Ðg þÀ"  !  Ž  ëf"  ÊG3Er"  oC*wãþ\!  !À   ’ þ7\6' 2ƒiiÿ3(p!@#"'&'476;+"'&'476;2765#5'32+"'&'476;#"'&'4763Äf"  ÊG3Er"  oC*wy>  à"  >.#  Q þ7\6' 2ƒiiýô  ¨ ÿÿÿëmD&$ ÿÊŒÿÿ*ÿð;±&D øùÿÿSD&, Œÿÿ>±&ó ùÿÿÿòCD&2 Œÿÿ*ÿð.±&R ùÿÿ ÿòND&8 Œÿÿ ÿó;±&X úùÿÿ ÿòN–&žq$ÿÿ ÿó;&¾qÿû”ÿÿ ÿòN&žv Vÿÿ ÿó;~&¾vÆÿÿ ÿòN &ž Uÿÿ ÿó;}&¾ ÿúÅÿÿ ÿòN&žCÿóVÿÿ ÿó;~&¾CÿîÆÿÿ!ÿð&ÂHG²Àÿÿÿëm–&†qÿï$ÿÿ*ÿð;&¦qÿõ”ÿÿÿëmm&$&ÊgqÿÊûÿÿ*ÿð;Ú&D&øÔqøhÿÿÿìfÍ&ˆqJ[ÿÿÿóÿðd:&¨qÈÿÿ!ÿòP0&* xÿÿ!ÿ3Pž&J ðæÿÿ Z&&. ðnÿÿÿí;_&N ÿp§ÿÿÿ)CU&2²ùÿÿ*ÿ'.Â&R²÷ÿÿÿ)CÍ&2&²ùq[ÿÿ*ÿ'.:&R&²÷qÈÿÿ,ÿÎ3&&p nÿÿuÿ36¤&Ë Zìÿÿ!ÿòPE&*vÿÿ!ÿ3P³&Jvîû8G<%27=#"/476;+=##"'&'476;&'476;3=32"1+|W)  t;0G|Gj!  2 VGV! 0dHbP"´eW-%dd -dŽŽd +þÿÿÿøPE&1Cÿëÿÿ;²&QCðúÿÿÿëmW&‡vÿüŸÿÿ*ÿð;Ç&§vÿÿÿìfE&ˆvVÿÿÿóÿðd²&¨v"úÿÿ ÿºNS&šv ›ÿÿÿº=À&ºvÿÿÿëmC&$"ÿÿÿ*ÿð;°&D"¾úÿÿÿëm=&$G ÿÊ4@Àÿÿ*ÿð;¼&DG ÿø³@Àÿÿ &C&("ÿÊÿÿ!ÿð&°&H"½úÿÿ &=&(G 4@Àÿÿ!ÿð&¼&HG ÿ÷³@ÀÿÿCC&,"ÿÆÿÿ>°&ó"ÆúÿÿS=&,G 4@Àÿÿ>¼&óG ³@ÀÿÿÿòCC&2"ÿÆÿÿ*ÿð.°&R"ÉúÿÿÿòC=&2G 4@Àÿÿ*ÿð.¼&RG ³@Àÿÿ kC&5"ÿ¸ÿÿ6;°&U"Òúÿÿ k=&5G ÿÒ4@Àÿÿ6;¼&UG ³@Àÿÿ ÿòNC&8"ÿÆÿÿ ÿó;°&X"Àúÿÿ ÿòN=&8G 4@Àÿÿ ÿó;¼&XG ÿú³@À>þêUPa#"'&/&'&#"#"'"'547672327654'&'&'&'&5476326?2#"/4?632  <D @ n);X:SSI2  ? "P$$QU,C M;QM5  ³R  R X! ,(  /N^0 'BB! $ (! &J V4'! ýN~ ~ IþêÂAR'&#"#"'#"'&=47632327674'&'&'&547632632#"#"/4?632™)>?Ef+=Oh 3dF!  ªaþ~H!  º_7'1/Uÿ5µ,%#"/476323276=!5%##"'&=!3632C.>h 3þ²• ™þú¯/‚ f_7'1/Sþ  mQÿ6ÿÿÿëmõ&$Êgÿÿ*ÿð;b&DøÔÿÿ ÿ#&G&(zÿÿ!ÿ&Â&HzøÿÿÿòC–&˜q$ÿÿ*ÿð.&¸q”ÿÿÿòC—&—q.%ÿÿ*ÿð.&·q.–ÿÿÿòCõ&2gÿÿ*ÿð.b&RÔÿÿÿòCm&2&gqûÿÿ*ÿð.Ú&R&ÔqhÿÿCÍ&<q[ÿÿÿ2C:&\qÈÿÿ*ÿó;ÅDeµÀ!ÿòeÓ1"327654'&732+5#"'&54763247632E('''4E)'')´!  tCCmDFFDnW? _('57&$('47'(2þÓ #-ADddCA2!  ÿÿ!ÿîeÏÓ†ÁÀÿøÿò;~="327654'&47632#"'&#"632#"/#"'&'4763CF('B$/D)'')þÃA/>d ) ?WmDFFDlK@ t  _('4M%('63)(ûgV5(.#  (72ACecDA)# ÿÿ6ÿð5ÂGFkÀ@!ÿ5Øp>"327654'&3327632"'&=#"'&5476325#"'&'4763E('''4E)'')´,L.V3&CCmDFFDnW?!  _('57&$('47'(ý‚< 0 F2E1-ADddCA2| !ÿòÕ~="27654'&75476320#"'&#"32+5#"'&547632E('')Š)'')PA/>d ) !  tCCmDFFDnW_('54)(('47'(2:V5(.#  (þœ #-ADddCAÿÿ!ÿð&ÂGHGÀ@ÿÿ!ÿð&ÂHG²ÀÿÿIÿðÂG²XÀ@ÿÿIÿð²uÿ34µ3!#"'&'476;5#"'&'4763!32++"'&'476;2765„Ê!  ÊÊ"  . !   G3Er"  oC í þ¯ \6' 2!ÿ3À~E"327654'&75476320#"'&#"+"'&'476;276=#"'&547632F)9$-F+9$]A/>d ) H3Dp"  mCBKpE7QAZQ_6",D(6"+E(2:V5(.#  (þ$]6& 271P?YoD6!ÿ3þÓ +;354'&'"3+"'&'476;276=#"'&547632"327654'&šd dH3Dp"  mCBKpE7QAZQ<‹F)9$-F+9$Œ  "þ[]6& 271P?YoD6226",D(6"+E(ÿÿ ÿCE³KR³ÀE~N747632#"'&#"63232+"'&'476;54'5'&#"32+"'&'4763_A/>d ) ;Ng0!  p!  ,-$!  p dgV5(.#  (C=H(6¸  «( ·  ÿÿ EpK>o8#5#"'&'476;5#"'&'476;32+32#!"'&'476;Pv O!  ON#  ²O!  Oz  þ¨"  zoiiþ+ S · 6  iÿð#µ!303327632"'&=#"'&'4763^,L.V3&N#  µþø< 0 F2E¤ nêµ%32+"'&'476;5#"'&'476;2#^J Bø  JJ!  ø  Qí 2 í  >pF5#"'&'476;327672"'32#!"'&'476;5&#"1#"'&547672úN#  ² # 28z  þ¨"  z !'5;{‘ þÃ. % <W  (" +=iÿ5#p!303327632"'&5#"'&'4763^,L.V3&N#  pý‚< 0 F2E ÿÿÿíÿóoµP\µÀÿíÿ3oµC5"'#"'&'5"'4;327675"'5'476;27675"'476;2"9Ï,)9--;H%9B^ 5 ^#""; X! <9%Íå#119+Û22þÉ" Í)þÉ$$Í2 -þF1& ÿíÿ53ÂQ#"/47672327654'&#"21+4'"2+"'&'475&'4?36726323C.>h 35 ^#""; X! <9% ],)9--;H%?þ³_7'1/E"Í) 7$$Í2 -í1& #119 ÿšÿ5;Â?&'47637367376322+"'4754'1"#"#"/476323276_<)^75 D3;; YB=P60 C.>h 3_0(04%,W¶22.²D- þØ_7'1/ÿ5ÃÂH3327632"'&54'1"#"32+"'&'476;5&'4763736737632þ,L.V3&P60   p  <)^75 D3;þØ< 0 F2E$D- ¶  í0(04%,ÿÿ*ÿð.Â8ÿÿ6ÿô;µUqµÀÿÿ6ÿô;‚ñqµÀ6ÿ5„µ>303327632"'&="'&547632327575#"'&'4763!2#¿,L.V3&Y24. #M5‹!  )!  Qþ¡< 0 F2EOC& ;*“  6ÿ3;Á16?2#"&#"32#!"'&'476;#"'&'4763Y24. *#M5‹!  þ×!  :#"  µAC& $;*þ   º Mÿ5;Á4%303327632"'&5#"'&'476;6?2#"&#",L.V3&#"  ‡Y24. *#M÷þû< 0 F2E_ AC& $;Iÿ5ÂO7327632"'&=47632327674'&'&'&547632632#"/&#"#"­,L.V3& & +RM"E  M6KH9 . )>?Ef+=Od ) C.>h 3B‰V5(.#  (þz_7'1/ÿ3P~I!#"'&'476;5#"'&'476;5476320#"'&#"32++"'&'476;2765*Ê!  ÊÊ"  ÊA/>d ) !   G3Er"  oC í V5(.#  (þœ \6' 2ÿÿ9ÿ…$~Gô]À@ÿÿ ÿðOW?À ÿ2O5327632"'&5#"'&'476;54763232#Ö/F9Lc?.KµK!#"/547635#2+"/547635&'476;2#35"'&5476;2"1+2Ýd!  –!  d!  2 V!  –!  V! 0!  ! NN ! ! í- ! ;; !  +í ! ÿÿ!;pN\pÀBµ)3547632!"'&'476;5#"'&'476;2#¯ þi"  !  ¥  Qí!  !€ í  !ÿ3Õ~H"327674'&75476320#"'&#"32+"'&'476;5#"'&547632<(+*&??&+A%fA/>d ) !  ®!  :HTwF5SC^P<^!:2$ :E!*CV5(.#  (ýÏ  «8M9PlA5.hV>7#"'476;5671654'&'"#"'&=6?232+"'&'476;ýSA S€ 6 72 l?!s:$A"<!  „!  ”2 01"5 !  O4L/BM1€  ÿÿhVGmÀ@}ñܸ#"/4?"'-q   ˜—  _a      }ñܸ7632'&'47632-p  —˜ J` €€ Јµ32'&/&737"74?6##ë‚F F F F µ‘  ‘þK‘  ‘Ðöˆµ32'&/&737ë‚F F µ‘  ‘}÷Û¯$21013276575?6?2#"'&'476Ÿ 8D >3>O7(¯52# ?-&8(2 ðhŽ2#"'&5476,& $ Ž# $ $±æ§×2#"'&5476"327654'&,@%3!'?%3!') #' %×5&;%3'<%5#& "(úÿ0Ï!3327632#"'&547IbZ %  #+)F;<(  7>+s å(2#"'&#"#"'='476323327576Å&*"A ',2,  %0+!-}ðÛ¶)#"/471?632#"/471?632#f f f  f  nn nn nÿÿ}ð^¸CÿÿúðÛ¸v}ñܸ#"/4?"'-q   ˜—  _a      ÿÿs åÿÿ}"Ûrq7"!r!2!"'&'4l€ ) þ€ r " %ÿÿ}÷Û¯ ÿÿðhŽÿÿˆÐŽj±Ã§×+21#"/54?674'&#"#"'476,>%*& #) 5×0%9! - & #@#ÿÿ±æ§×ÿÿ}ðÛ¶ÿÿ}ñܸ TÜ1"'1'5471721T  ´Š Š ´¤Ü!1"'1'5471721"'1'54?21¤    ´Š Š Š Š }ðÛ¶&'4?2"'%&54?2"'5 f þö f n n  n n  }÷Ûê$421013276575?6?2#"'&'47672#"'&5476Ÿ 8D >3>O7(‘& $ ¯52# ?-&8(2 ;# $ $ÿÿ}÷Û¯G ¦@Àö㘺3254'&76?6'#ö- 1I#%H ! &:G ÿÿ5ÿ5^G'XÀ@úÿ5#;303327632"'&5úd,L.V3&< 0 F2Eÿÿ´ÿ—zÿÿúÿ0Ï€ÞæÈ%632#"'&'4› þþ <‡ † ÿÿ“K_oƒÿÿ“ÿk_ƒþ çÿ5;303327632"'&5çd,L.V3&< 0 F2Eÿÿ“ÿb_µÿÿTÜ ÿÿˆÐè& jÿÿÿëmU&$ ÿÿyÿÿáÖwZyÿÿÿ×&U&( þÓÿyÿÿÿÝEU&+ þÙÿyÿÿÿýU&, þùÿyÿÿÿÎÿòCU&2 þÊÿyÿÿÿÈCU&< þÄÿyÿÿÿÍ;U&Q þÉÿyÿÿiÿð#È&ä& ìjàÿÿÿëmG$ÿÿ ;G%ÿÿ 8GŽ MG)"'4763#"'&'476;2%3 þBA {?!  ا#  þŽåt2 þ d^ÿÿ &G(ÿÿIG=ÿÿEG+ÿòCUG2#"'&'476"327654'&#"'&=##"'&=476323547632,gR^URptRPUQqQ6,B1@O7-B1J  s s  UMY}ZV[XZVdG:La>/F9Lc?.þð   †    ÿÿSG,ÿÿ ZG.ÿëmG/732+"'4763#"'&'476;2+"'&'476;›  …A ›?!  ØÇ#  ‹  Žd 2 þ  ^ÿÿÿíoH0ÿÿÿøPG1#5G>T%547632!547632%#"'&=##"'&=4763235476327!#"/=!#"/5Ñ ! ýî ! /  m    m  þÎ ! ú ! dC!  §§!  C…   †   tC! §§! ÿÿÿòCU2EG8#32+"'&'476;&'4763!2#32+"'&'476;™Ö!  y!  2 ‚! 0!  y  ãþ  - +þ  ÿÿ G3ÿÿIGeÿÿ*.G7ÿÿCG<ÿÿTGŸÿÿ NG;ÿðhGM#32+"'&'476;5"'&=#"'476;35#"'&'476;2+276=;2#&F:H B–  R=9< M) !  f  3M =ã{`B7+ 2 +E?U{2 ï+ ì  ë-ï 2;G=7&'&5476;23547632#5327654'&+";#5476323´U%JAa0{D-C*3 ! û5&[0†0!%û ! 3v%].2mFÿ2Eµ7&'4?32"#7"'4?32#32+"/&5476;ù±/)Z! 7rx>)\! 0³ !  {   T,( /ßß2( +þ¬f *ÿð.~>"327654'&7&'&#"1;2#"'&547&'47632632#"'.W.?)6T.>)^x%N f!rL@SIfuLAM:b*0<. ^: +D'8"+C'™! %NAZgE=NAZeC&E_$!B%! ÿÿIÿðÂG²XÀ@\ÿ2p8+"/&5476;654/"'&54?##"'&=!32Ó  p  5ƒ4’\… ™Ìn(&n&i"1W)6Œ|N  mQ­]_"F;ÿ3;Â;4'1"#"32+"'&'476;5&'47637367376322#šP60   p  <)^75 D3;; ÍãD- ¶  í0(04%,Wþ}2Sÿño&#"'&'54?6323&'&#"#3276L4WW4ML4WW4Mþ³ê>Géê=FXPQ77PPQ77P‡r)N(˜o)L(ÿÿiÿð#µäÿÿ4$µµCq*+'&'47'+'&'47'#"'&'476;2&2Ý2 !\*@xr: !Z*1¬.d a< þX- ,/ßß0 ,+NZ 3  ÿ2;µC732+"'&'&'476;#"/476;32?3675#"/&'476;2+5#"Ã!  p  )  tX2%#  ‡; _71)j º"þêH ¶þ¯203ÿÿXµYuÿ  }c+/&547676;767'&'&'&5476?3&'&54767##"/5!'32#"#2  }   \\2189$2 8Q  „G ' ,. /ŸD‹H  µ  ! + nO@?-:& mT     Ž^ @  ÿÿ*ÿð.ÂRÿÿ.ÿÿ*µºÿèÿ2.Â"2732+"/&5476347632#"'327654'&#"Ž!  €  UJfrL@SIfYE?)6T.>)5W. ‰ BkD:NAZgE=éD'8"+C': qÿÜþÏq#/4/&/&#"+"'#"'&'&=4?23276?654'&/&'&'&'&'&'&54767676;2?2þ   7D;-B51     ,!"   + J6  ;         %F!$  H         *ÿðZÂ'"327654'&3#"'&5476;2#.W.?)6T.>)ž-SIfuLAUJfù!  ^: +D'8"+C'=HgE=NAZkD:! Fÿðµ*303327632"'&=#"/54763!2#N,L.V3&r!  \!  Q¤< 0 F2E¤! !  ÿðKµ/#"'&'476;2+#"'&=#"/476;32765•!  ‡!  z'2+)  t.,#Q  «…% c#.­"þü67ÿüÿ3\ >#";27654'&+'54763232+#"'&=#"'&54763ú _b d c1+ d !  ŽA%Z'2!  !  ‘?"X?]QSl SD!d˜! ˜`7Ku: ˜!  ˜^3Ew?,ÿ3JµL32#"'&/2+"'&'476;7'&'&+"/5476;27"'&'476;2#õ”q%!  R!XQ  ‡!  “` !  Z5GR  ‡!  QàÏ  ! ¡|  ß°!! Z‚}  ÿêÿ2n~?33347632276=32++#"'&=#"'&=#"'&'476,t4  ! = t  !L.> ! ]5&!  µ÷Mì! þ*ù •m5 ˜!  ˜G3H“ ÿØAÅ€#53#"'&/#"'&'&'&547673"'&'&547676;2+32?6=?6763232?67654'&'#"'&57676;28  !"#!    m  &       &  nš ))+*H<<  >?E+*(*   $'&&1(( Š  Š )(0)"#( ÿÿaÿð#b&äjÙÔÿÿ ÿðKb&mjþÔÿÿ*ÿð.Ä&R èÿÿ ÿðKÄ&m þèÿÿÿØAÇ&q ¢ÿëRÿÞ r*3274'&#"327654/32#"'&547676#Èsj3T$"VJE&„vÎM8G’;H=g[<4ݦ&)þ¥p0 ,wW2%›Od›[M4-FŠGÿÔ‰^#"'&'&'&52"/&5?6?323276767654'&'&'&#"3732##"'&/476767632??[4//      &B N  &M++-,5\A<-‰hh4'  # # & 1.6=*''"0*)   5,#,*flÿúÿ6B ;%54+3276#"'&'&'5#"'&54?3;3201"+#"'&5ÞN#ÌE,9. }‚D*)<(6  ! ¨tBúŠ 3DÅ*þæ^")<‹C3"˜!  *ÿ2.Â$47133!2##!"'&547632#"'327654'&#"Ž!  þòi/UJfrL@SIfYE?)6T.>)5W. M.  ! H&2kD:NAZgE=éD'8"+C': ÿÿ &7&(C,ÿÿ &ç&(jíYÿEFFL%56;#'6?6='&'&#"53132?6=!327565131#3;276=&'#&'E H"G {9**{=-@þV >* !f  c&"Ü d2/Mê#2&Ž  !bf  þ (   87):732+"'&'476;#"'&'4763!#"'&=!#"/4?632Ôd!  Ö#  !!  !Öÿ²…  … d     —  3 p o "ÿò6U@7327674'&+676323276=4'&#"'&'"327674'&#"#"'&†Ø"  !Ö H(25-"  O?zOG^RvsE5  (Fw4ñ Z*  !T! !YOrBzLA2&#J#ÿÿ>ÿòU6ÿÿSG,ÿÿSç&,jYÿÿSç&,jYÿÒ€GJZ2+"'&'&'54?3#"/&=4762112765&'5476;23327676=4/1&+”k5  '-$:M‹Np'.4" 2 ú! 0@#å‘* *A'%þŸn +  X* .þ} $ ÿÄ|Hfv12+"'&'5476;5323+"'&'5476;&'5476;23+75#"'#&'5476;23#1327676=4/1&+k5  '-$!) ˆ  ¼!  x"  3 d!  ¼  f! +@#ä* *A'      , ŽŽ  ( þ€ $ ÿø^GR632+"'&'5476;5&'#"323+"'#&'547317#1#"'&=!#"'&51þ-={*/ f" H E  f! +> ªãŽ&2#( "&  (   fb!  R7GX732+"'&'476;#"'&'476;2+7&'4?32#32+&'&##"/4?632º$ –#  !!  !–"  $²,d! >°TC !  n*R:2Ì…  … d     •™ !+ 2™-’'  ƒV=Ùp o C7Qa32+"'&'476;&'476;2+75#"'&'476;2"1+32+"'&'476;"/&54?2—Ö!  y!  2 e!  Ö  e! 0!  y  –… … F¹)  - ã¹*  +þ  Ão p D'1V%+"'&'4?&'47637327&'476;2##21013276575?6?2#"'&'47623 n*D¦5&\!  ^^$ #Z /þ• 8D >3>O7(d/  )t /&  ¬¬ +D52# ?-&8(2 ÿœCGN!'&'6'#/#&'5473#"'#&'5476;2+3#"'#&'5476;2+\ '2“)0!  y  Ö!  y!  2 %-;+  þ  þ*ÿÿÿëmG$CG)02#!"'&'476;#"'&'4763!#"'&=!32'&+}+þÙ"  !  × ÿ«gg©V_ '—  —  3òIEÿÿ ;G% 8G)732+"'&'476;#"'&'4763!#"'&=!Ôd!  Ö#  !!  !Öÿd     —  3ÿsWG-3%3#"'&=!#"'&=32765&'4763!2"1+3#ïh þv f2 6! 0þÿŠd¯  KK  ¯':- +þþ½,ÿÿ &G(ÿèoGd2#7&'4?3232+&'&#2+"'&'47635"#"'&'476;6767'"'476;5"'&'4763\ %v-6! 8sU   XK" "a" "WX  Rs7 !6,v% G ’– !+ 1™-Ÿ Ë.    ›/: ©7™2 ,! –’ >ÿòU`327317131767654'&'&#"#"'&=47632632#"'"'547672327654'&'&+"'&'476ê*<2L    4No?+- ;X:SSI2  ? "P$$";  U )+  !X! !E.>N$ /N^0 'BB! $ (! CGQ32+"'&'476;&'476;2+75#"'&'476;2"1+32+"'&'476;—Ö!  y!  2 e!  Ö  e! 0!  y  F¹)  - ã¹*  +þ  C'Qv32+"'&'476;&'476;2+75#"'&'476;2"1+32+"'&'476;21013276575?6?2#"'&'476—Ö!  y!  2 e!  Ö  e! 0!  y  ø 8D >3>O7(F¹)  - ã¹*  +þ  Ã52# ?-&8(2 RGG732+"'&'476;#"'&'476;2+7&'4?32#32+&'&#º$ –#  !!  !–"  $²,d! >°TC !  n*R:2d     •™ !+ 2™-’'  ƒV= KG=7&'4763!2#32+"'&'476;#"'&'5476323276Î2 ! 0!  y  mp'L)% ‹X- +þ  þŸn6 ,  !ÿÿÿíoH0ÿÿEG+ÿÿÿòCU2CG;#32+"'&'476;&'4763!2"1+32+"'&'476;—Ö!  y!  2 ‚! 0!  y  ãþ  - +þ  ÿÿ G3ÿÿ!ÿò4U&ÿÿ*.G7DG1%+"'&'4?&'47637327&'476;2##23 n*D¦5&\!  ^^$ #Z /d/  )t /&  ¬¬ +TGDO27674'1'2#32#!"'&'476;5"'&'47635#"'&'4763!2+"223^Ya1w4)™!)"'&'4723#"'&'476;2+3#"'&'476;2+3#"'&5îþn 0  y  !Ö y  !f +  þ  þ¯  &2GG%#"'&/5&'476;2+3275#"'&'476;2"932+"'&'476;†-={*/ f" H E  f! +"  z  Ð&2#². ¯"&¯  ( þ  ÿênGJ"#27654'&+"33!27674'"#27654'&+"3#2?654'&#  €  J+  (J  € G  þ  þ.+  þ ÿäÿspGM%27654'&+"3#2?654'&+"#27654'&+"33!3276=6J  } @ }  J+ æ d  þ  þ  þ.K  ¯ÿù_G.:!2+32+"'&'476;##"'&5327654'1&+M Lk5  2Q!) Ô  "f .`Q>`G d* 6Jb6  ]  þÞ9@ÿëmG!IT2+"'&'4763"'&'476;232+"'&'4763"'&'476;2+327654'&+1 BY! ! Y! þE l5 2Q9Pš! (' #€ 4U?4ãþ 2   d) 6Jb5&     þ;@ G(55327674'&+";#";27654'&/532Âc  Ö"  !  és=)21Q9bvR@d  þ I1CI76 þå·9 B"ÿò6U@%#"'&'476;&'&#"#"'&=476327672#"'&'476323276ÒØ"  !Ö H(25-"  O?zOG^RvsE4  (Fw4ñ Z*  !T! !YOrBzLA2$%J#ÿéÿòzV7@7#32+"'&'4763&'476;2+3&?676#"'&"3254'¾: !  b!  2 _!   9J;W}<(F<]m@.Û|||fñ   - ŽyJ;|QjVH`EZÍÎ˾ÿý[G5@%##"'&'476;67&'476;2+32+"'&'476;=#"3¦`(G,O  ! =AkS9Pß  !  "–  !#pH ?$/Þ^:8 a9;\]2# þ  Þ¡*0ÿÿ*ÿð;ÂD3ÿò$#3632#"'&5&76763547632"327654'&üµe# >XlDFFDlŽB*@4‚+DÐF(&B#/E)&&+ô/2ACecDA`=[ÃF9 !  à('4N$('64((Tÿÿµ .?674'&2?6'6'&#"'475"'4;20'öx)dwP"8^C>=D¨¦6. {$%Q9ì ´20í22^ I(#^bÿÿöµ'2'#"'475"'43!#"'&5’9@YB=;CQ Pí*62.í22!  #ÿ¤6µ+735'2?5"'43!23#"'&=!"'&=úš ;CJ@1 8þ» dìÂ! Â222,í~!    !~ÿÿ!ÿð&ÂHÿëlµl!274'&'5;27674'&'727674'&+"5737674'&+1'1+"'654'&+"3&;274'7O9 NBG!  ˆˆ  !E P[ P E!  ˆˆ  !GAN0 2=J2n ?2 2? n2J=-IÿðÂF32?674'&#"#"'&=432632#"'#"'&=47632327674'&+"'4ÿ53>) / 8Iu9 #+ O3>O7((×;@ZA1 9BYB=×9BYB=;CXB¯52# ?-&8(2 þ¢{o 262,í*62.|o *62.í23114$µ63#"'476;5#"'&'476;7&5476;2+32+"'47'êtA !  tP p!  ˆˆ !  !vAN2í –? n 2MÿÿGµ-7472?5"'43!22'#"'475'#"'&52) ;CJ@1 9@YB=r K#Œ;' ß222,í*62.ìí[)ÿïmµ)%'#2+"'475'56;732+2+"'475#g>B_=;:A©SS©A99>_A@gdíí133-í/1ÂÂ12í133.íí3ÿÿ%¶035"'6722'#"'475#2'#"'475"'4Ô¯;@ZA1 9BYB=¯9BYB=;CXBQJI262,í*62.>>*62.í2311ÿÿ*ÿð.ÂR.ÿÿ*µ$'2'#"'475"'43!22'#"'47ˆ¹9BYB=;CvA1 9BYB=Pí*62.í222,í*62.ÿÿÿøÿ3;ÂSÿÿ6ÿð5ÂF>¶##"'&=!#"'&=#2'#"'47úX Ü X9@YB=Q  !!  ì*62.ÿÿÿ2Cµ\ÿÜÿ3|ˆ ?I#32765&'&'32+32+"'&'476;5#"'&5476;5#"'&'476;"35ž@@n +"l*vG7SC\,:!  ®"  ,wF5SC^*!  t¤A%b@^ðf 4&dO=Vg>1s  sM9PkB5b þÖ: l ðÿÿCµ[ÿ¤9µ*%3#"'&=!"'&7635"'547325"'54732Û^ þŒA19BYB=·9BYB=d~!  2,í*12.ìí*02.1ÿÿ(¶0327675"'56722'#"'475#"'&="'4ÒK. 9@Z@1 9@YB= 8 ;CXBQU' T*62,í*62.)`U2311ÿôeµ6!276/56?&'#"3#5765&+"3#5?4'#""3"@ B-G# y @A@ y$H-A! @2' í!12,íí 22# íí%12*í 2ÿôÿ¤eµ<%56?&'#"3#5765&+"3#5?4'#""3!276=< B-G# y @A@ y$H-A! @Å dí!12,íí 22# íí%12*í 2  !~Dµ)!23+"'475#"'&527674'#&#B=Q³ !%¨B=X  vAOµ2.9{m2.í  !Ó#ÿ÷a¶$;32+"'475"'4;22?6'4'#&#%"'6?62+"'4?™5‚%|¨C>=DXA=DXABoC?  'Cˆ23+  !M=W@\\>B !(   ÿôÿðdÂ'847632#"'&5#2+"'475'4%"3327654'&ÈN5Mƒ2Z0Fv5B7?JA2'B>C(  [AX:f6$p4EŽ; L)89222.í331+O\U.jQf4$µ(17&'&54767322+"'475#+"'&'476;7&3ÞL ‹¨A<9BXC>JBv  !"ì| u§ 1)s2-í22209F2 í ÿÿ!ÿð&²&HC6úÿÿ!ÿð&U&Hj÷Ç ÿGþp\!74'5&+"323+"'&'5476;#"'&?35#"'#&'5476;32#6;2+"'&'5476;2765˜*53!  p 4 3!  t ;Mg0F3E'"  $Fß(.‡  X z g=H@ì]5' 4bÿÿö¥,'2'#"'475"'43!#"'&5#"/4?632’9@YB=;CQ  …  … Pí*62.í22!  'p o ,ÿð,Â873274#676323276=4/"&#"2327674/&#"#"šÂ9B¾ *JA) '  9W‚H6>BoC?  'Cˆ23+  !M=W@\\>B !(   ÿÿIÿðÂVÿÿ>oLÿÿ>U&ójÇÿÿuÿ3èoMÿãÿþ޵<H'&'54735'#"'&=47;2?5"'51=43223#'2?6754'&#ÊnB6lr K#/) ;C(@1 k%.RBG0.ìí[)5:' ß/22+9 Fp^#ÿãÿÿo¶=I!"'54735#2'#"'54735"'54#35"'&7;7223##'2?6754'&#=DXA?&(?%1k-8QF:!  ®!  !  t>I vG7F' %o$ %=!61#1 D!R5«  º -5O=V^<' " 8¼)547632!32+"'&'476;#"'&'4763Ôþœd!  Ö#  !!  !G3  —þ     bÿÿö547672'2'#"'475"'43’ ó9@YB=;Cµ  !í*62.í22 8G)732+"'&'476;#"'&'4763!#"'&=!Ôd!  Ö#  !!  !Öÿd     —  3Oÿÿöµ.7#"'&54;5"'43!#"'&='32#2'#"'47Ÿ' )';CQ 4)49@YB=± (P22!  P #M*62. 8G)732+"'&'476;#"'&'4763!#"'&=!Ôd!  Ö#  !!  !Öÿd     —  3bÿÿöµ'2'#"'475"'43!#"'&5’9@YB=;CQ Pí*62.í22!  ÿèoGd2#7&'4?3232+&'&#2+"'&'47635"#"'&'476;6767'"'476;5"'&'4763\ %v-6! 8sU   XK" "a" "WX  Rs7 !6,v% G ’– !+ 1™-Ÿ Ë.    ›/: ©7™2 ,! –’ ÿëlµi!#"'47675+"'&'4767'"'&'476;25'#'&'476;7327&5476;2#6+"'47'#OG9 NBG!  ˆˆ  !E P[ P E!  ˆˆ  !GAN02=J2n ?2 2? n2J=->ÿòU`327317131767654'&'&#"#"'&=47632632#"'"'547672327654'&'&+"'&'476ê*<2L    4No?+- ;X:SSI2  ? "P$$";  U )+  !X! !E.>N$ /N^0 'BB! $ (! IÿðÂF32?674'&#"#"'&=432632#"'#"'&=47632327674'&+"'4ÿ53>) / 8Iu9 #+ O°TC !  n*R:2d     •™ !+ 2™-’'  ƒV=4$µ63#"'476;5#"'&'476;7&5476;2+32+"'47'êtA !  tP p!  ˆˆ !  !vAN2í –? n 2MRGG732+"'&'476;#"'&'476;2+7&'4?32#32+&'&#º$ –#  !!  !–"  $²,d! >°TC !  n*R:2d     •™ !+ 2™-’'  ƒV=4$µ63#"'476;5#"'&'476;7&5476;2+32+"'47'êtA !  tP p!  ˆˆ !  !vAN2í –? n 2MRGG732+"'&'476;#"'&'476;2+7&'4?32#32+&'&#º$ –#  !!  !–"  $²,d! >°TC !  n*R:2d     •™ !+ 2™-’'  ƒV=4$µ63#"'476;5#"'&'476;7&5476;2+32+"'47'êtA !  tP p!  ˆˆ !  !vAN2í –? n 2MRGG732+"'&'476;#"'&'476;2+7&'4?32#32+&'&#º$ –#  !!  !–"  $²,d! >°TC !  n*R:2d     •™ !+ 2™-’'  ƒV=4$µ63#"'476;5#"'&'476;7&5476;2+32+"'47'êtA !  tP p!  ˆˆ !  !vAN2í –? n 2MÿÿEG+ÿÿ9¶035"'6722'#"'475#2'#"'475"'4À×;@ZA1 9BYB=×9BYB=;CXBQJI262,í*62.>>*62.í2311ÿÿEG+ÿÿ9¶035"'6722'#"'475#2'#"'475"'4À×;@ZA1 9BYB=×9BYB=;CXBQJI262,í*62.>>*62.í2311CG;#32+"'&'476;&'4763!2"1+32+"'&'476;—Ö!  y!  2 ‚! 0!  y  ãþ  - +þ  ÿÿ9µ$'2'#"'475"'43!22'#"'47—×9BYB=;C”A1 9BYB=Pí*62.í222,í*62.ÿÿ!ÿò4U&ÿÿ6ÿð5ÂFÿÿ!ÿò4U&ÿÿ6ÿð5ÂFÿÿ*.G7>¶##"'&=!#"'&=#2'#"'47úX Ü X9@YB=Q  !!  ì*62.CG6%32+"'&'476;5'"'4?327&'476;2'#^A!  æ!  !A¥>)Y! &_^' !\!  õ‘  ‘î2( !ˆˆ" ! Xµ*%7#"'&'476;2+##"'&'476;2+.k !  ‡!  §h§!  „!  z×  þ¯Q  CG6%32+"'&'476;5'"'4?327&'476;2'#^A!  æ!  !A¥>)Y! &_^' !\!  õ‘  ‘î2( !ˆˆ" ! Xµ*%7#"'&'476;2+##"'&'476;2+.k !  ‡!  §h§!  „!  z×  þ¯Q  ÿÿ NG;ÿÿCµ[ÿsRG>)"'&'4723#"'&'476;2+3#"'&'476;2+3#"'&5îþn 0  y  !Ö y  !f +  þ  þ¯  ÿ¤Aµ*%3#"'&=!"'&7635"'547325"'54732ã^ þ}A19BYB=Æ9BYB=d~!  2,í*12.ìí*02.&2GG%#"'&/5&'476;2+3275#"'&'476;2"932+"'&'476;†-={*/ f" H E  f! +"  z  Ð&2#². ¯"&¯  ( þ  1ÿÿ(¶0327675"'56722'#"'475#"'&="'4ÒK. 9@Z@1 9@YB= 8 ;CXBQU' T*62,í*62.)`U2311&2GG%#"'&/5&'476;2+3275#"'&'476;2"932+"'&'476;†-={*/ f" H E  f! +"  z  Ð&2#². ¯"&¯  ( þ  1ÿÿ(¶0327675"'56722'#"'475#"'&="'4ÒK. 9@Z@1 9@YB= 8 ;CXBQU' T*62,í*62.)`U2311&2GG%#"'&/5&'476;2+3275#"'&'476;2"932+"'&'476;†-={*/ f" H E  f! +"  z  Ð&2#². ¯"&¯  ( þ  1ÿÿ(¶0327675"'56722'#"'475#"'&="'4ÒK. 9@Z@1 9@YB= 8 ;CXBQU' T*62,í*62.)`U2311ÿÿ!ÿò4U&ÿÿ6ÿð5ÂFÿÿ!ÿò4U&ÿÿ6ÿð5ÂFÿÿSG,ÿèo'd‰2#7&'4?3232+&'&#2+"'&'47635"#"'&'476;6767'"'476;5"'&'4763'21013276575?6?2#"'&'476\ %v-6! 8sU   XK" "a" "WX  Rs7 !6,v% \ 8D >3>O7(G ’– !+ 1™-Ÿ Ë.    ›/: ©7™2 ,! –’ à52# ?-&8(2 ÿël•iŽ!#"'47675+"'&'4767'"'&'476;25'#'&'476;7327&5476;2#6+"'47'#21013276575?6?2#"'&'476OG9 NBG!  ˆˆ  !E P[ P E!  ˆˆ  !GAN0º 8D >3>O7(2=J2n ?2 2? n2J=-•52# ?-&8(2 RGG732+"'&'476;#"'&'476;2+7&'4?32#32+&'&#º$ –#  !!  !–"  $²,d! >°TC !  n*R:2d     •™ !+ 2™-’'  ƒV=4$µ63#"'476;5#"'&'476;7&5476;2+32+"'47'êtA !  tP p!  ˆˆ !  !vAN2í –? n 2MÿÿEG+ÿÿ9¶035"'6722'#"'475#2'#"'475"'4À×;@ZA1 9BYB=×9BYB=;CXBQJI262,í*62.>>*62.í2311&2GG%#"'&/5&'476;2+3275#"'&'476;2"932+"'&'476;†-={*/ f" H E  f! +"  z  Ð&2#². ¯"&¯  ( þ  1ÿÿ(¶0327675"'56722'#"'475#"'&="'4ÒK. 9@Z@1 9@YB= 8 ;CXBQU' T*62,í*62.)`U2311ÿÿÿëm'&$ xÿÿ*ÿð;•&D æÿÿÿëmç&$jYÿÿ*ÿð;U&DjÇÿìfGKN7#"'&'4763!#"'&=#3672#"/#3547632!"'&5476;5##"'4763755s!  · ~/ )“ þ£-  ](9_A Ý@d ¥  A5 N ,   {& ::)12ŸÔÔÿóÿðdÂAMZ%#2327632#"/#"'#"'&54767676354/""'&5476326325&#"273&'&'"1cû*&) 3N2) 3;g..;L<G )I/B24eX; * ®'"$ÿÿ &'&( îxÿÿ!ÿð&•&H øæ"ÿò6U@%#"'&'476;&'&#"#"'&=476327672#"'&'476323276ÒØ"  !Ö H(25-"  O?zOG^RvsE4  (Fw4ñ Z*  !T! !YOrBzLA2$%J#,ÿð,Â8%#"'43&'&#"#"'&=47632632"#"'&'4763232¾Â9B¾ *JA) ' 9W‚H6>BoC?  'Cˆ23+  !M=W@\\>B !(   "ÿò6ç@P`%#"'&'476;&'&#"#"'&=476327672#"'&'4763232762#"'&547632#"'&5476ÒØ"  !Ö H(25-"  O?zOG^RvsE4  (Fw4þô& $ ß& $ ñ Z*  !T! !YOrBzLA2$%J#$# $ $# $ $,ÿð,U8HX%#"'43&'&#"#"'&=47632632"#"'&'47632322#"'&547632#"'&5476¾Â9B¾ *JA) ' 9W‚H6>BoC?  'CˆÜ& $ ß& $ 23+  !M=W@\\>B !(   # $ $# $ $ÿèoçdt„2#7&'4?3232+&'&#2+"'&'47635"#"'&'476;6767'"'476;5"'&'4763'2#"'&547632#"'&5476\ %v-6! 8sU   XK" "a" "WX  Rs7 !6,v% 7& $ ß& $ G ’– !+ 1™-Ÿ Ë.    ›/: ©7™2 ,! –’  # $ $# $ $ÿëlUiy‰!#"'47675+"'&'4767'"'&'476;25'#'&'476;7327&5476;2#6+"'47'#2#"'&547632#"'&5476OG9 NBG!  ˆˆ  !E P[ P E!  ˆˆ  !GAN0–& $ ß& $ 2=J2n ?2 2? n2J=-U# $ $# $ $>ÿòç`p€327317131767654'&'&#"#"'&=47632632#"'"'547672327654'&'&+"'&'4762#"'&547632#"'&5476ê*<2L    4No?+- ;X:SSI2  ? "P$$";  & $ ß& $ U )+  !X! !E.>N$ /N^0 'BB! $ (! ’# $ $# $ $IÿðUFVf32?674'&#"#"'&=432632#"'#"'&=47632327674'&+"'42#"'&547632#"'&5476ÿ53>) / 8Iu9 #+ O# $ $# $ $>ÿòU`327317131767654'&'&#"#"'&=47632632#"'"'547672327654'&'&+"'&'476ê*<2L    4No?+- ;X:SSI2  ? "P$$";  U )+  !X! !E.>N$ /N^0 'BB! $ (! IÿðÂF32?674'&#"#"'&=432632#"'#"'&=47632327674'&+"'4ÿ53>) / 8Iu9 #+ OBoC?  'CˆÜ& $ ß& $ 23+  !M=W@\\>B !(   # $ $# $ $D¿1@%+"'&'4?&'47637327&'476;2##%32#"'&'423 n*D¦5&\!  ^^$ #Z /þ¨ô ) ô d/  )t /&  ¬¬ +Ü " %ÿÿÿ2C-&\q»Dç1AQ%+"'&'4?&'47637327&'476;2##2#"'&547632#"'&547623 n*D¦5&\!  ^^$ #Z /þº& $ ß& $ d/  )t /&  ¬¬ +# $ $# $ $ÿÿÿ2CU&\jÇD51F[%+"'&'4?&'47637327&'476;2###"/471?632#"/471?63223 n*D¦5&\!  ^^$ #Z /çf f f  f  d/  )t /&  ¬¬ + n nn nÿÿÿ2C£&\í&2çGWg%#"'&/5&'476;2+3275#"'&'476;2"932+"'&'476;2#"'&547632#"'&5476†-={*/ f" H E  f! +"  z  Â& $ ß& $ Ð&2#². ¯"&¯  ( þ  ƒ# $ $# $ $1ÿÿ(U0@P327675"'56722'#"'475#"'&="'42#"'&547632#"'&5476ÒK. 9@Z@1 9@YB= 8 ;CXBK& $ ß& $ QU' T*62,í*62.)`U2311# $ $# $ $ÿëmç!ITdt2+"'&'4763"'&'476;232+"'&'4763"'&'476;2+327654'&+2#"'&547632#"'&54761 BY! ! Y! þE l5 2Q9Pš! (' #€ 4U?41& $ ß& $ ãþ 2   d) 6Jb5&     þ;@Ì# $ $# $ $ÿ÷aU$;K[32+"'475"'4;22?6'4'#&#%"'6?62+"'4?2#"'&547632#"'&5476™5‚%|¨C>=DXAÿSo&LýHÿÿS&‘v Vÿÿ>~&±vÿüÆÿÿ ZE&.vÿÿ!;`&Nvÿ†¨ÿÿ ÿ`ZG&.ýJÿÿ!ÿ`;p&NýJÿÿ ÿˆZG&.qýfÿÿ!ÿˆ;p&Nqýfÿÿ!ÿ`;G&/#ýJÿÿ>ÿ`p&OýJÿÿÿ`;Í&/'#ýJq¢[ÿÿ>ÿ`è&O'ýJqÙvÿÿ!ÿˆ;G&/q#ýfÿÿ>ÿˆp&Oqýfÿÿ!ÿ;G&/ "ý ÿÿ>ÿp&O ý ÿÿÿíoE&0vÿÿÿÿío²&Pv*úÿÿÿíoõ&0ÿgÿÿÿíob&PÔÿÿÿíÿ`oH&0ýJÿÿÿíÿ`oÂ&PýJÿÿÿøPõ&1øgÿÿ;b&QýÔÿÿÿøÿ`PG&1ýJÿÿÿ`;Â&QÿýýJÿÿÿøÿˆPG&1qýfÿÿÿˆ;Â&QqÿýýfÿÿÿøÿPG&1 ý ÿÿÿ;Â&Q ÿüý ÿÿÿòC&—v;Wÿÿ*ÿð.€&·v;ÈÿÿÿòC¿&—j.1ÿÿ*ÿð.0&·j.¢ÿÿÿòCñ&Cÿó9ÿÿ*ÿð.b&CÿóªÿÿÿòCñ&v 9ÿÿ*ÿð.b&v ªÿÿ E&3vÿ¤ÿÿÿøÿ3;²&Sv(úÿÿ õ&3˜gÿÿÿøÿ3;b&SÔÿÿ kõ&5’gÿÿ6;b&U Ôÿÿ ÿ`kG&5ýJÿÿ6ÿ`;Á&UÿàýJÿÿ ÿ`kÍ&5'ýJq’[ÿÿ6ÿ`l:&U'ÿàýJq‘ÿÈÿÿ ÿˆkG&5qýfÿÿ6ÿˆ;Á&Uqÿàýfÿÿ>ÿòõ&6TgÿÿIÿðb&VNÔÿÿ>ÿRU&6 ý<ÿÿIÿPÂ&Vý:ÿÿ>ÿòç&ŠYÿÿIÿðX&ŠÊÿÿ>ÿòç&"YÿÿIÿðX&# Êÿÿ>ÿRõ&6' ý<TgÿÿIÿPb&V'ý:NÔÿÿ*.õ&7gÿÿ ÿðï&Wÿxaÿÿ*ÿ`.G&7ýJÿÿ ÿPO&Wÿÿý:ÿÿ*ÿˆ.G&7qýfÿÿ ÿxO&WqÿÿýVÿÿ*ÿ.G&7 ÿÿý ÿÿ ÿO&W ÿþýÿÿ ÿRNG&8jý<ÿÿ ÿS;µ&Xjÿåý=ÿÿ ÿENG&8ý:ÿÿ ÿF;µ&Xÿåý;ÿÿ ÿNG&8 ýÿÿ ÿ;µ&X ÿäýÿÿ ÿòNä&8&dv4,ÿÿ ÿó;R&X&øÒv,šÿÿ ÿòN¡&,jÿÿ ÿó;&-j„ÿÿÿëm&9rÿÿXo&Yßÿÿÿëÿ`mG&9ÿþýJÿÿÿ`Xµ&YÿÿýJÿÿÿöbE&:CÿóÿÿX²&ZCóúÿÿÿöbE&:v ÿÿX²&Zv úÿÿÿöbõ&:jgÿÿXb&ZjÔÿÿÿöbõ&:gÿÿXb&ZÔÿÿÿöÿ`bG&:ýJÿÿÿ`Xµ&ZýJÿÿ Nõ&;þgÿÿCb&[þÔÿÿ Nõ&;jþgÿÿCb&[jþÔÿÿCõ&<gÿÿÿ2Cb&\ÔÿÿID&= ŒÿÿU±&] ùÿÿIÿ`G&=ýJÿÿUÿ`µ&]ýJÿÿIÿˆG&=qýfÿÿUÿˆµ&]qýfÿÿ ÿˆEp&Kqýfÿÿÿðï&WjÿxaÿÿXÛ&Zÿÿÿ2CÛ&\ÿÿK;&A\ÿÿÿëÿ`mG&$ýJÿÿ*ÿP;Â&Dÿ²ý:ÿÿÿëm‘&$ÿʺÿÿ*ÿð;þ&Dø'ÿÿÿëm7&„vÿýÿÿ*ÿð;¨&¤vðÿÿÿëm7&„Cÿãÿÿ*ÿð;¨&¤Cÿéðÿÿÿëmƒ&„ÿð¬ÿÿ*ÿð;ô&¤ÿöÿÿÿëmô&„ÿðdÿÿ*ÿð;e&¤ÿöÕÿÿÿëÿ`mD&$'ýJ ÿÊŒÿÿ*ÿP;±&D'ÿ²ý: øùÿÿÿëmç&Ävÿæ/ÿÿ*ÿð;W&ÅvÿéŸÿÿÿëmê&ÄC2ÿÿ*ÿð;?&ÅC‡ÿÿÿëm&Äÿô>ÿÿ*ÿð;Ž&Åÿ÷·ÿÿÿëmì&Ä\ÿÿ*ÿð;\&ÅÌÿÿÿëÿ`m5&$'ýJ ÿʆÿÿ*ÿP;¢&D'ÿ²ý: øóÿÿ ÿ`&G&(ýJÿÿ!ÿP&Â&Hÿýý:ÿÿ &‘&(ºÿÿ!ÿð&þ&H÷'ÿÿ &&(rÿÿ!ÿð&o&H÷ßÿÿ &7&Œvÿÿ!ÿð&¨&¬vðÿÿ &7&ŒCÿëÿÿ!ÿð&¨&¬Cÿøðÿÿ &ƒ&Œÿø¬ÿÿ!ÿð&ô&¬ÿÿ &ô&Œÿødÿÿ!ÿð&e&¬Õÿÿ ÿ`&D&('ýJ Œÿÿ!ÿP&±&H'ÿýý: öùÿÿS‘&,ºÿÿ>þ&ó'ÿÿSÿ`G&,ýJÿÿ>ÿ`o&LýJÿÿÿRCU&2ý<ÿÿ*ÿP.Â&Rý:ÿÿÿòC‘&2ºÿÿ*ÿð.þ&R'ÿÿÿòC7&–v ÿÿ*ÿð.¨&¶v ðÿÿÿòC7&–Cÿóÿÿ*ÿð.¨&¶CÿóðÿÿÿòCƒ&–¬ÿÿ*ÿð.ô&¶ÿÿÿòCô&–dÿÿ*ÿð.e&¶ÕÿÿÿRCD&2'ý< Œÿÿ*ÿP.±&R'ý: ùÿÿÿòYI&]vÿÜÿÿ*ÿð[°&^vùøÿÿÿòYI&]C$ÿÿ*ÿð[®&^CöÿÿÿòYž&]Æÿÿ*ÿð[&^ -ÿÿÿòY&]ÿùÿÿ*ÿð[…&^üõÿÿÿRY˜&]ý<ÿÿ*ÿP[&^ý:ÿÿ ÿRNG&8ý<ÿÿ ÿS;µ&Xÿåý=ÿÿ ÿòN‘&8ºÿÿ ÿó;þ&Xû'ÿÿ ÿòL&jvÿí“ÿÿ ÿóÇ&kvãÿÿ ÿòC&jCŠÿÿ ÿó·&kCÿÿÿÿ ÿò†&j®ÿÿ ÿóî&käÿÿ ÿò&j ÿÿ ÿó–&kþÿÿ ÿR¹&jý<ÿÿ ÿS'&kÿåý=ÿÿCE&<Cÿôÿÿÿ2C²&\Cóúÿÿÿ`CG&<ýJÿÿþ“Cµ&\ÿ–ü}ÿÿC‘&<ºÿÿÿ2Cþ&\'ÿÿC&<rÿÿÿ2Co&\ßÿÿ*å.I*å.I%!"'&'4763!2ìþ€!  €!  å  ÿãåuI%!"'&'4763!23ýò!  !  å  ÿÿÿãåuItù\ÅZ #"/}EZÏæ™\eZ3"/7á„Zæ“ÿb_†73#"/7Û„ †þôÿÿù\ÅZvb\öZ #"/##"/®EDEZÏæÏæW\ëZ3"/7%3"/7Ÿ„ „ZæÏæWÿˆë†73"/7%3"/7Ÿ„ „†æÏæÿÿb\öZz^ÿ¤ún'#"'&5#"'&'476;54763232#^ Z!  Z Y!  Qþ•  k w"  w ^ÿ¤ún=32+#"'&=#"'&'476;5#"'&'476;54763232#^Y!  !Y Z  ZZ!  Z Y!  Q w  w  w"  w –šÁÅ2#"'&5476+M,;)2I-:(Å<(3I,;(3I-ÿñ?u#5#"'&5476;23#"'&5476;23#"'&5476;2m($)% ¸($)% ¸($)% $ (% )$ (% )$ (% )Xj.>Naq"'&547%72%2#"'&5476"327654'&2#"'&5476"327654'&%2#"'&5476"327654'&Õþ“mþ‚>"2$=#3$$ # T>"2$=#3$$ # >"2=#3$$ # yv u ç3%;#3$=#: $ %þ¸3%;#3$=#: $ %:3%;# 3$=#: $ %“K_o3#"/7Û„ oþôSKßo3#"/7'3#"/7[„ {„ oþôõþôK?o3#"/?3#"/7%3#"/7 „ õ„ þå„ oþôõþôõþôÿÿ“K_oGƒòÀ@ÿÿSKßoG„2À@ÿÿK?oG…RÀ@!VŸ7#"/7632¯— øø Ú  ¹¸   ;Ÿ%'&'4?632#"/47®— ÷÷ Ù  ¹¸   _ÿñú~#4F"/'473632#"'&5476;2 "/'47632#"'&5476;2ø-' +2 H)#)% Ä-' +2 H)#)%  þ×.' )!3*ýÃ$'% )þ×.' )!3*ýÃ$'% )fDô #"'&54?67632þQ¯Žþé  øÿg±o3%09"'&=4?&/5476323\% %@( 5#), ! 01—¦ & 5#+¤8$¤@)#$ .-§ÿg`o5#"'&14767676154'01'&'476716154/&/47632` 5#), !01% % @(ì¤8 $¤@)#$ .-¦ & 5#ÿÿÿñ^~'á"œÿÿÿûÿñi~'ÿ"dÿÿ1ÿR.GGx_À@¨î°}##"'&=47632276=4/"°/ 55 // 55 /Å-.-.Ò9W2""2W9W2""2RCN9CN9÷šs+"'4;5#575u$%$,O*+£’Osæ ""!7òæ”ë¯q-632#"'&54?23274/#""'5'532#ø%E&"&QV!   0V("'¸ -= :#-7$*$   A5­  Ÿî«},672#"'&547632"/"2?4'&#"ä$,;# !;N#1>V5 =( / &  (À'5!)6#$?2FO>K 5o@$%)§ö°s##"'&=!#"'&547h„ a  0! <=þÞ ¨î°},<#"'&547&'47632'"132701654'&"32?54'&u:>(R";56 )C&*! (# &% -!º$:B89%#0;!1"1]   ¥  £î¬}/"'&547632#"/476322767&/"1327j$,;# !;L#/>U5 =( %,  $«'5!)6#$?/IQ;L 5o; )'$ÿÿ¨ÿR°á“þdÿÿ¦ÿ[²â{þdÿÿ•ÿ[­átþdÿÿÿRºáuþdÿÿÿ[š×—þdÿÿ”ÿO¯Õ˜þdÿÿŸÿR«á™þdÿÿ§ÿZ°×šþdÿÿ¨ÿR°á›þdÿÿ£ÿR¬áœþd &GE5#"'&'4763!#"'&=!32+32+32+"'&'476;5#"'4;5#"'43^!  × ÿ’’““d!  ×"  999g| —  3|*i  i*!&VM32+32+36721!"'&'471;6?67#"'4;'#"'4;&547632#"/&#"òo` WTË+( Tþ¿ 0 li ^O F,;G4"  (0g*45-'N  & +*0Z/+ ! # ÿÿCá)O%47632#'#54763236?65'#"'&=&'5/&'"'1+#"/536Þ ! %,Jð ! Œ&  3 !  "f ! Ê]5<‘! þã:(%ê!  † ³E!  E#þ¶! ®-/ÿòUQ32+32+32767632#"'&'#"'4;5#"'4;676323632#"/&/&#"­ÃǬ§S=$  ->g„L+ W>P<> ! &0M'g*X #$2]5I*yD1  T! ) L7&V;&'47632#"/&#"36721!"'&'471;6?654/F,;G4"  (0Ë+( Tþ¿ 0 W@Z/+ ! # IO ;9-'N  & $8NÿòdG0>Oc2+##"'&=47632275#"'&'476;32+"/5472#"'&54736"327654/#'#1!  !jc„; M !  ~ƒŠooN, '* '   G þGÈcB   c þ±Oþ± ( (Ù/6-7+ ! $ÿßÜlGA32+"'4;5##"'5!#"'52+"'475&'4;732+"'435#”./v-.#%#"%$À./?-$.I54J- .?./8þÙ$%%$Ù1..zz..1OŠ$%% Ú$$Ú!%%$ˆ~ÿÿ;GQÿÿ;GGQG@Àÿÿ ZG.ÿÿÿëmg‡ÿÞÿìy~?Ug%327654/"1#"/476321#"'&5476323274/&'&'47;32+"'4;5"/4?#"'&547672Ý+(  4#(K#0?)&If 4[(!þ±9*+µ+,90×þü   â !  !4 1 =3"&  4þ¼!""!í  Lþ= à ÿÎÿìy~%ew3632!567654'&#""/4?632327654/"1#"/476321#"'&5476323274/&'&'47;#"'&5476726m!þè­ #$ (8J%!;+(  4#(K#0?)&If 4[(!þû   ; +8D  !#6%(&#³ !  !4 1 =3"&  4/þ= à ÿÞÿç‚~.DV632#"'&54?23274'01#'""/532#32+"'4;5"/4?#"'&547672Ë%E&"&QV!  4V("'¸ þF9*+µ+,90×þü   )= :#-7$*$   A5 ­  Uþ¼!""!í  Lþ= à ÿÎÿç‚~%Tf3632!567654'&#""/4?632632#"'&54?23274'01#'""/532#'#"'&5476726m!þè­ #$ (8J%!)%E&"&QV!  4V("'¸ gþü   ; +8D  !#6%(&#l= :#-7$*$   A5 ­  çþ= à ÿÕÿç‚};j|327654/"#"/47632#"'&54?23274'&'&'&'47632#"'&54?23274'01#'""/532#'#"'&547672V+(  4#(K#0?)&If 3[(!%E&"&QV!  4V("'¸ gþü   ä !  !41 =3"&  4º= :#-7$*$   A5 ­  çþ= à ÿßÿç‚sFX+"'4;5#575632#"'&54?23274'01#'""/532#'#"'&547672Å$%$,O*+£’O˜%E&"&QV!  4V("'¸ gþü   sæ ""!7òæd= :#-7$*$   A5 ­  çþ= à ÿÞÿô[~-CU%672#"'&547632"/"27654'&#"32+"'4;5"/4?#"'&547672”$,;# !;N#1>V5 =( / &  (þê9*+µ+,90×þü   Æ'5!)6#$?2FO>K 5o@$ %)ýþ¼!""!í  Lþ= à ÿÜÿô[q-L[m632#"'&54?23274/#""'5'532#672#"'&547632"/"27654'&#"#"'&547672@%E&"&QV!  4V("'¸ ß$,;# !;N#1>V5 =( / &  (=þü   -= :#-7$*$   A5­  þ™'5!)6#$?2FO>K 5o@$ %)þ= à ÿÞÿïn~'7M_%#"'&547&'47632'"327654'&"327654'&32+"'4;5"/4?#"'&5476723:>(R";56 )C&*! (# &% -!þ‹9*+µ+,90×þü   »$:B89%#0;!1#1]  ¥   èþ¼!""!í  Lþ= à ÿÕÿïn};Scs…327654/"#"/47632#"'&54?23274'&'&'&'47#"'&547&'47632'"327654'&"327654'&#"'&547672V+(  4#(K#0?)&If 3[(!ç:>(R";56 )C&*! (# &% -!"þü   ä !  !41 =3"&  4þØ$:B89%#0;!1#1]  ¥   zþ= à ÿÜÿïnq-EUew632#"'&54?23274/#""'5'532##"'&547&'47632'"327654'&"327654'&#"'&547672@%E&"&QV!  4V("'¸ ~:>(R";56 )C&*! (# &% -!"þü   -= :#-7$*$   A5­  þŽ$:B89%#0;!1#1]  ¥   zþ= à ÿïns+;K]##"'&=!#"'&547#"'&547&'47632'"327654'&"327654'&#"'&547672È„ a  Ã:>(R";56 )C&*! (# &% -!"þü   0! <=þÞ n$:B89%#0;!1#1]  ¥   zþ= à ÿÞ3ä~'32+"'4;5"/4?#"'&547672†9*+µ+,90×þü   ~þ¼!""!í  Lþ= à v:µ32#"'-632.Ø14Ø7  þÓ-   C+& ™” Î*#"'#&'47##"/#"' ”š ,( 8  .þÒ   8Ø44vHµ'&'4?672 #"/47'"'47!2w„  -þÓ   ¡14‰35D  ”™ +&+'Î*547276323 &547673632** š” Ø24Ø8   þÒ.  fÿð N!2'&7632#"'&547632&'&#"'&'"327654'5&„ ”^K[4Hk;)O5H*+c ·B7!G 6jVz‹=#O7Mo;& M å3!C9D Sÿ·); #"'&'476?2#"'&'54?6323276=4'&#"ùþÀ  A L4WW4ML4WW4Mþ³= F= FbýY' ¦' þí_Q77P_Q77P‰mq*L)7mq*L)IG33%!øK÷þ[ˆGý¹dAÿÿIGGËG@À-ÿŸŸ)!!76;2!"'54?&=47!2+"'±þô ˜**5þ}4 Ÿ 5€2));ï þóO34}2, #*1}31*æ.J!2#!"'&'476l€  þ€"  J  ÿÿSÿ· ÿÄ‚¹32# #"'47±!§Ô35ôb'35Qyá+'ýa7+'3|4ô 22?'&#"!#"1;2#"'#"'&5476326;2„T-.&"T%,.&#$  M;;Mj&N#.N<úÿ8X!##ú^údÈþpÈÿ8X^!##ÈÈÈ^dþ>Èÿ8X!##ÈÈÈÈþpÿ8^^##5^dú^ýÚÂdÿ8^##5^dúý¨Èÿ8^##5ÈÈ^ýÚÂdÿ8##5ÈÈý¨ÈúúX 733údúú&þ>dúÈX 733údúÈXþpÈÈúX 733ÈÈÈú&þ>dÈÈX 733ÈÈÈÈXþpÈú^ %!533^þ¢údúdÂÈ^ %!533^þ¢údÈÈú %!533þpÈÈúdÂÈ %!533þpÈÈÈÈúÿ8X 33#údúúÈèþ>dþ>úÿ8X 33#údúúÈèþpÈþpÈÿ8X 7#33##ú2ÈÈúdú&þ>dþ>Èÿ8X 33##údúÈÈ^Âþ>dþ>&Èÿ8X %#33ÈÈÈúþ>èþ>dÈÿ8X %##33^d2ÈÈÈþpXþpÈÈÿ8X 3##33^úÈÈ2dÈþpXÈÿ8X 33#ÈÈÈÈÈèþpÈþpÿ8^ ##53^dúú üÂdÂÿ8^ ##53^dúú üÈÿ8 %##533^dúÈÈúþ>ÂdÂýÚÿ8 3##533^2ÈÈúd^ýÚÂdÂÿ8 ##53ÈÈÈ üÂdÂÿ8 7#533##úúÈÈ2dÈÈý¨þpÿ8 33##5úd2ÈÈþpý¨Èÿ8 ##53ÈÈÈ üÈÿ8X^!###Xúdú^dþ>Âÿ8X ###5!Xúdú^^dþ>È2ÿ8X 35!###ú^údú^2ÈþpÂÿ8X!###XúdúÈþpÿ8X^!###XÈÈÈ^dþ>Âÿ8X %##5!3ÈÈÈúþ>È2dÿ8X 7#535!##ÈÈÈÈÈúd2Èþpÿ8X!###XÈÈÈÈþpúX %!5333Xý¨údúúdÂþ>ÈX %#!5333Xúþ¢údúú2Èþ>ÈX =333!5údúþ¢údÂþpÈ2ÈX %!5333Xý¨údúÈÈþpúX 33!5ÈÈÈý¨^Âþ>ddÈX 3#!533ÈÈþpÈÈ^d2ÈÈX 33!5#5ÈÈÈþpÈ^ÂþpÈ2dÈX %!5333Xý¨ÈÈÈÈÈþpÿ8X 7#5333##úúúdúúdúdÂþ>dþ>ÿ8X 7#5333##úúúdúúdÈÈþ>dþ>ÿ8X 7#5333##úúúdúúdúdÂþpÈþpÿ8X 7#5333##úúúdúúdÈÈþpÈþpÿ8X 7#5333##úúÈÈÈúdúdÂþ>dþ>ÿ8X 7#5333##ÈÈúdúÈÈúdÂþ>dþ>ÿ8X 7#5333##ÈÈÈÈÈÈÈúdÂþ>dþ>ÿ8X 7#5333###úúÈÈÈÈ2dÈÈþ>d2þpÿ8X %##5#5333^d2ÈÈÈÈÈþp2dÂþpÈÿ8X 333###5úd2ÈÈÈÈþp2dþ>Èÿ8X 3###53533^úÈÈÈÈ2dÈþpÂd2ÿ8X 7#5333##úúÈÈÈúdÈÈþpÈþpÿ8X 33###5údúÈÈÈþpÈþpÈÿ8X 7#5333##ÈÈÈÈÈÈÈÈÈþ>dþ>ÿ8X %##5333ÈÈÈÈÈÈþpÂdÂþpÈÿ8X 7#5333##ÈÈÈÈÈÈÈÈÈþpÈþpúX^%#53#53Xúúþ¢úúúdddÈX%#53#53Xúúþ¢úúÈÈÈÈæÿ8r ##rŒŒŒ þ>ÂýÚþ>´ÿ8¤ ##¤ððð þ>ÂýÚþ>–XÂ5!!!!Xý¨Xý¨úd,d–ÿ8 ###Âddd üèüèúÿ8X 3##!^úúd^^ddþ¢Šd–ÿ8X^ 7#!##úd–dúþ>&dþ>–ÿ8X #!#3úd–dú^ýÚŠdÈþ¢Âdÿ8^ #5!##53úú^dúú^dýv^dÿ8Â^ %###5!#^dd–Âdúþ>ÂdýÚÿ8 !5!##53#^þ¢ÂdÈ–úd^dýv^dþ>ú–X %3!33#^úþ¢dúúúdŠþ¢d–úX 333!3údd–þ>d^Âþ>d&––X  7!!33#3ú^þ>dÈ–údúdŠþ¢d–^ 75#533!5úúúdþ¢údd^ývdú 3!533^dþ>–d^ÂýÚdÂþ>–  %3!573#5^dþ>–dúú&ývdÈ^þ>dúÿ8X 3#3##3^úúúúddÂdddþ¢è–ÿ8X  3##33–dd,dd– üÂþ>èþ>d–ÿ8X  3#3###33–ddÈú–dúúd– üÂdþ¢&Âþ¢ÿ8^ 3##535#5úddúúúÂ^ü^dddÿ8  ##533#ÂdÈ––dd üèýÚdÂüÿ8  ###57#533Âddd–úú–d üèýÚþ>^ddd^ÿ8X !!##5!Xý¨^dúXÂdÈþ¢^ddÿ8X^ %####5!Âddd–Xúþ>Âþ>Âddÿ8X !!3####5Xý¨^ú–ddd–Âdddþ¢Âþ>^d–X  =!3!533Xúúý¨úd–dd,dd^úX 3!53333–ý¨–ddd^ddÂþ>–X  =!'33!#533Xúd–þ¢ú–d–ddÈÂþ¢dd^ÿ8X #5333#3###53úúúdúúúúdúú^d^þ¢dddþ¢^dÿ8X 7#533##33–––dd,dd–údÂüÂþ>èþ>dÿ8X  33!#5333####5^d–þ¢ú–ddú–ddd–^Âþ¢dd^ýÚdþ¢Âþ>^dúÿ8X^3#"#476ôddod€4^dJ(þÔ,¬7ÿÿÿ8^^GFXÀ@ÿÿú^ FXXÀÿÿúúX GFX@ÀÿÕÿƒ:+XVý¨®è4üÿÿÿÕÿƒ:GJXÀ@ÿÕÿƒ:  ' 7 gVþÿþÿVþäVV,þ&4¬þT4ÚÚ4þT¬4ú,^!!,þÔ^dú,^ #^d þ ôÿÿ,úX^M,ÿÿúÿ8^,Nþ È,!!,þÔÈÈ, #È þ ôÿÿ,ÈXQ,ÿÿÈÿ8,Rþ ÈX%!5!5!!,þÔ,,þÔúd2ÈÈÿ8 33#úd2È,ôþ þ ôÿÿÈXGUXÀ@ÿÿÈÿ8 GVX@À,X !!Xý¨ þ ÿ8Xÿµ!!Xý¨K}ÿ8X25!!Xý¨2úÿ8X¯5!!Xý¨¯þ‰ÿ8X,!!Xý¨,þ ÿ8X©!!Xý¨©ýÿ8X&!!Xý¨&ýÿ8X£!!Xý¨£ü•ÿ8X !!Xý¨ üÿ8  !! ýó üÿ8 !!Âþ> üÿ8w !!wþ‰ üÿ8, !!,þÔ üÿ8á 3#áá üÿ8– 3#–– üÿ8K 3#KK ü,ÿ8X !!,,þÔ üÿ8&î #'+/37;?CGKOSW[_cgkosw%3#'3#'3#%3#'3#'3#3#'3#'3#%3#'3#'3#3#'3#'3#%3#'3#'3#%3#'3#'3#%3#'3#'3#%3#'3#'3#%3#'3#'3#22È22È22ô22È22È22,22È22È22ô22È22È22,22È22È22ô22È22È22,22È22È22ô22È22È22,22È22È22ô22È22È22222222–22222ú22222–22222^22222–22222–22222–22222–22222–22222<ÿ8Xî #'+/37;?CGKOSW[_cgkosw{ƒ‡‹“—›Ÿ£§«¯³·»¿ÃÇËÏÓ×Ûßãçëï%3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#22d22d22d22d22ô22222d22d22d22d22ô22–22d22d22d22d22ô22222d22d22d22d22ô22–22d22d22d22d22ô22222d22d22d22d22ô22–22d22d22d22d22ô22222d22d22d22d22ô22–22d22d22d22d22ô22222d22d22d22d22ô22222222222222–22222222222ú22222222222–22222222222^22222222222–22222222222–22222222222–22222222222–22222222222–22222222222xÿ8X  #'+/37;?CGKOSW[_cgkosw{ƒ‡‹“—›Ÿ£§«¯³·»¿ÃÇËÏÓ×Ûßãçëïó÷ûÿ #'+/37;?CGKOSW[_cgkosw{ƒ‡‹“—›Ÿ£§«¯³·»¿ÃÇËÏÓ×Ûß%3#'3#'3#'3#'3#%3+3#'3#'3#'3#'3#%3#3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#3#'3#'3#'3#'3#%3#3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#22d22d22d22d22ô22222d22d22d22d22ô22d22d22d22d22d22ô22–22d22d22d22d22ô22d22d22d22d22d22ô22222d22d22d22d22ô22–22d22d22d22d22ô22222d22d22d22d22ô22–22d22d22d22d22ô22222d22d22d22d22ô22–22d22d22d22d22ô22222d22d22d22d22ô22–22d22d22d22d22ô22222d22d22d22d22ô22–22d22d22d22d22ô22222d22d22d22d22ô22–22d22d22d22d22ô22222d22d22d22d22ô22–22d22d22d22d22ô22222d22d22d22d22ô2222222222222222222222222222222222222d22222222222222222222222,22222222222d22222222222d22222222222d22222222222d22222222222d22222222222d22222222222d22222222222d22222222222d22222222222d22222222222d22222222222d22222222222d22222222222d22222222222£X !!Xý¨ } ÿ8X 3# KK ü2&ô3!2ôôþ 2&ô7!!!ŠDþ¼XôXDþdôþ 2&ô 753!!!μÿDþ¼Xôœ¼¼DDþdôþ 2&ô 3!!5%!5!!52ôþdDþ¼Dþ¼Dôþ 00X1þï332&ô )!3##!3#&þ ôþí00X133ôþdDþ¼Dþ¼D 2&ô #'3!%#3#3#37#35#3#3735'35352ôþ•111111Š222222X11111ôþ ‹3D1X000¹1à3»00‰11þï332&ô 3!%3'35'#352ôþd~~úJúJÆ~ôþ Ö~úúJú~~ÿÿ2&ôGuXÀ@2&ô 3!%'3'7'#35''7'?5#2ôþÈJJJJJúJJ>JJJÒJôþ rJJúJþ¼JJ>JJJ>J¯©ú353¯úúú¯©ú735#53ý^^NúN^¬úú2&,3!2ô,þÔ2&,7!5!!†Hþ¸TôX|Ô,þÔ–Âô)!ÂþÔ,ô–Âô%#!!j|ÔþÔ,THþ¸Tô?,3!2ô2,þÔ?,7!7!!|Hþ¸w2ô2X|Ô,þÔ#5Æ)5ýî Æ#5Æ%'!›ooxýî X¾¾Xƨ°â)7°þø„⨰â%'!7GŸþø„<..<âT þ5 þ÷T'%nÁrþ5 oÞoþ÷Ǭ %¬å…… Ǭ %'73/¨å…6… yú %úþ…… ÿÿ#5ÆG€Æ@Àÿÿ#5ÆGÆ@Àÿÿ¨°âG‚â@Àÿÿ¨°âGƒâ@ÀÿÿTG„sÀ@ÿÿTG…sÀ@ÿÿǬ G†sÀ@ÿÿǬ G‡sÀ@^ß 7%^……þö#5! ,þ÷    þ÷#5%7' ,ŒŒŒŒþ÷  }ŒŒŒþ÷  þ÷!ÿþ7/2#"'&547672#"'&5476"327654'&.3.6/qNISNjtOHUNkZ7)C2BV7*A3l-6.6¨TMjrOJUMksNHTC1AY7)C2BT8+HÿíQ 77+ææããz{{QþÏþÍ4³´³³!ÿþ72#"'&5476"327654'&/qNISNjtOHUNkZ7)C2BV7*A3TMjrOJUMksNHTC1AY7)C2BT8+!ÿþ7 2#"'&54767'674'/qNISNjtOHUN B›B=TMjrOJUMksNHþg7UX_j(þæ5XR6!ÿþ72#"'&5476/qNISNjtOHUNTMjrOJUMksNH!ÿþ72#"'&547627654'&#/qNISNjtOHUNhV7*A3@TMjrOJUMksNHTþ’C2BT8+ÿÿ!ÿþ7GšXÀ@ÿÿ!ÿþ7‡š#5À@ÿÿ!ÿþ7‡š5ÿÝ@À!ÿþ72#"'&5476#5"3276)tPJTMjrOJPN$»R6+C2BX7(RLkuOISMkpOLþö¶B3BV7*D3!ÿþ72#"'&547635/qNISNjtOHUNO·Z6TMjrOJUMksNHþø´D&/ #,!"'&54763,uNFTKjULjtMFÿÿ.7G ZÀ@ÿ8X !!"327654'&Xý¨.8.6, ü4.7.4XX#1!"327654'&2#"'&5476Xþ×tPJTMjrOJPNjQ7,C2BX6)D3Xý¨5RLkuOISMkpOLTA3CV7*D2CV6)2&ô!&þ ôþ ÿÿ2&ôG¤XÀ@ÿÿ2&ô¤XôÀÿÿ2&ôG¤ô@À¬Š¬Š #"'&5476"27654'#&.B&6!)B&6"*,% (!Š7 (B&6!*B&<& *$% 2&ô%3#!,¢¢úôXDþdôþ ÿÿ2&ô©XôÀ2&ô7!!ŠDþdôXDþdôþ ÿÿ2&ô«XôÀ2&ô 3!#332ôþÚvvXvôþ œþ¼Dþ¼D#5Æ %2"'&147'!-  ooxýî Æ  k¾¾XÆ#5Æ%'!›o ýî X¾¾XÆÿÿ#5ÆG¯XÀ@2&ô 3!#!+32ôÎÎDÎvvôþ œÎvDvÿÿ2&ôG±ô@Àÿÿ2&ô±XôÀÿÿ2&ôG±XÀ@!ÿþ7#2#"'&547635327654'&'/qNISNjtOHUNI…P& H(/V7*B )TMjrOJUMksNHÜ‚GmQ'C2BU7 Ûÿÿ!ÿþ7Gµ@Àÿÿ!ÿþ7µXÀÿÿ!ÿþ7GµXÀ@X®0%'654?6#"'&54?À   Í‚ ¯ YÀ  Ì‚ °  Sÿì1<%54?6#"'&54?3'7#1"'&1!21Í‚ ¯ ÀËò ² Ì‚ °  ÀËþ4 $!ÿþ7/2#"/547672#"'&5476"327654'&- !  qNISNjtOHUNkZ7)C2BV7*A3< !  ØTMjrOJUMksNHTC1AY7)C2BT8+2&ô 35!%5!%5!2ôþ ôþ ôddÈddÈdd2&ô 53%#55!%5!^ÈþÔÈôþ ôdddddþ ddÈdd2&ô 35!'53%#=!2ôÈÈþÔÈôddÈdddddddd2&ô 53%#553%#55!^ÈþÔÈ,ÈþÔÈôdddddþÔdddddþÔdd2&ô 7#553!5!5úÈ,Èþ ôþ ddddddôddÈdd2&ô 53%#553%#=!^ÈþÔÈ,ÈþÔÈôdddddþ dddddddd2&ô %3+5373+53'!!^ÈÈdÈÈdÈÈdÈÈÈôþ dddÈddÈd2&ô 53%#553%#553%#5^ÈþÔÈ,ÈþÔÈ,ÈþÔÈdddddþÔdddddþÔddddd!ÿþ76FV2#"/5476#2#"/5476"'47632"/&/"2#"'&5476"327654'&| !  • !  4$+@) .7YqNISNjtOHUNkZ7)C2BV7*A3€ !   !  ñ2#/! + )‚TMjrOJUMksNHTC1AY7)C2BT8+!ÿþ76FV2#"/5476#2#"/547622?672#"'&542#"'&5476"327654'&| !  • !   .74$+@)†qNISNjtOHUNkZ7)C2BV7*A3€ !   !  ‡ + )2#/!TMjrOJUMksNHTC1AY7)C2BT8+!ÿþ7;K"32?54'&#"32?54'&"327654/"#"'&'&'2#"'&5476|" !  ª"  !  >XSXPXKXìXXuXSX*X“X*XáXSXSXSX6XBXKXBXiXKXSXjXáX“X*X*X8XhXLXÿëX X!X X X X!XXSX6X X!XÿíXÿøXX XX X>X*X XÿëXÿöX XXIXúXSX}XSXÿôX}X*XÿøX6X!X!XKX!X X>XuX!X>XÿíXX*XÿøX!X6XIX X XXXXXUX§XúX§X>XXÜXSX!XIXXúX$XˆXÿùXvX!X*X*XÿùX}X}X*X•XXúX X1XáX´X¦XzX!XÿÞXÿÞXÿÕXSXÿëXÿëXÿëXÿëXÿëXÿëXÿìX!X X X X XSXSXSXSXXÿøXXXXXXdX X X X X XXX X*X*X*X*X*X*XÿóX6X!X!X!X!X>X>X>X>X*XX*X*X*X*X*X*XX X X X XXÿøXXÿëX*XÿëX*XÿëX*X!X6X!X6X!X6X!X6X X!XX!X X!X X!X X!X X!X X!X!X!X!X!X!X!X!X!XX XX XSX>XSX>XSX>XSX>XSX>XSXuX6XuX X!X4X!X>X!X>X!X>X!X>X X>XÿøXXÿøXXÿøXXXÿøXXX*XX*XX*XÿìXÿõX X6X X6X X6X>XIX>XIX>XIX>XIX*X X*X X*X X X X X X X X X X X X X XÿöXXXXXIXUXIXUXIXUXKXÿøXÿ¾XXÿøX!X!X6XXÿ¨XX!X*X X>Xÿ™X9X!XÿåXiXSX!X>XXÿíXÿ„XXXX*XXÿßXÿ­XÿøX>XIXIX XÿýX X*X X XÿÄXXIXUX,X,X6XúXšXÜXXXÿëX*XSX>XX*X X X X X X X X X X X!XÿëX*XÿëX*XÿìXÿóX!X!X XÿíXX*XX*X,XuX!X!XXÿøXXÿëX*XÿìXÿóX XXÿëX*XÿëX*X X!X X!XCX>XSX>XX*XX*X X6X X6X X X X X>XIX*X XX XIXUXÿëX*X X!XX*XX*XX*XX*XXX*X!X!XÿøX6X!X!X!X!XIXIXuX!X!X XX X>XiXnX>XiXÿíXÿíXÿíXÿšXX*X6X6X6X6XMXIX9XX9X X X XXXXUXhXhXhX!XXKX!XBX!XhXhX}X}XÐXÐX}XðX±XúXsX}X}XúX}XsX}X7X}XðXˆX±X±X}X}XX´X}X}X}XöX5XúX´XúX€X“X“XçX“XXˆXÿëXáXÿ×XÿÝXÿýXÿÎXÿÈXÿÍXiXÿëX X X X XIXXXSX XÿëXÿíXÿøX#XXX XIX*XXX XÿðXXSXX!XIXXiX X!X XX*XIX\XXSXiX4XX XXuX*X.XÿèXqX*XFX XÿüXXÿêXXaX X*X XXRXGXÿúX*X X XX X"X>XSXSXSXÿÒXÿÄXÿøXXXXXÿëXX X XX XÿèX>XXXX XÿíXXXX X!X*XXX XX&XÿêXÿäXÿùXÿëX X"XÿéXÿýX*X3XTXbX#X!XÿëXIXXX4XXÿðX3X*X.XÿøX6X>XXÿÜXXX1XÿõXÿõXXÿ÷XTX,XÿôX4X!X!X XbX,XIX>X>XuXÿãXÿãX X4XXXX XTX XÿùX XbX XOX XbXÿèXÿëX>XIXX4XX4XX4XX4XXXXXXX!X6X!X6X*X>XXXXX XXXX&X1X&X1X&X1X!X6X!X6XSXÿèXÿëXX4XXXXXXX&X1XXXXÿëX*XÿëX*XÿìXÿóX X!X"X,X"X,XÿèXÿëX>XIX>XIXXXXXX*XX*XX*X"X,XXXXXXX&X1XXXÿëXÿ÷™™˜ÔÔÔÔÿã™X<ÔXú1XáõX<<{<<–{<,<<<0–{<<<<<02<3$**òŒÿë* ÿø ÿø ÿø!6 ! !! !! ! ! ! ! ! K!!     S>S> ! ! !!>>!>!>ÿíÿíÿíÿíÿíÿíÿøÿøÿøÿø**** ÿø ÿø 6 6 6 6>I>I>I>I>I* * * * ÿëÿëÿöÿöÿöÿöÿö  IUIUIU Kÿë*ÿë*ÿë*ÿë*ÿë*ÿë*ÿë*ÿë*ÿë*ÿë*ÿë*ÿë* ! ! ! ! ! ! ! !S>S>************ **ÿãÿãù™“ùbWWb^^–“S“S!_ø§ÿû1¨”Ÿ§¨£¨¦•”Ÿ§¨£ !7ÿòÿß ÿëÿÞÿÎÿÞÿÎÿÕÿßÿÞÿÜÿÞÿÕÿÜÿÞfS-*S 3d**#*úÈúÈúÈúúÈÈúúÈÈúúÈÈÈÈÈÈæ´–ú––ú––ú––úúÿÕÿÕÿÕú,úÈ,ÈÈÈ, 222222222¯¯22––##¨¨TTÇÇy##¨¨TTÇÇ^##!H!!!!!!!!!#.2222¬22222###2222!!!!XS!22222222!!!pp00u·ÿòÿòÿï× ôöÿ€wÿZ{ÿw$ÿî7ÿ¦9ÿÚ:<ÿ¯ƒÿî†ÿî‡ÿîˆÿòÿwÿ_{ÿ}ÿ´ÿÅÿ¼ÿÿŽÿªÿÂÿÑÿËÿ©ÿÉÿžÿsÿ¶ÿ·ÿ¾ÿ½ÿ¼ÿ¹ÿÌÿÀÿ¾ÿÂÿ£ÿ·ÿÌÿ·ÿÊÿÏÿÒÿcÿPÿ½ÿÀÿ¸ÿ›ÿ®ÿ£ÿÂÿ¶ÿdÿ¸ÿÆÿ¿ÿ¾ÿËÿÇ$ÿÑ$ÿí$ÿÂ$&ÿò$*ÿö$2ÿñ$4ÿð$7ÿå$8ÿé$9ÿÅ$:ÿó$<ÿå$D$E-$Fÿü$G$H$Rÿý$Tÿü$Wÿì$Xÿô$YÿÙ$Zÿó$\ÿÙ$mÿØ$‰ÿê$˜ÿñ$›ÿé$œÿé$ÿé$žÿé$©ÿø$wÿ${ÿ¬$‰ÿØ%$%2ÿ÷%9ÿî%:ÿú%<ÿÙ%ƒ%„%…%†%‡%ˆ%”ÿ÷%•ÿ÷%–ÿ÷%˜ÿ÷%šÿû% &$&+ÿó&.ÿø&2ÿò&ƒ&†&‡&ˆ&•ÿò&˜ÿò'$ÿç'-ÿà'7ÿå'9ÿâ':ÿó';ÿÛ'<ÿÍ'‚ÿç'ƒÿç'„ÿç'…ÿç'†ÿç'‡ÿç)ÿX)ÿÉ)ÿE)$ÿÙ)-ÿ²)2ÿè)DÿØ)HÿÑ)LÿÒ)MÿÊ)RÿÍ)Uÿà)Xÿÿ)‚ÿÙ)ƒÿÙ)„ÿÙ)…ÿÙ)†ÿÙ)‡ÿÙ)˜ÿè)£ÿØ)¦ÿØ)§ÿØ)¨ÿî)«ÿÑ)µÿÍ)¸ÿÍ)ºÿÍ)ÿð*$*7ÿç*9*:*<ÿò*‚*ƒ*„*…*†*‡*ˆ-$ÿø-†ÿø-‡ÿø-ˆÿð.ÿÔ.&ÿè.*ÿí.2ÿç.6ÿ÷.7ÿó.D.Hÿú.Rÿô.Xÿê.\ÿÎ.•ÿç.˜ÿç.¦.§.¨.µÿô.¸ÿô.¾ÿê.ÿü/ /$/&ÿö/*ÿö/2ÿù/6ÿè/7ÿÌ/8ÿã/9ÿÇ/:ÿê/<ÿÌ/Xÿö/\ÿß/ƒ/†/‡/ˆ/‰ÿõ/”ÿù/•ÿù/–ÿù/—ÿù/˜ÿù/žÿã/¾ÿõ/wÿ/{ÿ¸1ÿµ1ÿ£1$ÿý1&ÿù1*ÿú12ÿû1Dÿõ1Hÿý1Rÿø1Xÿø1ƒÿý1†ÿý1‡ÿý1ˆÿý1‰ÿú1•ÿû1˜ÿû1£ÿõ1¦ÿõ1§ÿõ1¨1«ÿý1µÿø1¸ÿø1ºÿý1¾ÿø2$ÿò27ÿñ29ÿé2:ÿþ2;ÿæ2<ÿÕ2ƒÿò2†ÿò2‡ÿò2ˆÿò3ÿ`3ÿß3ÿN3$ÿÃ3-ÿ·3DÿÏ3HÿÚ3RÿÖ3ƒÿÃ3†ÿÃ3‡ÿÃ3ˆÿÅ3£ÿÏ3¦ÿÏ3§ÿÏ3¨ÿå3«ÿÚ3µÿÖ3¸ÿÖ3ºÿÖ3ÿó5ÿç5&ÿò5*ÿö52ÿò57ÿä58ÿð59ÿè5:ÿø5<ÿä5D5H5Rÿý5Xÿù5\ÿî5‰ÿï5•ÿò5˜ÿò5žÿï5£5¦5§5¨(5«5µÿý5¸ÿý5¼ÿø5¾ÿø556$ÿö67ÿ×69ÿö6:ÿô6<ÿá6Wÿï6ƒÿö6†ÿö6‡ÿö6ˆÿö7ÿ~7ÿ¥7ÿl7ÿ7ÿœ7$ÿä7&ÿí7*ÿí7-ÿ¿72ÿò76ÿ×79 7:7<ÿö7DÿÞ7FÿÛ7Hÿæ7Jÿè7LÿÖ7MÿÏ7Rÿá7Uÿä7VÿÙ7X7Y 7Z 7mÿ·7‚ÿä7ƒÿä7„ÿä7…ÿä7†ÿä7‡ÿä7ˆÿä7”ÿò7•ÿò7–ÿò7—ÿò7˜ÿò7šÿò7¨ÿô7ºÿá77‰ÿ·8ÿ¡8ÿŽ8$ÿí8P8Qÿø8UÿÞ8ƒÿí8„ÿí8…ÿí8†ÿí8‡ÿí8ˆÿî9ÿn9ÿÙ9ÿ\9ÿ|9ÿˆ9$ÿü9&ÿè9*ÿè92ÿé96ÿå97 9DÿÊ9HÿÑ9JÿÒ9LÿÅ9RÿÌ9UÿÓ9Xÿñ9\ÿï9mÿµ9‚ÿü9ƒÿü9„ÿü9…ÿü9†ÿü9‡ÿü9ˆÿô9”ÿé9•ÿé9–ÿé9—ÿé9˜ÿé9šÿé9¨ÿå9ºÿÐ9‰ÿµ:ÿ­::ÿ›:ÿ:ÿ®:$ÿ÷:&ÿü:*ÿý:2ÿþ:6ÿï:7:Dÿõ:Hÿý:Jÿý:LÿÚ:Rÿø:Uÿç:X:\ÿþ:mÿá:‚ÿ÷:ƒÿ÷:„ÿ÷:…ÿ÷:†ÿ÷:‡ÿ÷:ˆÿ÷:”ÿþ:•ÿþ:–ÿþ:—ÿþ:˜ÿþ:š:¨:ºÿü:‰ÿá;ÿÎ;&ÿä;2ÿæ;4ÿæ;Hÿô;Rÿî;Xÿä;\ÿÕ;˜ÿæ<ÿŠ<ÿ¯<ÿx<ÿj<ÿ{<$ÿç<&ÿÓ<*ÿÓ<2ÿÔ<6ÿÐ<7ÿö<DÿË<HÿÅ<JÿÅ<LÿÆ<RÿÀ<Sÿâ<XÿÕ<Yÿß<mÿ¢<‚ÿç<ƒÿç<„ÿç<…ÿç<†ÿç<‡ÿç<ˆÿä<”ÿÔ<•ÿÔ<–ÿÔ<—ÿÔ<˜ÿÔ<šÿÕ<¨ÿä<ºÿÍ<‰ÿ¢=Yÿ×=\ÿÌDMÿ¯DYÿëDZÿôD\ÿáDwÿ²EZE\ÿöFK FNHWÿðHYÿ÷HZÿýH[H\ÿìHwÿ¿IDÿàIHÿÕIIÿÕILÿÛIMÿÄIOÿçIRÿÑIVÿÖIWÿúI£ÿàI¦ÿàI§ÿàI¨ÿùI«ÿÕIµÿÑI¸ÿÖIºÿãIÿñIwÿ·JDÿüJHJOÿÞJ¦ÿüJ§ÿüJ¨J«JµÿýJ¸ÿýK\ÿéKwÿ»L7ÿÆLMÿqNÿÁNÿÎNÿµNDNHÿõNJÿòNRÿïNVÿ÷NXÿýN£N¦N§N¨N«ÿõNµÿïN¸ÿïN¾ÿýOYÿ³O\ÿ³PS PYPZP\Q7ÿØQSQYÿôQZÿûQ\ÿêQwÿ¼R7ÿáRWÿóRYÿúRZÿýR[ÿöR\ÿïRwÿÂSWÿýS\ÿúTFTX)Uÿ”Uÿ×Uÿ†Uÿ¡Uÿ­UDÿïUFÿîUGÿøUHÿùUIÿðUJÿûUKÿìULÿçUMÿßUNÿâUOÿÑUP$UQ URÿôUSUTÿüUUÿõUVÿëUWUXUYUZU[U\U]ÿëU¢ÿïU£ÿïU¤ÿïU¦ÿïU§ÿïU¨U©ÿñUªÿùU«ÿùU¬ÿùU´ÿôUµÿôU¶ÿôU¸ÿôUºÿôUUwÿ×VWÿõVwÿÄWÿ‹Wÿ™W6ÿÝWDÿðWHÿèWKÿûWRÿâW£ÿðW¦ÿðW§ÿðW¨ W«ÿèWµÿâW¸ÿâWwÿšXwÿÈYÿxYÿéYÿdYÿ¯Yÿ»YDÿýYFÿõYJYOÿ³YRÿûYVÿõY¢ÿýY£ÿýY¤ÿýY¥ÿýY¦ÿýY§ÿýY¨Y´ÿûYµÿûY¸ÿûYºÿûZÿ¦ZZÿ“Zÿ¯Zÿ»ZDÿýZFÿúZHZJZOÿÐZRÿþZVÿõZ¢ÿýZ£ÿýZ¤ÿýZ¥ÿýZ¦ÿýZ§ÿýZ¨ZªZ«Z¬Z´ÿþZµÿþZ¸ÿþZº[D[Fÿò[Hÿû[Rÿö[Tÿø[«ÿû\ÿz\ÿí\ÿe\ÿ¥\ÿ±\Dÿó\Fÿë\Hÿõ\Jÿ÷\Oÿ²\Rÿñ\Vÿë\¢ÿó\£ÿó\¤ÿó\¥ÿó\¦ÿó\§ÿó\¨\ªÿõ\«ÿõ\¬ÿõ\´ÿñ\µÿñ\¸ÿñ\ºÿñ}$ÿÛ}7ÿ¹}9ÿ¸}:ÿã}<ÿ¤}ƒÿÛ}†ÿÛ}‡ÿÛ}ˆÿÞ‚ÿÑ‚ÿ‚&ÿò‚*ÿö‚2ÿñ‚4ÿð‚7ÿå‚8ÿé‚9ÿÅ‚:ÿó‚<ÿåƒÿуÿíƒÿƒ&ÿòƒ*ÿöƒ2ÿñƒ4ÿðƒ7ÿåƒ8ÿéƒ9ÿŃ:ÿóƒ<ÿåƒDƒE-ƒFÿüƒGƒHƒRÿýƒTÿüƒWÿìƒXÿôƒYÿÙƒZÿóƒ\ÿÙƒmÿ؃wÿƒ‰ÿØ„ÿÑ„ÿ„&ÿò„*ÿö„2ÿñ„4ÿð„7ÿå„8ÿé„9ÿÅ„:ÿó„<ÿå…ÿÑ…ÿÂ…&ÿò…*ÿö…2ÿñ…4ÿð…7ÿå…8ÿé…9ÿÅ…:ÿó…<ÿå†ÿцÿí†ÿ†&ÿò†*ÿö†2ÿñ†4ÿð†7ÿå†8ÿé†9ÿņ:ÿó†<ÿå†D†E-†Fÿü†G†Rÿý†Tÿü†Wÿì†Xÿô†YÿÙ†Zÿó†\ÿÙ†mÿ؆wÿ†{ÿ¬†‰ÿ؇ÿчÿí‡ÿ‡&ÿò‡*ÿö‡2ÿñ‡4ÿð‡7ÿå‡8ÿé‡9ÿŇ:ÿó‡<ÿå‡D‡E-‡Fÿü‡G‡H‡Rÿý‡Tÿü‡Wÿì‡Xÿô‡YÿÙ‡Zÿó‡\ÿÙ‡mÿ؇wÿ‡{ÿ¬‡‰ÿ؉$”7ÿñ”9ÿé”<ÿÕ•$ÿò•7ÿñ•9ÿé•:ÿþ•<ÿÕ–7ÿñ–9ÿé–<ÿÕ—7ÿñ—9ÿé—<ÿÕ˜$ÿò˜7ÿñ˜9ÿé˜:ÿþ˜;ÿæ˜<ÿÕš$ÿö›$ÿíœÿ¡œÿŽœ$ÿíœPœQÿøœUÿÞ$ÿížÿ¡žÿŽž$ÿížEžPžQÿøžUÿÞ¢Yÿë¢Zÿô¢\ÿá£Yÿë£Zÿô£\ÿá¦Yÿë¦Zÿô¦\ÿá§Yÿë§Zÿô§\ÿá¨Y¨Z ¨\«Yÿ÷«Zÿý«\ÿì¬Yÿ÷¬Zÿý¬\ÿì´Yÿú´Zÿý´\ÿïµYÿúµZÿýµ\ÿï¶Wÿó¸Wÿó¸Yÿú¸Zÿý¸[ÿö¸\ÿïv$ÿ©v7ÿÏv9ÿÒv:ÿÚv<ÿ·vƒÿ©v†ÿ©v‡ÿ©vˆÿ«wÿwÿ w$ÿfwGÿtwRÿqwUÿkwVÿjwWÿ‹wYÿ’wZÿ—w\ÿŒwƒÿfw†ÿfw‡ÿfwˆÿgz$ÿÂz7ÿèz9ÿêz:ÿóz<ÿÏzƒÿÂz†ÿÂz‡ÿÂzˆÿÄ{$ÿ´{7ÿÙ{9ÿâ{:ÿæ{<ÿÍ{ƒÿ´{†ÿ´{‡ÿ´{ˆÿµ|$ÿú|7ÿ¦|9ÿ˜|:ÿÕ|<ÿ²|ˆÿùŠ$ÿÛŠ7ÿ¹Š9ÿ¸Š:ÿãŠ<ÿ¤ŠƒÿÛІÿÛЇÿÛŠˆÿÞVVVVÈî¬Ò0’6¨ÐLšx  º  ¶ \ ¤ P ò ^ ²vÐv.Èh |0Þšpäl8´ZêPæ®dNÌbäj(Æ  d ° ø!F!`!š"8"Ð#^#ô$r%%¾&|&è'R'î(P))¸**Ü+Ž,,Ú-r-ü.|//®0L0˜1.1n22~2Ž33Â4’5h6B6²7œ7þ8à9š::V:f;R;ˆ;î<–==Ê>>’?8?t?Æ@ @’A AÄB°CÐDtE<F FÞGÒHÂI²JˆK~L`MJN>OHOêP”QFRR²SœT0TÌUpV0VìWvXXâY®Z„[r\F\ú]Ê^–_b`8a@b4c(d(düe¨fVg gàhnhüi”jJkl$l¸mLmênºovpp²qpr.rösÜt¤u^vLwwØxÒyÐzª{‚|X}}*}@}V}l~D °€h ¾‚œƒDƒZƒp„P„ú…‡’ˆJˆ`ˆv‰”ŠœŠ²ŠÈ‹²ŒŠŒ Œ¸ŽŽbŽxŽŽ,¶Ìâ–‘B‘â’B’¶“ “6“̔ƕ’–(–Ú—j˜˜¤™R™à™öššÂ›`œ&ž Ÿh P¡¡Ä¢Œ££¬£Â£Ø¤œ¥n¦$¦â§Ð¨Ž©tª2« «è­­ô® ® ¯R°P±r²h²~²”³J´´€µµ.µD¶¶À¶Ö¶ì·Ú¸Â¹¸º´»’¼d¼z¼¼¦¼¼½°¾:¾¶¿6¿®À:ÀÀÁJÁú´ÂÄÃvÊÄPÅÅŪÅÀÆVÆjÆ~Ç~È,ÈÜɺʆÊìË’ÌHÌÞÍÎPÎæÏ˜Ð Ð¤Ñ8ÑúÒÂÓrÔJÔ`ÔvÔÐÕ–Ö*Öæ×hØ&ØäÙ¤ÚjÚöÛxÜÜ2ÜäÜôÝdÝtÞHßßß0ßHß^ßvߌߤߺßÒßêààà2àJàbàzàŽà¦à¾àÜàøáá$á:áPáfá~á”áªáÆáâáøââ&â<âÜâôã ã"ã:ãRãhã€ã–ã®ãÄãàãüää*äFäbäzää¬äÈäàäöåå.åFå\åxå”å¬åÂåÞåúçèè®étéŒé¤ê.ê°êÆêÜêòëë ë8ëPëhë~ë”ë²ëÎëäëúìì ì´ífí|î0îÞîôïïï.ïÀð‚ñ.ñBòò(òÊó.óžôbôÈôÜõ–öv÷&÷ðøøø(øØùjùþúÜûVüü2üFüàýšý®ýÂýÖþZþòÿÿÿ¾R.¨t"8~Æ0lÚxÄ<¶ÆÖ,<t„”¤"2BRŠê R ê  N d ® ¾ Î   2 | Œ œ ² Ê Ú ò  " : R j † – ¦ ¶  * : J$4ÀÐàÆÖzŠšªºÊÚ¦J`vŒ¨¾ÔðºX  ÀhäôŠDTp€"bØRÚˆb x Ž ¤ º Ð è!j"z##²#È#Þ$®%V&&&.&D&Z'R(ˆ)b*Z+f,\-6-F-Ô-ä.^.ò/01$23B4 4º4Ê4Ú4ê5’5¢5²5Â6V767F7ô8¸9Œ:d; ;ú<˜=P>>À>Ð?j?ø@P@Î@ÞBBÆCPD:DÐEREÆFNF^FÈFØFèGPG`H.H>H¶IBIÞJˆKK²LLÀMbMðNNOO˜P:PJPZPpP€QHRSSÖTŽT¤U2UÎV:VJW@W¼XXŽYYˆYàZú\]$]æ^®_D` `¢ajbbÈc^cncöddŽe6e e°eÀeÐeàeðfXfögvhh”h¤h´ibiÚjžk*kîlzm>mÊmÚmêmún no”qqàrvrvrvr†ssssÒt^t^t^t^tttŠt t¶uŒvŒv¢v¸wpxy"z{ˆ}~^v€~@‚H‚ú„.……$…:…¬††æ‡®ˆ¾‰¶ŠtŠŠ‹v‹ŒŒŽŒ¤¾Ž Ž Ž äæ‘@’’’“6“j“¾”:”t”Ä”ö•x•®•ä–"–Z–š–З—n—°˜R˜Ð™n™ÈšTš˜šð›‚œœZœº<šž žœžàŸJŸè z¡¡Â¢0¢¤£B£ ¤:¤Ö¥N¥Ä¦8¦d¦®¦Æ¦Þ¦ô§ §$§<§T§l§„§š§°§È§à§ø¨¨(¨>¨T¨l¨„¨œ¨´¨Ì¨ä¨ü©©,©D©b©~©”©¬©Â©Ø©îªªª6ªLªdª|ª”ª¬ªÄªÜªô« «$«<«T«l«„«œ«´«Ì«ä¬¬ ¬8¬P¬h¬€¬˜¬®¬Æ¬Ü¬ô­ ­"­8­P­h­€­˜­°­È­à­ø®®(®@®X®p®ˆ® ®¶®Ì®â®ø¯¯&¯>¯\¯|¯”¯¬¯Â¯Ø¯ð°° °8°P°h°†°¤°º°Ò°ê±±±2±J±b±z±’±ª±Â±Ú±ò²².²F²^²t²Š²¢²º²Ò²è³³³,³B³X³n³†³ž³´³Ê³à³ö´ ´"´:´P´h´€´˜´°´È´à´öµ µ$µ<µTµlµ‚µšµ²µÊµâµú¶¶*¶B¶b¶€¶˜¶°¶È¶à¶ø··(·@·`·~·–·®·Æ·Ü·ò¸¸ ¸8¸P¸h¸€¸˜¸°¸È¸è¹¹¹4¹L¹d¹|¹”¹¬¹Â¹Ú¹òº º"º:ºRºjº‚º¢ºÀºØºî»»»4»J»b»x»»¨»À»Ø»ð¼¼¼4¼L¼b¼z¼¼¨¼¾¼Ö¼î½½½4½L½d½z½½¦½¶½ö¾6¾F¾r¾š¾Â¾Ò¿¿^¿¢¿²À(ÀÒÁ Á¤ÂîÃÃZúÃÐÃæÃüÄ@ĆÅ\ŪÆ@ÆØÆðÇÇÇÇŠÇŠÇŠÇŠÇÖÈXÈàÉ$ÉÐÊ^Ê^Ê^Ê^Ê^Ê^Ê^ÊpʂʔʦʸÊÊÊÜÊîËËËÈ̘ÍtÎPÎúÐиÐÈÐÞÐîÐþÒ"ÓrÔfÕ„ÖÜ×ÔØÐÚÛÜ–ÝèÞøßtßÒà.à˜àøáâFânâ„ããFãVã’ä"ä´äöå¦ææŒæúçç*çDç`ç|çªçØèè8èpè¨èäé é>é\ézé˜é¸éØéøêê6êTêrêê®êÌêêëë*ëLërëšë¾ëæìì0ìTìxì ìÈììíí:í^í€í¨íÎíðîî:î`î‚î¦îÎîôïï<ïdïŒï°ïÚðð.ðXð‚ð¬ðÖññ4ñdñ”ñ¾ñêòò@òjòŽò²òÜóó,óTó|ó¤óÔóüô$ôVô~ô¦ôÖôüõ&õVõ‚õ´õðööNöŒö¼öê÷&÷T÷‚÷º÷öø0ø‚øºøÐøäøúùù.ùpùŠù¦ù¸ùÊùäúúú$úHúlú‚ú˜ú²úÊúâúüûû0ûJûdû~û˜û²ûÌûæûþüü.üJý¬X¢¼ÖðP’ÔPޤ  B\„žÆâ  & L d ˆ ¤ Ê â   4 J ` v Œ ¢ ¸ Î æ æ  6 Æ ô X Ê  Z p Š ¤V|’ÚJdzޤ 4Hp„º,BxŽ¢¸*@TjÄ6Æø6n¸ô<~ÖÐʦîtÖF¤à4B$Ðàx„@.jþNPb\l(Ê4ô* ŒDHÒX'vž§.¬Ûð   F$_,„ N P b \l (Ê 4ô * ŒD HÒ X±"ÁHå /&;Hc­µHÑ%HC  ›H½  " H; … &™ HÁ    H3}$Hµÿ&H;…H©ó" H ' q( ‡H ± û" H / y( H ¹  H / y H  ç óH $ ]$ † q$H ù$T C* ™* £*H Á-  --H7  "‘ Hµÿ"H3 } " H± û  H#Copyleft 2002 Free Software Foundation.FreeMonoBoldPfaEdit 1.0 : Free Monospaced Bold : 11-8-2072Free Monospaced BoldVersion $Revision: 0.27 $ FreeMonoBoldThe use of this font is granted subject to GNU General Public License.http://www.gnu.org/copyleft/gpl.htmlThe quick brown fox jumps over the lazy dog.Copyleft 2002 Free Software Foundation.FreeMonoBoldPfaEdit 1.0 : Free Monospaced Bold : 11-8-2072Free Monospaced BoldVersion $Revision$ FreeMonoBoldThe use of this font is granted subject to GNU General Public License.http://www.gnu.org/copyleft/gpl.htmlThe quick brown fox jumps over the lazy dog.NegretaFree Mono Negretahttp://www.gnu.org/copyleft/gpl.htmltu néFree Mono New tu néhttp://www.gnu.org/copyleft/gpl.htmlfedFree Mono fedhttp://www.gnu.org/copyleft/gpl.htmlFettFree Mono Fetthttp://www.gnu.org/copyleft/gpl.htmlˆ½Ä¿½±Free Mono ˆ½Ä¿½±http://www.gnu.org/copyleft/gpl.htmlNegritaFree Mono Negritahttp://www.gnu.org/copyleft/gpl.htmlLihavoituFree Mono Lihavoituhttp://www.gnu.org/copyleft/gpl.htmlGrasFree Mono Grashttp://www.gnu.org/copyleft/gpl.htmlFélkövérFree Mono Félkövérhttp://www.gnu.org/copyleft/gpl.htmlGrassettoFree Mono Grassettohttp://www.gnu.org/copyleft/gpl.htmlVetFree Mono Vethttp://www.gnu.org/copyleft/gpl.htmlHalvfetFree Mono Halvfethttp://www.gnu.org/copyleft/gpl.htmlPogrubionyFree Mono Pogrubionyhttp://www.gnu.org/copyleft/gpl.htmlNegritoFree Mono Negritohttp://www.gnu.org/copyleft/gpl.html>;C68@=K9Free Mono >;C68@=K9http://www.gnu.org/copyleft/gpl.htmlTu néFree Mono Tu néhttp://www.gnu.org/copyleft/gpl.htmlFetFree Mono Fethttp://www.gnu.org/copyleft/gpl.htmlKal1nFree Mono Kal1nhttp://www.gnu.org/copyleft/gpl.htmlpolkrepkoDovoljena je uporaba v skladu z licenco GNU General Public License.http://www.gnu.org/copyleft/gpl.html`erif bo za vajo spet kuhal doma e ~gance.â#mFree Mono â#mhttp://www.gnu.org/copyleft/gpl.htmlLodiaFree Mono Lodiahttp://www.gnu.org/copyleft/gpl.htmlNegritaFree Mono Negritahttp://www.gnu.org/copyleft/gpl.htmlNegritoFree Mono Negritohttp://www.gnu.org/copyleft/gpl.htmlNegritaFree Mono Negritahttp://www.gnu.org/copyleft/gpl.htmlGrasFree Mono Grashttp://www.gnu.org/copyleft/gpl.htmlÿœ2Ð  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a¬£„…½–膎‹©¤ŠÚƒ“òó—ˆÃÞñžªõôö¢­ÉÇ®bcdËeÈÊÏÌÍÎéfÓÐѯgð‘ÖÔÕhëí‰jikmln oqprsutvwêxzy{}|¸¡~€ìîºýþ    ÿ øù !"#$%&'()*+ú×,-./0123456789:âã;<=>?@ABCDEFGHI°±JKLMNOPQRSûüäåTUVWXYZ[\]^_`abcdefghi»jklmæçnopqrstuvwxyz{|}¦~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./01234Øá56ÛÜÝàÙß789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`¨abcdefghijklmnopqrsŸtuvwxyz{|}~€‚ƒ„…†‡ˆ‰›Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“²³”¶·Ä•´µÅ–‚‡«Æ—˜™š›œ¾¿¼žŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½÷¾¿ÀÁÂŒÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖטبÙ™ïÚ¥Û’ÜÝ”•Þßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›¹œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÀÁ softhyphenAmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccent Gcommaaccent gcommaaccent Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflex Kcommaaccent kcommaaccent kgreenlandicLacutelacute Lcommaaccent lcommaaccentLcaronlcaronLdotldotNacutenacute Ncommaaccent ncommaaccentNcaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracute Rcommaaccent rcommaaccentRcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsuni0180uni0181uni0182uni0183uni0186uni0187uni0188uni0189uni018Auni018Buni018Cuni018Duni018Euni0190uni0191uni0193uni0195uni0196uni0197uni0199uni019Auni019Buni019Cuni019Duni019Euni019FOhornohornuni01A2uni01A3uni01A4uni01A5uni01A7uni01A8uni01A9uni01ABuni01ACuni01ADuni01AEUhornuhornuni01B3uni01B4uni01B5uni01B6uni01B7uni01B8uni01BBuni01C0uni01C1uni01C3uni01C8uni01C9uni01CDuni01CEuni01CFuni01D0uni01D1uni01D2uni01D3uni01D4uni01D5uni01D6uni01D7uni01D8uni01D9uni01DAuni01DBuni01DCuni01DDuni01DEuni01DFuni01E0uni01E1uni01E2uni01E3Gcarongcaronuni01E8uni01E9uni01EAuni01EBuni01ECuni01EDuni01EEuni01F0uni01F4uni01F5uni01F6uni01F8uni01F9 Aringacute aringacuteAEacuteaeacute Oslashacute oslashacuteuni0200uni0201uni0202uni0203uni0204uni0205uni0206uni0207uni0208uni0209uni020Auni020Buni020Cuni020Duni020Euni020Funi0210uni0211uni0212uni0213uni0214uni0215uni0216uni0217 Scommaaccent scommaaccent Tcommaaccent tcommaaccentuni021Euni021Funi0224uni0225uni0226uni0227uni0228uni0229uni022Auni022Buni022Cuni022Duni022Euni022Funi0230uni0231uni0232uni0233uni0250uni0251uni0252uni0253uni0254uni0256uni0257uni0258uni0259uni025Buni025Cuni025Funi0260uni0261uni0265uni0266uni0267uni0268uni0269uni026Auni026Buni026Duni026Funi0270uni0271uni0272uni0273uni0275uni0279uni027Auni027Buni027Cuni027Duni0282uni0283uni0284uni0285uni0287uni0288uni0289uni028Cuni028Duni028Euni0290uni0294uni0295uni0296uni0297uni0298uni029Cuni029Euni029Funi02A0uni02A1uni02A2uni02D0uni02D1 gravecomb acutecombuni0302 tildecombuni0304uni0305uni0306uni0307uni0308 hookabovecombuni030Auni030Buni030Cuni030Duni030Euni030Funi0310uni0311uni031Buni0321uni0322uni0327uni0328uni0337uni0374uni0375uni037Auni037Etonos dieresistonos Alphatonos anoteleia EpsilontonosEtatonos Iotatonos Omicrontonos Upsilontonos OmegatonosiotadieresistonosAlphaBetaGammaEpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsi IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomega iotadieresisupsilondieresis omicrontonos upsilontonos omegatonosuni03D0theta1phi1uni03F1uni0400 afii10023 afii10051 afii10052 afii10053 afii10054 afii10055 afii10056 afii10057 afii10058 afii10059 afii10060 afii10061uni040D afii10062 afii10145 afii10017 afii10018 afii10019 afii10020 afii10021 afii10022 afii10024 afii10025 afii10026 afii10027 afii10028 afii10029 afii10030 afii10031 afii10032 afii10033 afii10034 afii10035 afii10036 afii10037 afii10038 afii10039 afii10040 afii10041 afii10042 afii10043 afii10044 afii10045 afii10046 afii10047 afii10048 afii10049 afii10065 afii10066 afii10067 afii10068 afii10069 afii10070 afii10072 afii10073 afii10074 afii10075 afii10076 afii10077 afii10078 afii10079 afii10080 afii10081 afii10082 afii10083 afii10084 afii10085 afii10086 afii10087 afii10088 afii10089 afii10090 afii10091 afii10092 afii10093 afii10094 afii10095 afii10096 afii10097uni0450 afii10071 afii10099 afii10100 afii10101 afii10102 afii10103 afii10104 afii10105 afii10106 afii10107 afii10108 afii10109uni045D afii10110 afii10193uni048Cuni048Duni048Euni048F afii10050 afii10098uni0492uni0493uni0494uni0495uni0496uni0497uni0498uni0499uni049Auni049Buni049Cuni049Duni049Euni049Funi04A0uni04A1uni04A2uni04A3uni04A4uni04A5uni04A6uni04A7uni04A8uni04A9uni04AAuni04ABuni04ACuni04ADuni04AEuni04AFuni04B0uni04B1uni04B2uni04B3uni04B4uni04B5uni04B6uni04B7uni04B8uni04B9uni04BAuni04BBuni04BCuni04BDuni04BEuni04BFuni04C0uni04C1uni04C2uni04C3uni04C4uni04C5uni04C6uni04C7uni04C8uni04C9uni04CAuni04CBuni04CCuni04CDuni04CEuni04CFuni04D0uni04D1uni04D2uni04D3uni04D4uni04D5uni04D6uni04D7uni04D8 afii10846uni04DAuni04DBuni04DCuni04DDuni04DEuni04DFuni04E0uni04E1uni04E2uni04E3uni04E4uni04E5uni04E6uni04E7uni04E8uni04E9uni04EAuni04EBuni04ECuni04EDuni04EEuni04EFuni04F0uni04F1uni04F2uni04F3uni04F4uni04F5uni04F6uni04F7uni04F8uni04F9 afii57799 afii57801 afii57800 afii57802 afii57793 afii57794 afii57795 afii57798 afii57797 afii57806 afii57796 afii57807 afii57839 afii57645 afii57841 afii57842 afii57804 afii57803 afii57658uni05C4 afii57664 afii57665 afii57666 afii57667 afii57668 afii57669 afii57670 afii57671 afii57672 afii57673 afii57674 afii57675 afii57676 afii57677 afii57678 afii57679 afii57680 afii57681 afii57682 afii57683 afii57684 afii57685 afii57686 afii57687 afii57688 afii57689 afii57690 afii57716 afii57717 afii57718uni05F3uni05F4uni1E00uni1E01uni1E02uni1E03uni1E04uni1E05uni1E06uni1E07uni1E08uni1E09uni1E0Auni1E0Buni1E0Cuni1E0Duni1E0Euni1E0Funi1E10uni1E11uni1E12uni1E13uni1E14uni1E15uni1E16uni1E17uni1E18uni1E19uni1E1Auni1E1Buni1E1Cuni1E1Duni1E1Euni1E1Funi1E20uni1E21uni1E22uni1E23uni1E24uni1E25uni1E26uni1E27uni1E28uni1E29uni1E2Auni1E2Buni1E2Cuni1E2Duni1E2Euni1E2Funi1E30uni1E31uni1E32uni1E33uni1E34uni1E35uni1E36uni1E37uni1E38uni1E39uni1E3Auni1E3Buni1E3Cuni1E3Duni1E3Euni1E3Funi1E40uni1E41uni1E42uni1E43uni1E44uni1E45uni1E46uni1E47uni1E48uni1E49uni1E4Auni1E4Buni1E4Cuni1E4Duni1E4Euni1E4Funi1E50uni1E51uni1E52uni1E53uni1E54uni1E55uni1E56uni1E57uni1E58uni1E59uni1E5Auni1E5Buni1E5Cuni1E5Duni1E5Euni1E5Funi1E60uni1E61uni1E62uni1E63uni1E64uni1E65uni1E66uni1E67uni1E68uni1E69uni1E6Auni1E6Buni1E6Cuni1E6Duni1E6Euni1E6Funi1E70uni1E71uni1E72uni1E73uni1E74uni1E75uni1E76uni1E77uni1E78uni1E79uni1E7Auni1E7Buni1E7Cuni1E7Duni1E7Euni1E7FWgravewgraveWacutewacute Wdieresis wdieresisuni1E86uni1E87uni1E88uni1E89uni1E8Auni1E8Buni1E8Cuni1E8Duni1E8Euni1E8Funi1E90uni1E91uni1E92uni1E93uni1E94uni1E95uni1E96uni1E97uni1E98uni1E99uni1E9Buni1EA0uni1EA1uni1EA2uni1EA3uni1EA4uni1EA5uni1EA6uni1EA7uni1EA8uni1EA9uni1EAAuni1EABuni1EACuni1EADuni1EAEuni1EAFuni1EB0uni1EB1uni1EB2uni1EB3uni1EB4uni1EB5uni1EB6uni1EB7uni1EB8uni1EB9uni1EBAuni1EBBuni1EBCuni1EBDuni1EBEuni1EBFuni1EC0uni1EC1uni1EC2uni1EC3uni1EC4uni1EC5uni1EC6uni1EC7uni1EC8uni1EC9uni1ECAuni1ECBuni1ECCuni1ECDuni1ECEuni1ECFuni1ED0uni1ED1uni1ED2uni1ED3uni1ED4uni1ED5uni1ED6uni1ED7uni1ED8uni1ED9uni1EDAuni1EDBuni1EDCuni1EDDuni1EDEuni1EDFuni1EE0uni1EE1uni1EE2uni1EE3uni1EE4uni1EE5uni1EE6uni1EE7uni1EE8uni1EE9uni1EEAuni1EEBuni1EECuni1EEDuni1EEEuni1EEFuni1EF0uni1EF1Ygraveygraveuni1EF4uni1EF5uni1EF6uni1EF7uni1EF8uni1EF9uni2011 afii00208 quotereverseduni201Fminuteseconduni2034uni2035uni2036uni2037 exclamdbluni2045uni2046uni2048uni2049uni204Buni2064 zerosuperioruni2071uni2072uni2073 foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperioruni207Auni207Buni207Cparenleftsuperiorparenrightsuperior nsuperior zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferiorlira afii57636Eurouni2112 afii61352uni2126uni2127uni212Auni212Bonethird twothirdsuni2155uni2156uni2157uni2158uni2159uni215A oneeighth threeeighths fiveeighths seveneighthsuni215F arrowleftarrowup arrowright arrowdownemptysetgradientuni2215 proportional orthogonal equivalence revlogicalnotSF100000uni2501SF110000uni2503uni2504uni2505uni2506uni2507uni2508uni2509uni250Auni250BSF010000uni250Duni250Euni250FSF030000uni2511uni2512uni2513SF020000uni2515uni2516uni2517SF040000uni2519uni251Auni251BSF080000uni251Duni251Euni251Funi2520uni2521uni2522uni2523SF090000uni2525uni2526uni2527uni2528uni2529uni252Auni252BSF060000uni252Duni252Euni252Funi2530uni2531uni2532uni2533SF070000uni2535uni2536uni2537uni2538uni2539uni253Auni253BSF050000uni253Duni253Euni253Funi2540uni2541uni2542uni2543uni2544uni2545uni2546uni2547uni2548uni2549uni254Auni254Buni254Cuni254Duni254Euni254FSF430000SF240000SF510000SF520000SF390000SF220000SF210000SF250000SF500000SF490000SF380000SF280000SF270000SF260000SF360000SF370000SF420000SF190000SF200000SF230000SF470000SF480000SF410000SF450000SF460000SF400000SF540000SF530000SF440000uni256Duni256Euni256Funi2570uni2571uni2572uni2573uni2574uni2575uni2576uni2577uni2578uni2579uni257Auni257Buni257Cuni257Duni257Euni257Fupblockuni2581uni2582uni2583dnblockuni2585uni2586uni2587blockuni2589uni258Auni258Blfblockuni258Duni258Euni258Frtblockltshadeshadedkshadeuni2594uni2595 filledboxH22073uni25A3uni25A4uni25A5uni25A6uni25A7uni25A8uni25A9H18543H18551 filledrectuni25ADuni25AEuni25AFuni25B0uni25B1triagupuni25B3uni25B4uni25B5uni25B6uni25B7uni25B8uni25B9triagrttriagdnuni25BDuni25BEuni25BFuni25C0uni25C1uni25C2uni25C3triaglfuni25C5uni25C6uni25C7uni25C9circleuni25CDH18533uni25D0uni25D1uni25D2uni25D3uni25D4uni25D5uni25D6uni25D7 invbullet invcircleuni25E2uni25E3uni25E4uni25E5 openbulletuni25E7uni25E8uni25E9uni25EAuni25EBuni25ECuni25EDuni25EEuni25F0uni25F1uni25F2uni25F3uni25F4uni25F5uni25F6uni25F7uni2607uni2608uni2609uni2630uni2631uni2632uni2633uni2634uni2635uni2636uni2637uni2639 smileface invsmilefaceuni2669 musicalnotemusicalnotedbluni266Cdotlessj commaaccentfftvtime-1.0.11/data/filmstrip_0001.png0000664000175000017500000000316512354244126014125 00000000000000‰PNG  IHDR''Œ£Q5bKGDÿÿÿ ½§“ pHYs  d_‘tIMEÓ ,Ž =rIDATxœí˜ßkkÇ?“ÌäGíh›nl”†ÒZ<²½Ø•Õ AÙ¥fÊ*þðB8 çBÁñBñBØu¡ÔúųJX/Úc9Ú´t­Ô6!-mi"¥I¤i›™tæÝ Û§-žã!éŲ_LÞç™y?~üÈ»wïÐ4Íœd³Ùĵk×D,£££Âï÷‹m!„¡PHx½^ÑÔÔ$Þ¼y#âñ¸¸w¬¬Ì•/W9I’(++Ãív£iN§³àU[- ¸Ýn\.V«5ËÁ­¬¬ðâÅ ¦§§Éf³¼ÿ~KàÆÆÆ¸}û6;vì`xx˜T*µiž°Z­Âf³ EQ„ÅbÙ’e•$I(Š"l6›eY›/«Ûí¦¢¢Ã0˜œœ,|Ù‡ÃÁ®]»°Ûí¤R)b±º®›ádYæôéÓ´´´ ª*W¯^¥··—ÅÅEÓÙ“/-,,`{öìáòåËx½^^¿~Íõë×I&“f8«ÕJMM ¨ªŠÛífyy™ŽŽº»»ó—L&™ŸŸ§®®Ž††ª««I$Øl¶\ŽiCôõõñôéS4Mc||MÓƒƒÁ¼Ã­ijjŠ@ €Çã! ±´ô³aÉY&I’Dqq1EEE!˜ŸŸGUÕ‚A­IQJKK‘eUUI¥R†!™à!I’ôiH±¡J‹eýœæÆoµZ9vì@Ó4ž@€®®®pBfgg‰Ç㨪ÊÒÒv»#GŽpêÔ©¼ÃõööÒÞÞN&“ajj »ÝN2™Ìq&¸••îß¿O0D×uò´™ÖüܶmÛ˜ššÚÜφÁÐÐCCC¹àVø¹¹¹9^½zµiÌÔ¾|>^¯]׉D"¦J%%%Ô××ãt:I$D£Ñ5«Že-IQΜ9C[[wïÞ¥©©©à`õõõܸqƒ¶¶6Ο?oZ-“öx<ÔÖÖ¢ª*¥¥¥[WTT„ÏçÃçó‡‘å’yCtuua𦇷nrr’öövÜn7¤ÓéMó„,ËÂáp‡Ã±e~Îb±»Ý.‡PEH’´ÑÏÁ§gYY†aH$ \³UY¦¢¢EQX\\$™LæÚfNQZ[[9~ü8š¦qóæÍ-9ëêêê¸pᇷoßrëÖ-fggÍpV«•}ûöqôèQ4MãÑ£G[W^^ΡC‡¨®®F×uœNçF8]פ³³UU‰ÇãƒO¦3 222B__Ÿé]Ù´[?~LOOÏSY–“ÃÃÃnàO€½p###\ºt ›ÍF:6½}}Þøÿ’H$H$? @YmmíŸÖ=Ï Ôä NUUb±’$a†aÄ6Àÿ\w_æàÁƒ÷¯wßÿœEÀ]¿çñxØ¿ÿt__ß¿fff´t:ýpm·~éŸÍM%„V'ÿ’ìÀïãñø7ÝÝÝw>8Î÷ÍÍÍíííåĉìܹ“+W®Ì=|ø0VR©TFߊ¦þ?­ÿ.gnìË0[#IEND®B`‚tvtime-1.0.11/missing0000755000175000017500000001533013026503062011421 00000000000000#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2013-10-28.13; # UTC # Copyright (C) 1996-2014 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=http://www.perl.org/ flex_URL=http://flex.sourceforge.net/ gnu_software_URL=http://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: tvtime-1.0.11/Makefile.in0000664000175000017500000006724313026503062012103 00000000000000# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Makefile.am is the root Automakefile which calls all the sub-Automakefiles. # Copyright (C) 2002, 2003 Billy Biggs # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc21.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intdiv0.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 $(top_srcdir)/m4/inttypes.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/isc-posix.m4 \ $(top_srcdir)/m4/lcmessage.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = intl/Makefile CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope distdir dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ $(LISP)config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(top_srcdir)/intl/Makefile.in ABOUT-NLS AUTHORS COPYING \ ChangeLog INSTALL NEWS README compile config.guess \ config.rpath config.sub install-sh ltmain.sh missing \ mkinstalldirs DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ ALSA_CFLAGS = @ALSA_CFLAGS@ ALSA_LIBS = @ALSA_LIBS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ ASOUND_LIBS = @ASOUND_LIBS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FREETYPE_CONFIG = @FREETYPE_CONFIG@ GENCAT = @GENCAT@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML2_CONFIG = @LIBXML2_CONFIG@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PNG_LIBS = @PNG_LIBS@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ X11_CFLAGS = @X11_CFLAGS@ X11_LIBS = @X11_LIBS@ XGETTEXT = @XGETTEXT@ XMKMF = @XMKMF@ XML2_FLAG = @XML2_FLAG@ XML2_LIBS = @XML2_LIBS@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ ZLIB_LIBS = @ZLIB_LIBS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ found_cc = @found_cc@ found_cxx = @found_cxx@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AUTOMAKE_OPTIONS = 1.6 SUBDIRS = intl m4 docs data plugins src po EXTRA_DIST = config.rpath COPYING.LGPL ACLOCAL_AMFLAGS = -I m4 all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @test -f $@ || rm -f stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 intl/Makefile: $(top_builddir)/config.status $(top_srcdir)/intl/Makefile.in cd $(top_builddir) && $(SHELL) ./config.status $@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ --with-included-gettext \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile config.h installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr \ distclean-libtool distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) all install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-am clean clean-cscope clean-generic \ clean-libtool cscope cscopelist-am ctags ctags-am dist \ dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \ dist-xz dist-zip distcheck distclean distclean-generic \ distclean-hdr distclean-libtool distclean-tags distcleancheck \ distdir distuninstallcheck dvi dvi-am html html-am info \ info-am install install-am install-data install-data-am \ install-dvi install-dvi-am install-exec install-exec-am \ install-html install-html-am install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: tvtime-1.0.11/COPYING.LGPL0000664000175000017500000006130412354244126011624 00000000000000 GNU LIBRARY GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the library GPL. It is numbered 2 because it goes with version 2 of the ordinary GPL.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Library General Public License, applies to some specially designated Free Software Foundation software, and to any other libraries whose authors decide to use it. You can use it for your libraries, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library, or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link a program with the library, you must provide complete object files to the recipients so that they can relink them with the library, after making changes to the library and recompiling it. And you must show them these terms so they know their rights. Our method of protecting your rights has two steps: (1) copyright the library, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the library. Also, for each distributor's protection, we want to make certain that everyone understands that there is no warranty for this free library. If the library is modified by someone else and passed on, we want its recipients to know that what they have is not the original version, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that companies distributing free software will individually obtain patent licenses, thus in effect transforming the program into proprietary software. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License, which was designed for utility programs. This license, the GNU Library General Public License, applies to certain designated libraries. This license is quite different from the ordinary one; be sure to read it in full, and don't assume that anything in it is the same as in the ordinary license. The reason we have a separate public license for some libraries is that they blur the distinction we usually make between modifying or adding to a program and simply using it. Linking a program with a library, without changing the library, is in some sense simply using the library, and is analogous to running a utility program or application program. However, in a textual and legal sense, the linked executable is a combined work, a derivative of the original library, and the ordinary General Public License treats it as such. Because of this blurred distinction, using the ordinary General Public License for libraries did not effectively promote software sharing, because most developers did not use the libraries. We concluded that weaker conditions might promote sharing better. However, unrestricted linking of non-free programs would deprive the users of those programs of all benefit from the free status of the libraries themselves. This Library General Public License is intended to permit developers of non-free programs to use free libraries, while preserving your freedom as a user of such programs to change the free libraries that are incorporated in them. (We have not seen how to achieve this as regards changes in header files, but we have achieved it as regards changes in the actual functions of the Library.) The hope is that this will lead to faster development of free libraries. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, while the latter only works together with the library. Note that it is possible for a library to be covered by the ordinary General Public License rather than by this special one. GNU LIBRARY GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Library General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also compile or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. c) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. d) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Library General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. , 1 April 1990 Ty Coon, President of Vice That's all there is to it! tvtime-1.0.11/po/0000775000175000017500000000000013026503656010531 500000000000000tvtime-1.0.11/po/pt.po0000664000175000017500000012015112664122204011425 00000000000000# Translation of tvtime messages to Portuguese # Copyright (C) 2005 the tvtime copyright holder # This file is distributed under the same license as the tvtime package. # # Helder Correia , 2005. # Américo Monteiro , 2010. msgid "" msgstr "" "Project-Id-Version: tvtime 1.0.2-5\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2016-02-26 07:05-0300\n" "Last-Translator: Mauro Carvalho Chehab \n" "Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.6\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "Configuração do desentrelaçador" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "Voltar" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "Taxa completa: %.2f fps" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "Meia taxa, desentrelaça campos do topo: %.2f fps" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "Meia taxa, desentrelaça campos do fundo: %.2f fps" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "Definições do Overscan" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "Aplicar matte" #: src/tvtime.c:909 msgid "16:9 output" msgstr "Saída 16:9" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "Redimensionar a janela de acordo com o conteúdo" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "Ecrã total" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "Definir posição de ecrã total" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "Sempre no topo" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Capturas de ecrã discretas" #: src/tvtime.c:968 msgid "Centre" msgstr "Centro" #: src/tvtime.c:975 msgid "Top" msgstr "Topo" #: src/tvtime.c:981 msgid "Bottom" msgstr "Fundo" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "Taxa de imagens tentada" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "Estimativas de performance" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "Desentrelaçador" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "Entrada: %s a %dx%d pixeis" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "Taxa de imagens tentada: %.2f fps" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "Tempo de blit médio: %.2f ms (%.0f MB/s)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "Tempo médio de renderização: %5.2f ms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Imagens abandonadas: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Espaçamento de blit: %4.1f/%4.1f ms (pretende %4.1f ms)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + Overscan" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1.85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2.35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 centrado" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "16:10" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + Overscan" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "Definição do Matte (entrada Anamórfica)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "Definição do Matte (entrada 4:3)" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: Incapaz de alocar memória.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "Incapaz de abrir o dispositivo de captura %s." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " A driver da sua placa de captura, %s, não parece suportar\n" " captura em taxa completa. Por favor, verifique se está mal\n" " configurada, ou se você seleccionou um dispositivo de captura\n" " errado (%s).\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " A driver da sua placa de captura, %s, não está a providenciar\n" " buffers suficientes para o tvtime processar o vídeo. Por favor,\n" " verifique na documentação do seu driver para ver se pode aumentar\n" " o número de buffers disponibilizados para aplicações, e reporte isto\n" " ao bug tracker do tvtime em %s\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "O display no ecrã falhou ao inicializar, desactivado.\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "Nenhuma fonte de vídeo" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "Incapaz de criar FIFO, controlo remoto do tvtime desactivado.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "Exibição de legendas codificadas falhou ao inicializar, desactivada.\n" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "Sempre-no-topo activado." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "Sempre-no-topo desactivado." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "Modo de exibição 16:9 activado." #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "Modo de exibição 4:3 activado." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "Mensagens de captura de ecrã desactivadas." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "Mensagens de captura de ecrã activadas." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "Inversão 2-3 pulldown desactivada." #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "Inversão 2-3 pulldown activada." #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "A inversão 2-3 pulldown não é válida com a sua norma de TV." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Captura de ecrã: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "A reinicializar o tvtime.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "Obrigado por usar o tvtime.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " Falha ao abandonar privilégios de root: %s.\n" " O tvtime irá terminar agora para evitar problemas de segurança.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "A correr %s.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "Actual" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "Nenhuma informação do programa disponível" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "Próximo: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "Re-numerar o canal actual" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "Canal actual activo na lista" #: src/commands.c:346 msgid "Stop channel scan" msgstr "Parar a pesquisa de canais" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "Pesquisar canais por sinal" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "Reiniciar todos os canais como activos" #: src/commands.c:364 msgid "Finetune current channel" msgstr "Afinar o canal actual" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "Alterar o modo de cabo NTSC" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "Definir canal actual como SECAM" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "Definir canal actual como PAL" #: src/commands.c:393 msgid "Switch audio standard" msgstr "Mudar a norma de áudio" #: src/commands.c:400 msgid "Change frequency table" msgstr "Alterar a tabela de frequências" #: src/commands.c:406 msgid "Disable signal detection" msgstr "Desactivar a detecção de sinal" #: src/commands.c:407 msgid "Enable signal detection" msgstr "Activar a detecção de sinal" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "Linguagem predefinida" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "Linguagem desconhecida" #: src/commands.c:623 msgid "Change default audio standard" msgstr "Alterar a norma de áudio predefinida" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "Amplificar volume de áudio" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "Norma de televisão" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "Resolução horizontal" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Cabo" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Difusão" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Cabo com canais 100+" #: src/commands.c:709 msgid "Europe" msgstr "Europa" #: src/commands.c:717 msgid "Russia" msgstr "Rússia" #: src/commands.c:724 msgid "France" msgstr "França" #: src/commands.c:731 msgid "Australia" msgstr "Austrália" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "Austrália (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "Nova Zelândia" #: src/commands.c:752 msgid "China Broadcast" msgstr "China Difusão" #: src/commands.c:759 msgid "South Africa" msgstr "Ãfrica do Sul" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "Personalizado (correr tvtime-scanner antes)" #: src/commands.c:783 msgid "Disabled" msgstr "Desactivado" #: src/commands.c:789 msgid "Quiet" msgstr "Discreto" #: src/commands.c:795 msgid "Medium" msgstr "Médio" #: src/commands.c:801 msgid "Full" msgstr "Total" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s Actual: %d pixeis" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "Baixo (360 pixeis)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "Moderado (576 pixeis)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Standard (720 pixeis)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Alto (768 pixeis)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s Máximo (%d pixeis)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "Reiniciar com as novas definições" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "Aumentar" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "Diminuir" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "Inversão 2-3 pulldown" #: src/commands.c:962 msgid "Colour invert" msgstr "Inversão de cores" #: src/commands.c:970 msgid "Mirror" msgstr "Espelho" #: src/commands.c:978 msgid "Chroma killer" msgstr "Retirar cor" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "Configuração" #: src/commands.c:1131 msgid "Last Channel" msgstr "" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "Gestão de canais" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "Configuração da entrada" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "Definições da imagem" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Processamento de vídeo" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Configuração da saída" #: src/commands.c:1161 msgid "Quit" msgstr "" #: src/commands.c:1192 msgid "Exit menu" msgstr "Sair do menu" #: src/commands.c:1221 msgid "Frequency table" msgstr "Tabela de frequências" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "Afinação" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "Alterar a fonte de vídeo" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "(Des)Ligar legendas codificadas" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "(Des)Ligar descodificação XDS" #: src/commands.c:1392 msgid "Overscan" msgstr "Overscan" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Posição do ecrã total" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "Descrição do desentrelaçador actual" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Filtros de entrada" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "Descrição do desentrelaçador" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Imagem" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "Brilho" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "Contraste" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "Saturação" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Cor" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "Gravar as definições actuais como predefinição" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "Regressar às predefinições globais" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "Gravar definições actuais como predefinição global" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "Gravar definições actuais como predefinição de canais" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "Linguagem XMLTV preferida" #: src/commands.c:1825 msgid "Favorites" msgstr "Favoritos" #: src/commands.c:1832 msgid "Add current channel" msgstr "Adicionar o canal actual" #: src/commands.c:1834 msgid "Exit" msgstr "Sair" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Adormecer em %d minutos." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "Adormecer desligado." #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "A usar a descodificação de áudio PAL-I para este canal." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "A usar a descodificação de áudio PAL-DK para este canal." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "A usar a descodificação de áudio PAL-BG para este canal." #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "A regressar a predefinição de codificação de áudio PAL-I." #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "A regressar a predefinição de codificação de áudio PAL-DK." #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "A regressar a predefinição de codificação de áudio PAL-BG." #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "Canal marcado como activo na lista de navegação." #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "Canal desactivado da lista de navegação." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "O volume da placa de captura não será ajustado pelo tvtime." #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "A definir o volume da placa de captura para %d%%." #: src/commands.c:2380 msgid "Processing every input field." msgstr "A processar cada campo de entrada." #: src/commands.c:2383 msgid "Processing every top field." msgstr "A processar cada campo do topo." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "A processar cada campo do fundo." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "A resolução horizontal será de %d pixeis após reiniciar." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "O norma de televisão será %s após reiniciar." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "A usar linguagem predefinida para dados XMLTV." #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "A usar linguagem desconhecida (%s) para dados XMLTV." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "Linguagem XMLTV definida para %s (%s)." #: src/commands.c:2527 msgid "All channels re-activated." msgstr "Todos os canais foram reactivados." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "A re-mapear o canal %d. Insira o novo número do canal." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "Sondagem indisponível com verificação de sinal desactivada." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "A sondar por canais difundidos." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "Legendas codificadas desactivadas." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "Legendas codificadas activadas." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "Nenhum dispositivo VBI configurado para descodificação de CC." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "Descodificação de cores para este canal definida para %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "A correr: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "Detecção de sinal activada." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "Detecção de sinal desactivada." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "Descodificação XDS activada." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "Descodificação XDS desactivada." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "Inversão de cores activada." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "Inversão de cores desactivada." #: src/commands.c:2822 msgid "Mirror enabled." msgstr "Espelho activado." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "Espelho desactivado." #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "Remoção de cores activada." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "Remoção de cores desactivada." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "Overscan: %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "Definições de imagem reiniciadas aos valores predefinidos." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "A usar frequências de cabo NTSC nominais." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "A usar frequências de cabo IRC." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "A usar frequências de cabo HRC." #: src/commands.c:3029 msgid "Volume" msgstr "Volume" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "Definições de imagem actuais gravadas como predefinição global.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "Definições de imagem actuais gravadas no canal %d.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Em pausa." #: src/commands.c:3310 msgid "Resumed." msgstr "Continuado." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "Erro ao analisar ficheiro de configuração %s.\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "Nenhum elemento raiz XML encontrado em %s.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s não é um ficheiro de configuração do tvtime.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "" "O ficheiro de configuração não pode ser analisado. As definições não serão " "gravadas.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "Incapaz de criar novo ficheiro de configuração.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "Erro ao criar ficheiro de configuração.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "Incapaz de alterar o dono de %s: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "utilização: %s [OPÇÃO]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen modo 16:9.\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen modo 4:3.\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr "" " -b, --vbidevice=DISPOSITIVO dispositivo VBI (predefinição: /dev/vbi0).\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr "" " -c, --channel=CANAL Sintonizar o canal especificado no arranque.\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr " -d, --device=DISPOSITIVO dispositivo video4linux (predefinição: " #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=NOME A tabela de frequência a usar para o " "sintonizador.\n" " (predefinição: us-cable).\n" "\n" " Os valores válidos são:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (primeiro executar o tvtime-" "scanner)\n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" " -F, --configfile=FICHEIRO Ficheiro de configuração adicional de onde " "carregar definições.\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help Mostra esta mensagem de ajuda.\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr " -g, --geometry=GEOMETRIA Define o tamanho da janela.\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr "" " -i, --input=NUMERO_DE_ENTRADA Número de entrada do video4linux " "(predefinição: 0).\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=AMOSTRAGEM Resolução horizontal da entrada\n" " (predefinição: 720 pixeis).\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" " -k, --slave Desactiva o tratamento de entrada no tvtime " "(modo escravo).\n" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr " -m, --fullscreen Arranca o tvtime em modo de ecrã total.\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 msgid " -l, --borderless Start tvtime without a window border.\n" msgstr "" " -M, --window Arranca o tvtime numa janela sem bordas.\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window Arranca o tvtime numa janela.\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=NORMA A norma a usar para entrada. O tvtime suporta:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N ou PAL-60 (predefinição: NTSC).\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops Escreve estatísticas das imagens abandonadas " "(para depuração).\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" " -S, --saveoptions Grava as opções da linha de comandos no " "ficheiro de configuração.\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" " -t, --xmltv=FICHEIRO Lê as listagens XMLTV a partir do ficheiro " "fornecido.\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=LINGUAGEM Usa dados XMLTV na linguagem fornecida, se " "disponível.\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr "" " -v, --verbose Escreve mensagens de depuração no stderr.\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr "" " -X, --display=DISPLAY Usa o display X fornecido para onde se ligar.\n" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer=|\n" " O dispositivo de mistura e canal para " "controlo.\n" " A primeira variante ajusta o mixer OSS; a " "segunda\n" " ajusta o mixer ALSA\n" " (predefinição para /default/Master).\n" "\n" " Os canais válidos são:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr "" " -R, --priority=PRIORIDADE Define a prioridade de processo no qual " "correr o tvtime.\n" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" "Especifica um dispositivo ALSA para entrada.\n" " Exemplos:\n" " " #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" "Especifica um dispositivo ALSA para saída.\n" " Exemplos:\n" " hw:0,0\n" " disabled\n" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" " -z, --alsalatency=LATÊNCIA Especifica a latência do dispositivo ALSA de " "loopback em milisegundos\n" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "A ler configuração a partir de %s\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "" "Não pode executar duas instâncias do tvtime com a mesma configuração.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "A gravar opções da linha de comandos.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "" "Não pode actualizar a configuração enquanto o tvtime está em execução.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "Nenhum sinal" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "Mudo" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "Incapaz de criar %s: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "Incapaz de abrir %s: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" "Falha ao inicializar conversor de UTF-8 para %s: iconv_open falhou (%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " Falha ao entrar em modo UTF-8 usando bind_textdomain_codeset()\n" " (retornou %s.) Isto pode causar uma exibição\n" " incorrecta das mensagens! Por favor, reporte este bug em\n" " %s.\n" "\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "Comandos disponíveis:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "O tvtime não está em execução.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: Incapaz de abrir %s: %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: Comando inválido '%s'\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: A enviar o comando %s com argumento %s.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: A enviar o comando %s.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "A sondar usando a norma de TV %s.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " Nenhum sintonizador encontrado na entrada %d. Se tiver um, por favor\n" " seleccione outra entrada diferente usando --input=.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "A sondar desde %6.2f MHz até %6.2f MHz.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "A verificar %6.2f MHz:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "Sinal detectado" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "Encontrado um canal em %6.2f MHz (%.2f - %.2f MHz), a adicionar à lista de " "canais.\n" #~ msgid "Preferred audio mode" #~ msgstr "Modo de áudio preferido" #~ msgid "Mono" #~ msgstr "Mono" #~ msgid "Stereo" #~ msgstr "Stereo" #~ msgid "SAP" #~ msgstr "SAP" #~ msgid "Primary Language" #~ msgstr "Linguagem Principal" #~ msgid "Secondary Language" #~ msgstr "Linguagem Secundária" #~ msgid "" #~ "\n" #~ " You are using the bttv driver, but have not configured enough\n" #~ " buffers for tvtime to process the video optimally. This is\n" #~ " true by default with bttv in kernels before 2.4.21. Please\n" #~ " set the option gbuffers=4 when loading bttv. For more\n" #~ " information see our support page at %s\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Está a usar a driver bttv, mas não configurou buffers suficientes\n" #~ " para o tvtime processar vídeo de forma óptima. Isto é verdadeiro por\n" #~ " predefinição, com o bttv nos kernels anteriores à versão 2.4.21. Por\n" #~ " favor, defina a opção gbuffers=4 quando carregar o bttv. Para mais\n" #~ " informação veja a nossa página de suporte em %s\n" #~ "\n" #~ msgid "Use PAL-BG audio decoding" #~ msgstr "Usar descodificação de som PAL-BG" #~ msgid "Use PAL-DK audio decoding" #~ msgstr "Usar descodificação de som PAL-DK" #~ msgid "Default to PAL-DK audio decoding" #~ msgstr "Tornar a descodificação de som PAL-DK como padrão" #~ msgid "" #~ "\n" #~ " Enhanced Real Time Clock support in your kernel is necessary for\n" #~ " smooth video. We strongly recommend that you load the 'rtc' kernel\n" #~ " module before starting tvtime, and make sure that your user has\n" #~ " access to the device file (/dev/rtc or /dev/misc/rtc). See our\n" #~ " support page at %s for more information.\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " O suporte de Relógio de Tempo Real melhorado (RTC) no seu kernel é\n" #~ " necessãrio para vídeo suave. Recomenda-se que carregue o módulo RTC\n" #~ " antes de iniciar o tvtime e se certifique que o seu utilizador tem\n" #~ " acesso ao dispositivo (/dev/rtc ou /dev/misc/rtc). Veja a página\n" #~ " de suporte %s para mais informação.\n" #~ "\n" #~ msgid "" #~ "\n" #~ " Failed to get 1024 Hz resolution from your RTC device. High\n" #~ " resolution access is necessary for video to be smooth. Please\n" #~ " run tvtime as root, set tvtime as SUID root, or change the\n" #~ " maximum RTC resolution allowed for user processes by running this\n" #~ " command as root:\n" #~ " sysctl -w dev.rtc.max-user-freq=1024\n" #~ " See our support page at %s for more information.\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Erro ao obter uma resolução de 1024 Hz do dispositivo RTC. Acesso\n" #~ " de alta resolução é necessário par vídeo suave. Por favor, execute\n" #~ " o tvtime como root, defina o tvtime como SUID root ou altere a\n" #~ " máxima resolução RTC permitida par processos de utilizador " #~ "executando\n" #~ " este comando como root:\n" #~ " sysctl -w dev.rtc.max-user-freq=1024\n" #~ " Veja a nossa página de suporte em %s para mais informação.\n" #~ "\n" tvtime-1.0.11/po/ko.gmo0000664000175000017500000003667312663345675011620 00000000000000Þ•¶Ìû| h_i±Éq{Åí³Ñ çõ' 4Qi)ƒ­ÆÖ ðü /C ^l„ ›§»Ù ìö(1O,T ˆ “£¼Ü7ò*>]d{’&¦Í,à !1G \j„ «Ã:Ú"AI h!‰«´Ïè #5%Y† ‹D• ÚäíHOVfk Š.ž+Íù 3!U^ r€š« Åæíô+ 0<!E g ˆ’2¢Õêó3;#Lp­ÉÏá6Oi} † “Ÿ)¦!Ð(ò3 .O ~ œ 2µ &è &!6!V!t!‘! !»!Ø!ð!ö!"!";" P"["q"ƒ"*—"Â"ß"ó" ##+#%H#n##†##³#È#ƒà#od%îÔ%¢Ã&f'={(¹)Ô)T+,i+(–+"¿+$â+&,.,E,)Y, ƒ,, ¢,(°,Ù,%î,-%&-%L- r-€-$›- À-Î-Õ-)ä-!.0.,7.d.k. r. |.+†.-².$à.a/g/†/ £/­/Æ/á/'ù/ !0 /0P0b0s00¤0«0À0Ï0Ö0õ0T1c11j1œ1'£1Ë1*æ122,2@2 [2h2€2-•2Ã2â2é2ð2E3 G3 T3a3]}3 Û3å3ù34 4%4294/l4œ4³4=Ä45 55(5@5W5#r5–5 5ª5Å5Ú5 ô5 þ5 6$64;6 p6!~61 6 Ò6à6ð67 7 *787 ?7+M7y7™7¹7 Ù7ã788$<8a8!8¡8 Á8Ì8 é8 ô81þ8 09.Q9/€9-°9Þ9ø9F:Z:*s:ž:$»:à:ÿ:;#/;S;n; u;ƒ;Ÿ;µ;!Ñ;ó; < %<50</f<–< «<¹<½<Ý<-ý< +=9=@=\=,r=Ÿ=²'|]%¦¨KX±qi­c‚SLm™£s u_bG"’H~J›“xˆw{†ŽY!=‹•n<d®‡h7pa$ž21€*^µv ¶”—o¬O`kD>‰§ rŸ\;3N‘W4?ªTFRj …t[´ge }Œ©P¯0-)@8+5ŠQ,M«V&–E„ƒ(zš9AC/¥l6:f¤#yI.¡³¢ B˜Z°œU Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. %s Current: %d pixels%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 16:9 + Overscan16:9 display mode active.16:9 output4:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.CentreChange NTSC cable modeChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed captions disabled.Closed captions enabled.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.IncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Processing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsReading configuration from %s Renumber current channelReset all channels as activeReset to global defaultsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.Standard (720 pixels)Stop channel scanTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUsing HRC cable frequencies.Using IRC cable frequencies.Using nominal NTSC cable frequencies.Video processingVolumeXDS decoding disabled.XDS decoding enabled.tvtime not running. usage: %s [OPTION]... Project-Id-Version: tvtime Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2004-08-22 04:21 +0900 Last-Translator: Michael Kim Language-Team: Korean Translation Team Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit root 권한ì—서 전환 실패: %s. tvtimeì€ ë³´ì•ˆë¬¸ì œë¡œ ì¸í•´ 지금 ì¢…ë£Œë  ê²ƒìž…ë‹ˆë‹¤. bind_textdomain_codeset()ì„ ì´ìš©í•œ 유니코드(UTF-8) 사용 실패 (반환값 %s.) ì´ê²ƒì€ 메세지가 제대로 출력 ë˜ì§€ ì•Šì„ ìˆ˜ ë„ ìžˆìŠµë‹ˆë‹¤! ì´ ì˜¤ë¥˜ë¥¼ %s 로 제출해 주시기 ë°”ëžë‹ˆë‹¤. %d ì—서 튜너를 ì°¾ì„ ìˆ˜ 없습니다. 만약 튜너가 있다면, --input=<번호> 를 사용하여 다른 입력장치를 ì„ íƒí•˜ì‹­ì‹œì˜¤. ë‹¹ì‹ ì˜ ë“œë¼ì´ë²„ì¸ %s(ì€)는 최대 프레임 í¬ì°© ê¸°ëŠ¥ì„ ì§€ì› í•˜ì§€ 않습니다. 만약 잘못 설정ë˜ì–´ 있거나, ìž˜ëª»ëœ ìž¥ì¹˜ë¥¼ ì„ íƒ í–ˆë‹¤ë©´, 설정 í™”ì¼ì„ 수정 í•´ 주십시오. 현재 ì„¤ì •ëœ ìž¥ì¹˜ëŠ” %s 입니다. ë‹¹ì‹ ì˜ ë“œë¼ì´ë²„ì¸ %s(ì€)는, tvtimeì´ ìµœì í™” 할만한 메모리를 할당하지 않았습니다. ë‹¹ì‹ ì˜ ë“œë¼ì´ë²„ì— ê´€í•œ 문서를 보시고 ì‘용프로그램ì—서 사용할 메모리를 설정 í•´ 주시고, ì´ê²ƒì„ tvtime 벌레 ìž¡ê¸°ì¸ %s ì— ì•Œë ¤ 주십시오. 사용 가능한 명령: tvtime ì€ ìžìœ  소프트웨어 ì´ë©°, Billy Biggs 와 Doug Bell 그리고 ë§Žì€ ê°œë°œìžë“¤ì— ì˜í•´ 작성ë˜ì—ˆìŠµë‹ˆë‹¤. ì €ìž‘ê¶Œì— ëŒ€í•œ ìžì„¸í•œ ë‚´ìš©ì„ ë³´ì‹œë ¤ë©´, ìš°ë¦¬ì˜ ì›¹ì‚¬ì´íЏ ì¸ http://tvtime.net/ ì—서 ë³¼ 수 있습니다. tvtime ì˜ ì €ìž‘ê¶Œ Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. %s 현재: %d 픽셀%s 는 tvtime 설정화ì¼ì´ 아닙니다. %s: 메모리를 할당 í•  수 ì—†ìŒ. %s: %s(ì„)를 ì—´ 수 ì—†ìŒ: %s %s: 유효하지 ì•Šì€ ëª…ë ¹ '%s' %s: 명령 %s와 ì¸ìˆ˜ %s를 보냄. %s: 명령 %s 보냄. 16:9 + 초과주사16:9 ì¶œë ¥ì´ í™œì„±í™” ë˜ì—ˆìŠµë‹ˆë‹¤.16:9 출력4:3 + 초과주사4:3 가운ë°4:3 ì¶œë ¥ì´ í™œì„±í™” ë˜ì—ˆìŠµë‹ˆë‹¤.현재 ì±„ë„ ì¶”ê°€ëª¨ë“  채ë„ì„ ë‹¤ì‹œ 활성화함.í•­ìƒ ë§¨ 위ì—최ìƒìœ„ 위치를 í•´ì œ 합니다.í•­ìƒ ì œì¼ ìœ„ì— ìœ„ì¹˜í•©ë‹ˆë‹¤.화면 비율시ë„í•  프레임 ì†ë„ì ìš©í•  프레임 ì†ë„: %.2f fps소리 ì¦í­í˜¸ì£¼í˜¸ì£¼ (Optus)í‰ê·  blit 시간: %.2f ms (%.0f MB/sec)í‰ê·  ë Œë”ë§ ì‹œê°„: %5.2f ms뒤로Blit 공간: %4.1f/%4.1f ms (want %4.1f ms)아래ë°ê¸°ê³µì¤‘파케ì´ë¸”100ê°œ ì´ìƒì˜ 채ë„ì„ ê°€ì§„ ì¼€ì´ë¸”%sì˜ ì†Œìœ ìžë¥¼ 변경할 수 ì—†ìŒ: %s. %s(ì„)를 ìƒì„±í•  수 ì—†ìŒ: %s ìž…ì¶œë ¥ì„ ìƒì„±í•  수 없으므로, tvtimeì˜ ì›ê²© ì¡°ì •ì€ ë¹„í™œì„±í™”ë˜ì—ˆìŠµë‹ˆë‹¤. %s(ì„)를 ì—´ 수 ì—†ìŒ: %s %s 장치를 ì—´ 수 ì—†ìŒ.가운ë°NTSC ì¼€ì´ë¸”로 전환주파수 í…Œì´ë¸” 변경비디오 소스 변경íƒìƒ‰ëª©ë¡ì—서 ì±„ë„ í‘œì‹œì•ˆí•¨.ì±„ë„ ê´€ë¦¬íƒìƒ‰ëª©ë¡ì—서 채ë„표시.%6.2f Mhz 검색:중국 공중파í‘백기능 사용 안함.í‘백기능 사용.í‘ë°±ìžë§‰ 사용안함.ìžë§‰ 사용.ìŒì˜ìƒ‰ìƒ 뒤집기 사용안함.ìƒ‰ìƒ ë’¤ì§‘ê¸° 사용.설정 í™”ì¼ì„ 만들지 못했습니다. ì„¤ì •ì´ ì €ìž¥ë˜ì§€ 않았습니다. 명암새 설정화ì¼ì„ ìƒì„± í•  수 없습니다. 현재현재 채ë„ì„ í™œì„±ëª©ë¡ì— 추가현재 deinterlacer ì •ë³´ì‚¬ìš©ìž (먼저 tvtime-scaner를 실행)ê°ì†ŒDeinterlacer 설정Deinterlacer 정보신호 ê²€ì¶œì„ ë¹„í™œì„±ì‚¬ìš©ì•ˆí•¨ë¬´ì‹œí•œ 프레임: %d신호 검출 활성설정화ì¼ì„ ìƒì„± í•  수 없습니다. ì„¤ì •í™”ì¼ %s 변환 오류 유럽종료메뉴 나가기UTF-8 애서 %s 로 변환 초기화 실패: iconv_open 실패 (%s). ì¦ê²¨ë³´ê¸°ë¯¸ì„¸ì¡°ì •현재 ì±„ë„ ë¯¸ì„¸ 조정주파수 %6.2f MHz ì—서 ì±„ë„ ì°¾ìŒ(%.2f - %.2f MHz), ì±„ë„ ëª©ë¡ì— 추가합니다. 프랑스주파수 í…Œì´ë¸”최대최대 ì†ë„: %.2f fps전체화면전체화면 위치절반 ì†ë„, deinterlace bottom fields: %.2f fps절반 ì†ë„, deinterlace top fields: %.2f fps고화질 (768 픽셀)ìˆ˜í‰ í•´ìƒë„수í‰í•´ìƒë„는 재시작시 %d 픽셀로 ì ìš©ë©ë‹ˆë‹¤.ì¦ê°€ìž…ë ¥ 설정입력 여과기입력: %s %dx%d 픽셀저화질 (360 픽셀)비율 설정 (4:3 ìž…ë ¥)비율 설정 (ì¼ê·¸ëŸ¬ì§„ ìž…ë ¥)보통거울효과거울효과 사용안함.거울효과 사용.중간화질 (576 픽셀)ìŒì†Œê±°ë‰´ì§ˆëžœë“œë‹¤ìŒ: %s%s ì—서 XML rootê°€ 없습니다. 사용가능한 프로그램 ì •ë³´ê°€ 없습니다.신호 ì—†ìŒë¹„디오 ìž…ë ¥ì´ ì—†ìŠµë‹ˆë‹¤.OSD 초기화 실패, 사용하지 않습니다. 출력 설정초과주사율주사율 초과 설정초과주사: %.1f%%ì¼ì‹œì¤‘지성능 í‰ê°€í™”면화면 설정화면 ì„¤ì •ì„ ê¸°ë³¸ê°’ìœ¼ë¡œ 초기화.모든 아래 필드를 처리.모든 ìž…ë ¥ 필드를 처리.모든 윗쪽 필드를 처리.조용히화면잡기 메세지 설정%s로 부터 설정 ì½ìŒ 현재 채ë„ì„ ë‹¤ì‹œ 지정모든 í™œì„±í™”ëœ ì±„ë„ì„ ì§€ì›€ê¸°ë³¸ 설정으로 ë˜ëŒë¦¼ìƒˆë¡œìš´ 설정으로 재 시작tvtimeì„ ìž¬ì‹œìž‘ 합니다. 시작ë¨.%s(ì„)를 실행합니다. 실행: %s러시아현재 ì„¤ì •ê°’ì„ ì±„ë„ ê¸°ë³¸ê°’ìœ¼ë¡œ 저장현재 ì„¤ì •ì„ ê¸°ë³¸ê°’ìœ¼ë¡œí˜„ìž¬ ì„¤ì •ì„ ê¸°ë³¸ 설정값으로 저장현재 í™”ë©´ì„¤ì •ì„ ê¸°ë³¸ê°’ìœ¼ë¡œ 저장. 현재 화면 ì„¤ì •ì„ ì±„ë„ %dì— ì €ìž¥. 명령줄 설정 저장. 신호로서 ì±„ë„ ê²€ìƒ‰ì‹ í˜¸ ê²€ì¶œì„ ì‚¬ìš©ì•ˆí•œ ìƒíƒœì—서 검색할 수 없습니다.공중파 ì±„ë„ ê²€ì¶œ.%6.2f MHz ì—서 %6.2f MHz 까지 검색. TV 표준 %s 으로 검색. 화면잡게 메세지 표시안함.화면잡게 메세지 표시.화면저장: %s현재 채ë„ì„ PAL로 전환현재 ì²´ë„ì„ SECAM으로 전환전체화면 위치 설정설정신호 검출신호 검출 사용안함.신호 검출 사용.%dë¶„ ë’¤ì— ìžë™ 종료.ìžë™ 종료기능 사용안함.표준화질 (720 픽셀)ì±„ë„ ê²€ìƒ‰ì„ ì¤‘ì§€TV 표준TV í‘œì¤€ì€ ìž¬ì‹œìž‘ì‹œì— %s 로 ì ìš© ë©ë‹ˆë‹¤.tvtimeì„ ì´ìš©í•´ 주셔서 ê°ì‚¬í•©ë‹ˆë‹¤. XDS 디코딩 설정ìžë§‰ 설정위HRC ì¼€ì´ë¸” 주사푸 사용.IRC ì¼€ì´ë¸” 주파수 사용.ì¼ë°˜ì ì¸ NTSC ì¼€ì´ë¸” 주파수 사용.화면 처리소리XDS 디코딩 사용안함.XDS 디코딩 사용.tvtimeì´ ì‹¤í–‰ë˜ê³  있지 않습니다. 사용법: %s [OPTION]... tvtime-1.0.11/po/POTFILES.in0000664000175000017500000000033112610675505012224 00000000000000# List of files which containing translatable strings. # Package source files src/tvtime.c src/commands.c src/tvtimeconf.c src/tvtimeosd.c src/utils.c src/tvtime-command.c src/tvtime-configure.c src/tvtime-scanner.c tvtime-1.0.11/po/es.po0000664000175000017500000011721112663351370011423 00000000000000# Spanish locale file for tvtime. # Copyright (C) 2004 Iván Eixarch Calvo # This file is distributed under the same license as the PACKAGE package. # Iván Eixarch Calvo , 2004. # msgid "" msgstr "" "Project-Id-Version: tvtime 0.9.14\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2016-02-24 12:54-0300\n" "Last-Translator: Mauro Carvalho Chehab \n" "Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.6\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "Configuración del desentrelazador" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "Volver" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "Ritmo completo: %.2f fps" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "Ritmo medio, desentrelaza campos superiores: %.2f fps" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "Ritmo medio, desentrelaza campos inferiores: %.2f fps" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "Ajustes de Overscan" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "Aplicar matte" #: src/tvtime.c:909 msgid "16:9 output" msgstr "salida 16:9" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "Redimensionar la ventana para adaptarse a los contenidos" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "Pantalla completa" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "Establecer la posición de la pantalla completa" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "Siempre visible" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Capturas de pantalla silenciosas" #: src/tvtime.c:968 msgid "Centre" msgstr "Centro" #: src/tvtime.c:975 msgid "Top" msgstr "Arriba" #: src/tvtime.c:981 msgid "Bottom" msgstr "Abajo" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "Cuadros por segundo deseados" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "Rendimiento estimado" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "Desentrelazador" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "Entrada: %s en %dx%d pixels" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "Cuadros por segundo deseados: %.2f fps" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "Tiempo medio de blit: %.2f ms (%.0f MB/sec)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "Tiempo medio de render: %5.2f ms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Cuadros arrojados: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Espacio de blit: %4.1f/%4.1f ms (want %4.1f ms)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + Overscan" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1.85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2.35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 centrado" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "16:10" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + Overscan" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "Ajustes de matte (entrada anamórfica)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "Ajustes de matte (entrada 4:3)" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: Imposible reservar memoria.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "No puedo abrir dispositivo de captura %s." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " El controlador de tu tarjeta capturadora, %s, no parece\n" " soportar framerate completo. Comprueba si está\n" " mal configurada, o si has seleccionado una capturadora\n" " errónea (%s).\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " El controlador de tu tarjeta capturadora, %s, no provee de\n" " suficientes buffers para que tvtime procese el video. Por favor, " "comprueba en\n" " la documentación de tu controlador si es posible incrementar el número\n" " de buffers facilitados a las aplicaciones, y repórtalo al tvtime\n" " bug tracker en %s\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "Imposible inicializar sobreimpresión, OSD deshabilitado.\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "Sin origen de vídeo." #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "Imposible crear FIFO, control remoto de tvtime desactivado.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "Fallo al inicializar subtítulos para sordos, serán desactivados.\n" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "Siempre visible activado." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "Siempre visible desactivado." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "Modo de visualización 16:9 activo" #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "Modo de visualización 4:3 activo." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "Mensajes de capturas de pantalla desactivados." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "Mensajes de capturas de pantalla activados." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "Inversión \"2-3 pulldown\" desactivada" #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "Inversión \"2-3 pulldown\" activada" #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "Inversión \"2-3 pulldown\" no es posible con tu norma de TV." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Captura de pantalla: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "Reiniciando tvtime.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "Gracias por usar tvtime.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " Fallo al deponer privilegios de root: %s.\n" " tvtime será cerrado para evitar problemas de seguridad.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "Ejecutando %s.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "Actual" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "Información del programa de TV no disponible" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "Siguiente: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "Renumerar canal actual" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "Activar canal actual" #: src/commands.c:346 msgid "Stop channel scan" msgstr "Detener escaneo de canales" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "Escanear canales en busca de señal" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "Activar todos los canales" #: src/commands.c:364 msgid "Finetune current channel" msgstr "Ajuste fino del canal actual" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "Cambiar modo de cable de NTSC" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "Establecer canal actual como SECAM" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "Establecer canal actual como PAL" #: src/commands.c:393 msgid "Switch audio standard" msgstr "Cambiar norma de televisión" #: src/commands.c:400 msgid "Change frequency table" msgstr "Cambiar tabla de frecuencias" #: src/commands.c:406 msgid "Disable signal detection" msgstr "Desactivar detección de señal" #: src/commands.c:407 msgid "Enable signal detection" msgstr "Activar detección de señal" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "Lenguaje por defecto" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "Lenguaje desconocido" #: src/commands.c:623 msgid "Change default audio standard" msgstr "Cambiar norma de audio por defecto" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "Aumentar volumen de audio" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "Norma de televisión" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "Resolución horizontal" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Cable" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Antena" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Cable con canales 100+" #: src/commands.c:709 msgid "Europe" msgstr "Europa" #: src/commands.c:717 msgid "Russia" msgstr "Rusia" #: src/commands.c:724 msgid "France" msgstr "Francia" #: src/commands.c:731 msgid "Australia" msgstr "Australia" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "Australia (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "Nueva Zelanda" #: src/commands.c:752 msgid "China Broadcast" msgstr "China" #: src/commands.c:759 msgid "South Africa" msgstr "Sudáfrica" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "Personalizada (primero ejecuta tvtime-scanner)" #: src/commands.c:783 msgid "Disabled" msgstr "Desactivado" #: src/commands.c:789 msgid "Quiet" msgstr "Bajo" #: src/commands.c:795 msgid "Medium" msgstr "Medio" #: src/commands.c:801 msgid "Full" msgstr "Completo" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s Actual: %d pixels" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "Bajo (360 pixels)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "Moderado (576 pixels)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Estándar (720 pixels)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Alta (768 pixels)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s Máximo (%d pixels)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "Reiniciar con los nuevos ajustes" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "Incrementar" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "Decrementar" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "Inversión \"2-3 pulldown\"" #: src/commands.c:962 msgid "Colour invert" msgstr "Invertir colores" #: src/commands.c:970 msgid "Mirror" msgstr "Espejo" #: src/commands.c:978 msgid "Chroma killer" msgstr "Blanco y negro" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "Configuración" #: src/commands.c:1131 msgid "Last Channel" msgstr "Último Canal" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "Gestión de canales" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "Configuración de entrada" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "Ajustes de imágen" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Procesamiento de vídeo" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Configuración de salida" #: src/commands.c:1161 msgid "Quit" msgstr "Cerrar" #: src/commands.c:1192 msgid "Exit menu" msgstr "Salir del menú" #: src/commands.c:1221 msgid "Frequency table" msgstr "Tabla de frecuencias" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "Ajuste fino" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "Cambiar origen de vídeo" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "Alternar subtítulos para sordos (sólo NTSC)" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "Alternar decodificación XDS (sólo NTSC)" #: src/commands.c:1392 msgid "Overscan" msgstr "Overscan" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Posición de la pantalla completa" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "Descripción del desentrelazador actual" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Filtros de entrada" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "Descripción del desentrelazador" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Imágen" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "Brillo" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "Contraste" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "Saturación" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Enfoque" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "Guardar ajustes actuales" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "Recargar los valores globales por defecto" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "Guardar ajustes actuales para todos los canales" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "Guardar ajustes actuales para este canal" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "Lenguaje preferido XMLTV" #: src/commands.c:1825 msgid "Favorites" msgstr "Favoritos" #: src/commands.c:1832 msgid "Add current channel" msgstr "Añadir canal actual" #: src/commands.c:1834 msgid "Exit" msgstr "Salir" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Me voy a dormir en %d minutos." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "¡Ya no tengo sueño!" #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "Usando decodificación de audio PAL-I para este canal." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "Usando decodificación de audio PAL-DK para este canal." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "Usando decodificación de audio PAL-GB para este canal." #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "Usando decodificación de audio PAL-I por defecto." #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "Usando decodificación de audio PAL-DK por defecto." #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "Usando decodificación de audio PAL-GB por defecto." #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "Canal marcado como activo en la lista de navegación." #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "Canal desactivado en la lista de navegación." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "El volumen de la capturadora no será controlado por tvtime." #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "Estableciendo el volumen de la capturadora a %d%%." #: src/commands.c:2380 msgid "Processing every input field." msgstr "Procesando cada campo de entrada." #: src/commands.c:2383 msgid "Processing every top field." msgstr "Procesando cada campo superior." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "Procesando cada campo inferior." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "La resolución horizontal será de %d pixels cuando reinicies." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "La norma de televisión será %s cuando reinicies." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "Usando lenguaje por defecto para XMLTV." #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "Usando lenguaje desconocido (%s) para XMLTV." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "Lenguaje de XMLTV es %s (%s)." #: src/commands.c:2527 msgid "All channels re-activated." msgstr "Todos los canales reactivados." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "Renumerando %d. Introduzca un núevo número de canal." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "Escáner no disponible con la detección de señal desactivada." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "Escaneando en busca de canales." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "Subtítulos para sordos desactivados." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "Subtítulos para sordos activados." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "Ningún dispositivo VBI configurado para decodificación CC." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "Decodificación de color para este canal establecida a %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "Ejecutando: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "Detección de señal activada." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "Detección de señal desactivada." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "Decodificación XDS activada." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "Decodificación XDS desactivada." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "Inversión de colores activada." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "Inversión de colores desactivada." #: src/commands.c:2822 msgid "Mirror enabled." msgstr "Espejo activado." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "Espejo desactivado." #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "Blanco y negro activado." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "Blanco y negro desactivado." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "Overscan: %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "Los ajustes de imágen por defecto han sido recuperados." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "Usando frecuencias de cable NTSC." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "Usando frecuencias de cable IRC." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "Usando frecuencias de cable HRC." #: src/commands.c:3029 msgid "Volume" msgstr "Volumen" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "" "Los ajustes de imágen actuales han sido guardados para todos los canales.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "Los ajustes de imágen actuales han sido guardados para el canal %d.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Pausa." #: src/commands.c:3310 msgid "Resumed." msgstr "Recuperado." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "Error parseando fichero de configuración %s.\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "No encontrado ningún elemento raíz XML en %s.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s no es un fichero de configuración de tvtime.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "" "Imposible parsear fichero de configuración. Los ajustes no se guardarán.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "Imposible crear un nuevo fichero de configuración.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "Error al crear fichero de configuración.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "Imposible cambiar el dueño de %s: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "tvtime es software libre, está escrito por Billy Biggs, Doug Bell y muchos\n" "otros. Para conocer los detalles y las condiciones de copia visite nuestro\n" "website en http://tvtime.net/\n" "\n" "tvtime Copyright (C) 2001, 2002, 2003 por Billy Biggs, Doug Bell,\n" "Alexander S. Belov, y Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "uso: %s [OPTION]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen modo 16:9.\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen modo 4:3.\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr "" " -b, --vbidevice=DISPOSITIVO dispositivo VBI (/dev/vbi0 por defecto).\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr "" " -c, --channel=CANAL Sintoniza el canal especificado al iniciar.\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr " -d, --device=DISPOSITIVO dispositivo video4linux (por defecto " #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=NOMBRE La tabla de frecuencias que usará tu " "sintonizador.\n" " (us-cable por defecto).\n" "\n" " Valores válidos son:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " \n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" " -F, --configfile=FICHERO Fichero de configuración adicional para cargar " "ajustes.\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help Muestra este mensaje de ayuda.\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr "" " -g, --geometry=GEOMETRIA Establece el tamaño de la ventada de salida.\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr "" " -i, --input=NUMENTRADA número de entrada de video4linux(0 por " "defecto).\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=MUESTREO Resolución horizontal de entrada\n" " (720 pixels por defecto).\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" " -k, --slave Desactiva el procesamiento de señal en tvtime " "(modo esclavo).\n" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr " -m, --fullscreen Inicia tvtime a pantalla completa.\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 msgid " -l, --borderless Start tvtime without a window border.\n" msgstr " -M, --window Inicia tvtime sin un borde en ventana.\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window Inicia tvtime en ventana.\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=NORMA La norma que se usará para la entrada. Tvtime " "soporta:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N o PAL-60 (NTSC, por defecto).\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops Imprime información de los cuadros arrojados " "(para depurarión).\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" " -S, --saveoptions Guarda las opciones de la línea de comandos al " "fichero de configuración.\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" " -t, --xmltv=FICHERO Lee las listas XMLTV del fichero dado.\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=LENG Usa XMLTV en el lenguaje dado, si está " "diponible.\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr "" " -v, --verbose Imprime mensajes de depuración por stderr.\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr " -X, --display=DISPLAY Usa el X display dado para conectarse.\n" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer= |\n" " El dispositivo mezclador y el canal para " "control\n" " El primero variante fiza el mezclador OSS " "segundo ALSA.\n" " (por defecto: default/Master)\n" "\n" " Canales válidos son:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr "" " -R, --priority=PRI Establece la prioridad del proceso con la que " "se ejecuta tvtime.\n" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" " -p, --alsainputdev=DEV Especifica un dispositivo de entrada para leer " "ALSA\n" " Ejemplos:" #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" " -p, --alsainputdev=DEV Especifica un dispositivo de salida para leer " "ALSA\n" " Ejemplos:\n" " hw:0,0\n" " disabled\n" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" " -z, --alsalatency=LATENCIA Specifica latencia de reprodução de audio ALSA " "en minisegundos\n" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "Leyendo la configuración de %s\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "" "Imposible ejecutar dos instancias de tvtime con la misma configuración.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "Guardando opciones de la línea de comandos.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "" "Imposible actualizar la configuración mientras tvtime está ejecutando.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "Sin señal" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "Mudo" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "Imposible crear %s: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "Imposible abrir %s: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" "Fallo en la inicialización UTF-8 para convertir %s: iconv_open falló (%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " Fallo entrando en el modo UTF-8 usando bind_textdomain_codeset()\n" " (devolvió %s.) ¡Esto puede causar que los mensajes sean\n" " visualizados incorrectamente! Por favor, informe de este error\n" " en %s.\n" "\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "Comandos disponibles:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "tvtime no está en ejecución.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: Imposible abrir %s: %s \n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: Comando inválido '%s'\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: Enviando comando %s con argumento %s.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: Enviando comando %s.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "Escaneando usando la norma de TV %s.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " Sintonizador no encontrado en entrada %d. Si dispones de\n" " alguno, selecciona otro diferente usando --input=.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "Escaneando desde %6.2f MHz hasta %6.2f MHz.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "Comprobando %6.2f MHz:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "¡Señal detectada!" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "Encontrado un canal en %6.2f MHz (%.2f - %.2f MHz), añadiéndolo a la lista " "de canales.\n" #~ msgid "Preferred audio mode" #~ msgstr "Modo de audio predefinido" #~ msgid "Mono" #~ msgstr "Mono" #~ msgid "Stereo" #~ msgstr "Estéreo" #~ msgid "SAP" #~ msgstr "SAP" #~ msgid "Primary Language" #~ msgstr "Lenguaje principal" #~ msgid "Secondary Language" #~ msgstr "Lenguaje secundario" #~ msgid "" #~ "\n" #~ " You are using the bttv driver, but have not configured enough\n" #~ " buffers for tvtime to process the video optimally. This is\n" #~ " true by default with bttv in kernels before 2.4.21. Please\n" #~ " set the option gbuffers=4 when loading bttv. For more\n" #~ " information see our support page at %s\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Estás usando el controlador bttv, pero no has configurado " #~ "suficientes\n" #~ " buffers para que tvtime procese el video de manera óptima. Esto " #~ "ocurre\n" #~ " por defecto con bttv en los kernels anteriores al 2.4.21. Por " #~ "favor,\n" #~ " establece la opción gbuffers=4 cuando carges bttv. Para más " #~ "información\n" #~ " visita nuestrá página de soporte en %s\n" #~ "\n" #~ msgid "Use PAL-BG audio decoding" #~ msgstr "Usar decodificación de audio PAL-BG" #~ msgid "Use PAL-DK audio decoding" #~ msgstr "Usar decodificación de audio PAL-DK" #~ msgid "Default to PAL-DK audio decoding" #~ msgstr "Decodificación de audio PAL-DK por defecto" #~ msgid "" #~ "\n" #~ " Enhanced Real Time Clock support in your kernel is necessary for\n" #~ " smooth video. We strongly recommend that you load the 'rtc' kernel\n" #~ " module before starting tvtime, and make sure that your user has\n" #~ " access to the device file (/dev/rtc or /dev/misc/rtc). See our\n" #~ " support page at %s for more information.\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " El soporte de \"Enhanced Real Time Clock\" en tu kernel es necesario " #~ "para\n" #~ " reproducir video suavemente. Recomendamos encarecidamente que carges " #~ "el módulo\n" #~ " 'rtc' en el kernel antes de ejecutar tvtime, y asegúrate que tu " #~ "usuario\n" #~ " tiene acceso al fichero de dispositivo (/dev/rtc o /dev/mism/rtc). " #~ "Consulta\n" #~ " nuestra página de soporte en %s para más información.\n" #~ "\n" #~ msgid "" #~ "\n" #~ " Failed to get 1024 Hz resolution from your RTC device. High\n" #~ " resolution access is necessary for video to be smooth. Please\n" #~ " run tvtime as root, set tvtime as SUID root, or change the\n" #~ " maximum RTC resolution allowed for user processes by running this\n" #~ " command as root:\n" #~ " sysctl -w dev.rtc.max-user-freq=1024\n" #~ " See our support page at %s for more information.\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " No se pudo alcanzar los 1024 Hz de resolución desde tu dispositivo " #~ "RTC.\n" #~ " Acceder a una alta resolución es necesario para que el video vaya " #~ "suave.\n" #~ " Por favor, ejecuta tvtime como root, establece tvtime como SUID root, " #~ "o\n" #~ " cambia la máxima resolución del RTC permitida a los procesos de " #~ "usuario\n" #~ " ejecutando este comando como root:\n" #~ " sysctl -w dev.rtc.max-user-freq=1024\n" #~ " Visita nuestra página de soporte en %s para más información.\n" #~ "\n" tvtime-1.0.11/po/ru.po0000664000175000017500000021255612663345675011465 00000000000000# Russian translation of tvtime. # Copyright (C) 2003 Billy Biggs # This file is distributed under the same license as the tvtime package. # Alexander Belov , 2003. # msgid "" msgstr "" "Project-Id-Version: tvtime cvs\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2006-12-03 09:21+0500\n" "Last-Translator: Denis V. Sirotkin \n" "Language-Team: Alexander Belov \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "ÐаÑтройка ÑÐ³Ð»Ð°Ð¶Ð¸Ð²Ð°Ð½Ð¸Ñ Ñ‡ÐµÑ€ÐµÐ·ÑтрочноÑти" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "Ðазад" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "ÐŸÐ¾Ð»Ð½Ð°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ñ€Ð°Ð·Ð²Ñ‘Ñ€Ñ‚ÐºÐ°: %.2f кадров/Ñек." #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "ÐŸÐ¾Ð»Ð¾Ð²Ð¸Ð½Ð½Ð°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ñ€Ð°Ð·Ð²Ñ‘Ñ€Ñ‚ÐºÐ° верхних облаÑтей: %.2f кадров/Ñек." #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "ÐŸÐ¾Ð»Ð¾Ð²Ð¸Ð½Ð½Ð°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ñ€Ð°Ð·Ð²Ñ‘Ñ€Ñ‚ÐºÐ° нижних облаÑтей: %.2f кадров/Ñек." #: src/tvtime.c:894 msgid "Overscan setting" msgstr "Приближение" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "Изменение размера изображениÑ" #: src/tvtime.c:909 msgid "16:9 output" msgstr "размер 16:9" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "Изменить размеры окна до размеров Ñодержимого" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "Полный Ñкран" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "УÑтановка полноÑкранного положениÑ" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "Ð’Ñегда впереди других окон" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Скрытные Ñнимки Ñкрана" #: src/tvtime.c:968 msgid "Centre" msgstr "Ð’ центре" #: src/tvtime.c:975 msgid "Top" msgstr "Вверху" #: src/tvtime.c:981 msgid "Bottom" msgstr "Внизу" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "ЧаÑтота кадров" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "ХарактериÑтики" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "Ðлгоритм ÑÐ³Ð»Ð°Ð¶Ð¸Ð²Ð°Ð½Ð¸Ñ Ñ‡ÐµÑ€ÐµÐ·ÑтрочноÑти" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "Сигнал: %s - %dx%d точек" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "ЧаÑтота кадров в Ñекунду: %.2f" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "Среднее Ð²Ñ€ÐµÐ¼Ñ ÐºÐ¾Ð¿Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ ÐºÐ°Ð´Ñ€Ð¾Ð²: %.2f мÑек (%.0f Мб/Ñек)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "Среднее Ð²Ñ€ÐµÐ¼Ñ Ð¿ÐµÑ€ÐµÑ€Ð¸Ñовки: %5.2f мÑек" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Пропущенные кадры: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Межкадровое времÑ: %4.1f/%4.1f мÑек (должно быть %4.1f мÑек)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + приближение" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1.85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2.35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 центр" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "16:10" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + приближение" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "УÑтановки изменённого размера Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ (иÑкаженное изображение)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "УÑтановки измененного размера Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ (4:3)" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: не могу выделить памÑть.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "Ðе могу открыть уÑтройÑтво захвата '%s'." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " Возможно ваш драйвер платы захвата, %s, не поддерживает\n" " захват c полной чаÑтотой кадров. Возможно он неправильно\n" " наÑтроен или вы выбрали ошибочное уÑтройÑтво\n" " захвата (%s).\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " Драйвер вашей платы захвата, %s, не предоÑтавлÑет\n" " Ð´Ð»Ñ tvtime доÑтаточного количеÑтва буферов Ð´Ð»Ñ Ð¾Ð±Ñ€Ð°Ð±Ð¾Ñ‚ÐºÐ¸\n" " видеопотока. УбедитеÑÑŒ в документации на драйвер,\n" " можете ли вы увеличить количеÑтво буферов, предоÑтавлÑемых\n" " программам и пришлите Ñти данные разработчикам tvtime\n" " на %s\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "Ошибка инициализации Ñкрана, отключено.\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "Ðет Ñигнала" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "Ðе могу Ñоздать FIFO, удалённое управление tvtime отключено.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "Ошибка инициализации Ñкрытыех титров, отключено.\n" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "Режим \"вÑегда впереди других окон\" включен." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "Режим \"вÑегда впереди других окон\" выключен." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "Включен режим 16:9." #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "Включен режим 4:3" #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "Ð¡Ð¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¸ Ñъёме Ñкрана отключены." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "Ð¡Ð¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¸ Ñъёме Ñкрана включены." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "2-3 Ð¿Ð¾Ð½Ð¸Ð¶ÐµÐ½Ð½Ð°Ñ Ð¸Ð½Ð²ÐµÑ€ÑÐ¸Ñ Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð°." #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "2-3 Ð¿Ð¾Ð½Ð¸Ð¶ÐµÐ½Ð½Ð°Ñ Ð¸Ð½Ð²ÐµÑ€ÑÐ¸Ñ Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½Ð°." #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "2-3 Ð¿Ð¾Ð½Ð¸Ð¶ÐµÐ½Ð½Ð°Ñ Ð¸Ð½Ð²ÐµÑ€ÑÐ¸Ñ Ð½Ðµ работает в вашем Ñтандарте ТВ." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Снимок Ñкрана: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "ПерезапуÑк tvtime.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "СпаÑибо за иÑпользование tvtime.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " Ошибка Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¸Ð²ÐµÐ»ÐµÐ³Ð¸Ð¹ ÑÑƒÐ¿ÐµÑ€Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ root: %s.\n" " tvtime завершает работу Ð´Ð»Ñ Ð¸Ð·Ð±ÐµÐ¶Ð°Ð½Ð¸Ñ Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼ Ñ Ð±ÐµÐ·Ð¾Ð¿Ð°ÑноÑтью.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "ЗапуÑк %s.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "Текущий" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ телепрограмме отÑутÑтвует" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "Следующий: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "Перенумеровать текущий канал" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "Текущий канал активирован" #: src/commands.c:346 msgid "Stop channel scan" msgstr "ОÑтановка ÑÐºÐ°Ð½Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ ÐºÐ°Ð½Ð°Ð»Ð¾Ð²" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "Сканирование каналов" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "Ðктивировать вÑе каналы" #: src/commands.c:364 msgid "Finetune current channel" msgstr "ПодÑтроить текущий канал" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "Изменить режим Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ ÐºÐ°Ð±ÐµÐ»ÑŒÐ½Ð¾Ð³Ð¾ NTSC" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "Показывать Ñтот канал в режиме SECAM" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "Показывать Ñтот канал в режиме PAL" #: src/commands.c:393 msgid "Switch audio standard" msgstr "Стандарт звука Ð´Ð»Ñ Ñтого канала" #: src/commands.c:400 msgid "Change frequency table" msgstr "Изменить таблицу каналов" #: src/commands.c:406 msgid "Disable signal detection" msgstr "Выключить обнаружение входного Ñигнала" #: src/commands.c:407 msgid "Enable signal detection" msgstr "Включить обнаружение входного Ñигнала" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "ОÑновной Ñзык" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "Язык неизвеÑтен" #: src/commands.c:623 msgid "Change default audio standard" msgstr "Изменить формат звука по умолчанию" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "Дополнительное уÑиление громкоÑти звука" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "Телевизионный Ñтандарт" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "Горизонтальное разрешение" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Кабельное" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Широковещательное" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Кабельное Ñ ÐºÐ°Ð½Ð°Ð»Ð°Ð¼Ð¸ 100+" #: src/commands.c:709 msgid "Europe" msgstr "Европа" #: src/commands.c:717 msgid "Russia" msgstr "РоÑÑиÑ" #: src/commands.c:724 msgid "France" msgstr "ФранциÑ" #: src/commands.c:731 msgid "Australia" msgstr "ÐвÑтралиÑ" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "ÐвÑÑ‚Ñ€Ð°Ð»Ð¸Ñ (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "ÐÐ¾Ð²Ð°Ñ Ð—ÐµÐ»Ð°Ð½Ð´Ð¸Ñ" #: src/commands.c:752 msgid "China Broadcast" msgstr "Китай" #: src/commands.c:759 msgid "South Africa" msgstr "Ð®Ð¶Ð½Ð°Ñ Ðфрика" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "Другое (запуÑтите tvtime-scanner)" #: src/commands.c:783 msgid "Disabled" msgstr "Отключено" #: src/commands.c:789 msgid "Quiet" msgstr "Тихий" #: src/commands.c:795 msgid "Medium" msgstr "Средний" #: src/commands.c:801 msgid "Full" msgstr "Полный" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s: %d точек" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "Ðизкое (360 точек)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "Умеренное (576 точек)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Стандартное (720 точек)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Ð’Ñ‹Ñокое (768 точек)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s в макÑимуме (%d точек)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "ПерезапуÑтить Ñ Ð½Ð¾Ð²Ñ‹Ð¼Ð¸ уÑтановками" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "Увеличить" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "Уменьшить" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "2-3 Ð¿Ð¾Ð½Ð¸Ð¶ÐµÐ½Ð½Ð°Ñ Ð¸Ð½Ð²ÐµÑ€ÑиÑ" #: src/commands.c:962 msgid "Colour invert" msgstr "Инвертировать цвета" #: src/commands.c:970 msgid "Mirror" msgstr "Зеркальное отображение" #: src/commands.c:978 msgid "Chroma killer" msgstr "Чернобелое изображение" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "ÐаÑтройки" #: src/commands.c:1131 msgid "Last Channel" msgstr "" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "Управление каналами" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "ОÑновные наÑтройки" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "ÐаÑтройки изображениÑ" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Обработка видеоÑигнала" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Дополнительные наÑтройки изображениÑ" #: src/commands.c:1161 msgid "Quit" msgstr "" #: src/commands.c:1192 msgid "Exit menu" msgstr "Выход из меню" #: src/commands.c:1221 msgid "Frequency table" msgstr "ЧаÑÑ‚Ð¾Ñ‚Ð½Ð°Ñ Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ð°" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "ПодÑтройка" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "Изменить входной канал" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "Переключение Ñкрытых титров" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "Переключение XDS декодированиÑ" #: src/commands.c:1392 msgid "Overscan" msgstr "Приближение" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Положение Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¸ полном Ñкране" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "ОпиÑание текущего режима обработки черезÑтрочноÑти" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Фильтры" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "ОпиÑание режима обработки черезÑтрочноÑти" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Изображение" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "ЯркоÑть" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "КонтраÑноÑть" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "ÐаÑыщенноÑть" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Оттенки" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "Сохранить текущие уÑтановки" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "СброÑить уÑтановки к начальным" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "Сохранить текущие уÑтановки как начальные" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "Сохранить текущие уÑтановки Ð´Ð»Ñ Ñтого канала" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "Предпочитаемый Ñзык XMLTV" #: src/commands.c:1825 msgid "Favorites" msgstr "Избранное" #: src/commands.c:1832 msgid "Add current channel" msgstr "Добавить текущий канал" #: src/commands.c:1834 msgid "Exit" msgstr "Выход" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "БездейÑтвовать %d минут." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "Отключить бездейÑтвие" #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "ИÑпользование декодера звука PAL-I." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "ИÑпользование декодера звука PAL-DK." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "ИÑпользование декодера звука PAL-BG." #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "По умолчанию декодирование звука PAL-I." #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "По умолчанию декодирование звука PAL-DK." #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "По умолчанию декодирование звука PAL-BG." #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "Канал помечен активным" #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "Канал отключен" #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "tvtime не будет уÑтанавливать громкоÑть платы захвата" #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "УÑтанавливаю громкоÑти платы захвата в %d%%." #: src/commands.c:2380 msgid "Processing every input field." msgstr "Обработка каждой входÑщей облаÑти" #: src/commands.c:2383 msgid "Processing every top field." msgstr "Обаботка каждой верхней облаÑти" #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "Обаботка каждой нижней облаÑти." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "ПоÑле перезапуÑка горизонтальное разрешение будет %d точек." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "ПоÑле перезапуÑка телевизионный Ñтандарт будет %s." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "ИÑпользую оÑновной Ñзык Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ñ‹Ñ… XMLTV" #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "ИÑпользую неизвеÑтный Ñзык (%s) Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ñ‹Ñ… XMLTV." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "Язык XMLTV уÑтановлен в %s (%s)." #: src/commands.c:2527 msgid "All channels re-activated." msgstr "Ð’Ñе каналы активированы" #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "Перенумеровать канал %d. Введите новый номер канала" #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "Сканер не работает при отключенном автоопределении входного Ñигнала" #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "Сканирование каналов." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "Скрытые титры выключены" #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "Скрытые титры включены" #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "УÑтройчтво VBI не наÑтроено Ð´Ð»Ñ Ð´ÐµÐºÐ¾Ð´Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ CC" #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "Декодирование цвета уÑтановлено в %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "Запущен: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "Ðвтоопределение Ñигнала включено" #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "Ðвтоопределение Ñигнала выключено" #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "Декодирование XDS включено" #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "Декодирование XDS выключено" #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "Цвета инвертированы" #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "Ðормальные цвета" #: src/commands.c:2822 msgid "Mirror enabled." msgstr "Зеркальное изображение" #: src/commands.c:2824 msgid "Mirror disabled." msgstr "Ðормальное изображение" #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "Чернобелое изображение" #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "Цветное изображение" #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "Приближение: %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "УÑтановки Ð´Ð»Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñброшены к начальным" #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "ИÑпользую номинальные кабельные чаÑтоты NTSC." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "ИÑпользую кабельные чаÑтоты IRC." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "ИÑпользую кабельные чаÑтоты HRC." #: src/commands.c:3029 msgid "Volume" msgstr "ГромкоÑть" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "Текущие уÑтановки Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñохранены как начальные.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "Текущие уÑтановки Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñохранены Ð´Ð»Ñ Ñтого канала %d.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Пауза." #: src/commands.c:3310 msgid "Resumed." msgstr "Продолжение." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "Ошибка в файле конфигурации %s.\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "Ð’ %s не найден корневой Ñлемент XML.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s не ÑвлÑетÑÑ ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ð¾Ð½Ð½Ñ‹Ð¼ файлом tvtime.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "" "Файл конфигурации не может быть обработан.\n" "ÐаÑтройки Ñохранены не будут.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "Ðе могу Ñоздать новый конфигурационный файл.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "Ошибка ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ð¾Ð½Ð½Ð¾Ð³Ð¾ файла.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "Ðе могу изменить владельца %s: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "tvtime ÑвлÑетÑÑ Ñвободным программным обеÑпечением, напиÑанным\n" "Билли БигÑом (Billy Biggs), Даугом БÑллом (Doug Bell) и многими другими\n" ".УÑÐ»Ð¾Ð²Ð¸Ñ ÐºÐ¾Ð¿Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¸ другую информацию Ñмотрите на нашем Ñайте\n" "http://tvtime.net/\n" "\n" "ÐвторÑкие права на tvtime (C) 2001, 2002, 2003 принадлежат Билли БигÑу, " "Даугу БÑллу,\n" "ÐлекÑандру С. Белову (Alexander S. Belov), и Ðчиму Шнайдеру\n" "(Achim Schneider).\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "иÑпользование: %s [ОПЦИЯ]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen Режим 16:9.\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen Режим 4:3.\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr "" " -b, --vbidevice=DEVICE УÑтройÑтво VBI (по умолчанию /dev/vbi0).\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr "" " -c, --channel=CHANNEL При загрузке переключитьÑÑ Ð½Ð° указанный канал.\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 #, fuzzy msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr "" " -d, --device=DEVICE УÑтройÑтво video4linux (по умолчанию /dev/" "video0).\n" #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=NAME Таблица чаÑтот.\n" " (по умолчанию us-cable).\n" "\n" " ДоÑтупные значениÑ:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (Ñначало запуÑтите tvtime-scanner)\n" "\n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" " -F, --configfile=FILE Дополнительный файл Ð´Ð»Ñ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ¸ наÑтроек.\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help Показать Ñто Ñообщение.\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr " -g, --geometry=GEOMETRY УÑтановить размер окна вывода.\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr "" " -i, --input=INPUTNUM Ðомер входа video4linux (по умолчанию 0).\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=SAMPLING Горизонтальное разрешение\n" " (по умолчанию 720 точек).\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" " -k, --slave Отключить обработку входного Ñигнала в\n" " tvtime (ведомый режим).\n" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr "" " -m, --fullscreen ЗапуÑтить tvtime в полноÑкранном режиме.\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 #, fuzzy msgid " -l, --borderless Start tvtime without a window border.\n" msgstr " -M, --window ЗапуÑтить tvtime в оконном режиме.\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window ЗапуÑтить tvtime в оконном режиме.\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=NORM Телевизионный Ñтандарт. tvtime поддерживает:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N или PAL-60 (по умолчанию NTSC).\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops Печатать ÑоÑтоÑние об отброшенных кадрах\n" " (Ð´Ð»Ñ Ð¾Ñ‚Ð»Ð°Ð´ÐºÐ¸).\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" " -S, --saveoptions Сохранить опции командной Ñтроки в\n" " конфигурационный файл.\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" " -t, --xmltv=FILE Загрузить ÑпиÑки XMLTV из указанного файла.\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=LANG ИÑпользовать данные XMLTV в указанном\n" " Ñзыке, еÑли доÑтупно.\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr " -v, --verbose Печатать отладочные ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð² stderr.\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr "" " -X, --display=DISPLAY ИÑпользовать Ð´Ð»Ñ Ð¿Ð¾Ð´ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ñ‹Ð¹ Ñкран " "X.\n" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 #, fuzzy msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer=DEVICE[:CH] ИÑпользовать уÑтройÑтво микшера и канал.\n" " (по умолчанию /dev/mixer:line)\n" "\n" " ДоÑтупные каналы:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr "" " -R, --priority=PRI УÑтановить приоритет процеÑÑа tvtime at.\n" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "Чтение конфигурации из %s\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "ÐÐµÐ»ÑŒÐ·Ñ Ð·Ð°Ð¿ÑƒÑтить две копии tvtime Ñ Ð¾Ð´Ð¸Ð½Ð°ÐºÐ¾Ð²Ñ‹Ð¼Ð¸ наÑтройками.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "СохранÑÑŽ опции командной Ñтроки.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "ÐÐµÐ»ÑŒÐ·Ñ Ð¾Ð±Ð½Ð¾Ð²Ð¸Ñ‚ÑŒ конфигурацию, пока tvtime запущен.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "Ðет Ñигнала" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "Звук отключен" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "Ðе могу Ñоздать %s: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "Ðе могу открыть %s: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "Ошибка инициализации конвертора UTF-8 в %s: ошибка iconv_open (%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " Ошибка входа в режим UTF-8 через bind_textdomain_codeset()\n" " (возвращено %s.) Это может вызвать неправильное\n" " отображение Ñообщений! ПожалуйÑта, отправте отчёт\n" " об ошибке на %s.\n" "\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "ДоÑтупные команды:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "tvtime не запущен.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: Ðе могу открыть %s: %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: ÐÐµÐ²ÐµÑ€Ð½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° '%s'\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: ПоÑылаю команду %s Ñ Ð°Ñ€Ð³ÑƒÐ¼ÐµÐ½Ñ‚Ð¾Ð¼ %s.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: ПоÑылаю команду %s.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "Сканирование телевизионного Ñтандарта %s.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " Ðа входе %d тюнер не обнаружен. ЕÑли тюнер ÑущеÑтвует,\n" " выберете другой вход Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ --input=.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "Сканирую от %6.2f до %6.2f МГц.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "ПроверÑÑŽ чаÑтоту %6.2f МГц:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "Сигнал обнаружен" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "Ðа чаÑтоте %6.2f МГц (%.2f - %.2f МГц) найден канал, добавлÑÑŽ в ÑпиÑок " "каналов.\n" #~ msgid "Preferred audio mode" #~ msgstr "ÐаÑтройка звука" #~ msgid "Mono" #~ msgstr "Моно" #~ msgid "Stereo" #~ msgstr "Стерео" #~ msgid "SAP" #~ msgstr "SAP" #~ msgid "Primary Language" #~ msgstr "ОÑновной Ñзык" #~ msgid "Secondary Language" #~ msgstr "Дополнительный Ñзык" #~ msgid "" #~ "\n" #~ " You are using the bttv driver, but have not configured enough\n" #~ " buffers for tvtime to process the video optimally. This is\n" #~ " true by default with bttv in kernels before 2.4.21. Please\n" #~ " set the option gbuffers=4 when loading bttv. For more\n" #~ " information see our support page at %s\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Ð’Ñ‹ иÑпользуете драйвер bttv, но не наÑтроили доÑтаточное\n" #~ " количеÑтво буферов Ð´Ð»Ñ Ð¾Ð¿Ñ‚Ð¸Ð¼Ð°Ð»ÑŒÐ½Ð¾Ð¹ обработки видеопотока\n" #~ " tvtime. Такое чаÑто бывает Ñ bttv в Ñдрах до 2.4.21.\n" #~ " УÑтановите опцию gbuffers=4 при загрузке bttv. Дополнительную\n" #~ " информацию Ñмотрите на нашей Ñтранице поддержки %s\n" #~ "\n" #~ msgid "Frame drop setting" #~ msgstr "ПропуÑк кадров" #~ msgid "" #~ "tvtime: Output driver failed to initialize: no video output available.\n" #~ msgstr "" #~ "Ðе могу инициализаровать драйвер вывода видео: нет доÑтупных уÑтройÑтв.\n" #~ msgid "tvtime: Can't initialize input filters.\n" #~ msgstr "Ðе могу инициализировать фильтры на входном Ñигнале.\n" #~ msgid "tvtime: Can't initialize output filters.\n" #~ msgstr "Ðе могу инициализировать фильтры на выходном Ñигнале.\n" #~ msgid "tvtime: Can't initialize performance monitor, exiting.\n" #~ msgstr "" #~ "Ðе могу инициализировать монитор ÑÐ»ÐµÐ¶ÐµÐ½Ð¸Ñ Ð·Ð° производительноÑтью, " #~ "завершение работы\n" #~ msgid "tvtime: Can't create stationmanager (no memory?), exiting.\n" #~ msgstr "" #~ "Ðе могу Ñоздать управление ÑтанциÑми, возможно не хватает памÑти, " #~ "завершение работы.\n" #, fuzzy #~ msgid "Can't open RVR file '%s'." #~ msgstr "Ðе могу открыть rvr файл '%s'." #~ msgid "" #~ "tvtime: Can only get %d frame buffers from V4L. Not enough to continue. " #~ "Exiting.\n" #~ msgstr "" #~ "V4l буфер дает зазервировать только %d кадров. Этого недоÑтаточно Ð´Ð»Ñ " #~ "работы.Завершение работы.\n" #~ msgid "" #~ "tvtime: Can only get %d frame buffers from V4L. Limiting deinterlace " #~ "plugins\n" #~ "tvtime: to those which only need 1 field.\n" #~ msgstr "" #~ "V4l буфер дает зазервировать только %d кадров. Ограничение Ð´Ð»Ñ Ð¼Ð¾Ð´ÑƒÐ»ÐµÐ¹ " #~ "ÑÐ³Ð»Ð°Ð¶Ð¸Ð²Ð°Ð½Ð¸Ñ Ñ‡ÐµÑ€ÐµÐ·ÑтрочноÑти\n" #~ "иÑпользуетÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ 1 облаÑть.\n" #~ msgid "" #~ "tvtime: Can only get %d frame buffers from V4L. Limiting deinterlace " #~ "plugins\n" #~ "tvtime: to those which only need 2 fields.\n" #~ msgstr "" #~ "V4l буфер дает зазервировать только %d кадров. Ограничение Ð´Ð»Ñ Ð¼Ð¾Ð´ÑƒÐ»ÐµÐ¹ " #~ "ÑÐ³Ð»Ð°Ð¶Ð¸Ð²Ð°Ð½Ð¸Ñ Ñ‡ÐµÑ€ÐµÐ·ÑтрочноÑти\n" #~ "иÑпользуетÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ 2 облаÑти.\n" #~ msgid "" #~ "\n" #~ "*** You are using the bttv driver, but without enough gbuffers " #~ "available.\n" #~ "*** See the support page at %s for information\n" #~ "*** on how to increase your gbuffers setting.\n" #~ "\n" #~ msgstr "" #~ "\n" #~ "*** Ваш bttv драйвер работает Ñ Ð¼Ð°Ð»ÐµÐ½ÑŒÐºÐ¸Ð¼ размером параметра gbuffers.\n" #~ "*** Прочтите на %s информацию о том\n" #~ "*** как увеличить уÑтановки параметра gbuffers\n" #~ "\n" #~ msgid "tvtime: No deinterlacing methods available, exiting.\n" #~ msgstr "" #~ "Ðет доÑтупных ÑпоÑобов ÑÐ³Ð»Ð°Ð¶Ð¸Ð²Ð°Ð½Ð¸Ñ Ñ‡ÐµÑ€ÐµÐ·ÑтрочноÑти, завершение работы.\n" #~ msgid "tvtime: OSD initialization failed, OSD disabled.\n" #~ msgstr "Ðе могу инициализоровать ОSD, работаем без OSD.\n" #~ msgid "" #~ "tvtime: Card requires conversion from UYVY, but we failed to initialize " #~ "our converter!\n" #~ msgstr "" #~ "ТребуетÑÑ Ð¿Ñ€ÐµÐ¾Ð±Ñ€Ð°Ð·Ð¾Ð²Ð°Ð½Ð¸Ðµ Ñигнала UYVY. Ð˜Ð½Ð¸Ñ†Ð¸Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ ÐºÐ¾Ð½Ð²ÐµÑ€Ñ‚Ð¾Ñ€Ð° не " #~ "прошла\n" #~ msgid "tvtime: Cannot find FIFO directory. FIFO disabled.\n" #~ msgstr "Ðе могу найти каталог Ð´Ð»Ñ FIFO. FIFO недоÑтупно.\n" #~ msgid "tvtime: %s is not a directory. FIFO disabled.\n" #~ msgstr "%s не ÑвлÑетÑÑ ÐºÐ°Ñ‚Ð°Ð»Ð¾Ð³Ð¾Ð¼. FIFO недоÑтупно.\n" #~ msgid "tvtime: You do not own %s. FIFO disabled.\n" #~ msgstr "Ð’Ñ‹ не ÑвлÑетеÑÑŒ владельцем %s. FIFO недоÑтупно.\n" #, fuzzy #~ msgid "" #~ "tvtime: Cannot stat %s: %s\n" #~ "tvtime: FIFO disabled.\n" #~ msgstr "Ðе могу получить ÑÑ‚Ð°Ñ‚ÑƒÑ %s. FIFO недоÑтупно.\n" #~ msgid "tvtime: Cannot find FIFO file. Failed to create FIFO object.\n" #~ msgstr "Ðе могу найти FIFO файл. Ошибка ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð¾Ð±ÑŠÐµÐºÑ‚Ð° FIFO.\n" #~ msgid "" #~ "tvtime: Not reading input from FIFO. Failed to create FIFO object.\n" #~ msgstr "Ðе могу прочитать из FIFO. Ошибка ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð¾Ð±ÑŠÐµÐºÑ‚Ð° FIFO.\n" #~ msgid "tvtime: Could not setup console.\n" #~ msgstr "Ðе могу наÑтроить конÑоль.\n" #~ msgid "tvtime: Can't create input handler.\n" #~ msgstr "Ðе могу Ñоздать управление входÑщим Ñигналом.\n" #~ msgid "tvtime: Could not create vbiscreen, closed captions unavailable.\n" #~ msgstr "Ðе могу Ñоздать vbiscreen, Ñкрытые титры недоÑтупны.\n" #~ msgid "tvtime: Could not create vbidata.\n" #~ msgstr "Ðе могу Ñоздать vbidata.\n" #~ msgid "Window set as always-on-top." #~ msgstr "Режим 'поверх вÑех окон'" #~ msgid "Window set to normal stacking." #~ msgstr "Режим нормального Ð¿Ð¾Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð¾ÐºÐ½Ð°" #~ msgid "2-3 Pulldown detection disabled." #~ msgstr "2-3 режим Ð¿Ð¾Ð½Ð¸Ð¶ÐµÐ½Ð¸Ñ Ð²Ñ‹ÐºÐ»ÑŽÑ‡ÐµÐ½" #~ msgid "2-3 Pulldown detection enabled." #~ msgstr "2-3 режим Ð¿Ð¾Ð½Ð¸Ð¶ÐµÐ½Ð¸Ñ Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½" #, fuzzy #~ msgid "tvtime: Stats using '%s' at %dx%d%s.\n" #~ msgstr "ИÑпользуетÑÑ '%s' - %dx%d.\n" #~ msgid "tvtime: Cleaning up.\n" #~ msgstr "ОчиÑтка.\n" #, fuzzy #~ msgid "" #~ "\n" #~ "*** WARNING: This is a DEVELOPMENT version of tvtime.\n" #~ "*** Please do not redistribute snapshots, and please submit\n" #~ "*** bug reports for released versions only!\n" #~ "\n" #~ msgstr "" #~ "\n" #~ "*** Внимание: Ð’Ñ‹ иÑпользуете ÐЕСТÐБИЛЬÐУЮ верÑию tvtime.\n" #~ "*** Мы даже ошибаемÑÑ Ð² процеÑÑе разработки. ПожалуйÑта, поÑылайте\n" #~ "*** ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð¾Ð± ошибках только о Ñтабильных верÑиÑÑ…!!!\n" #~ "\n" #~ msgid "" #~ "\n" #~ "*** /dev/rtc support is needed for smooth video. We STRONGLY recommend\n" #~ "*** that you load the 'rtc' kernel module before starting tvtime,\n" #~ "*** and make sure that your user has access to the device file.\n" #~ "*** See our support page at %s for more information\n" #~ "\n" #~ msgstr "" #~ "\n" #~ "*** Ð”Ð»Ñ Ñглаженнго Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð½ÐµÐ¾Ð±Ñ…Ð¾Ð´Ð¸Ð¼ /dev/rtc. Мы очень рекомендуем\n" #~ "*** загружать модуль Ñдра 'rtc' перед запуÑком tvtime, и убедитеÑÑŒ в " #~ "том,\n" #~ "*** что у Ð’Ð°Ñ ÐµÑть доÑтуп до /dev/rtc.\n" #~ "*** Более полную информацию можно получить на Ñтранице %s\n" #~ "\n" #~ msgid "" #~ "\n" #~ "*** Failed to get 1024hz resolution from /dev/rtc. This will cause\n" #~ "*** video to not be smooth. Please run tvtime as root, or change\n" #~ "*** the maximum resolution by running this command as root:\n" #~ "*** sysctl -w dev.rtc.max-user-freq=1024\n" #~ "*** See our support page at %s for more information\n" #~ "\n" #~ msgstr "" #~ "\n" #~ "*** Ðе уÑтанавливаетÑÑ Ñ‡Ð°Ñтота 1024Гц уÑтройÑтва /dev/rtc. Это может\n" #~ "*** повлиÑть на Ñглаживание изображениÑ. ЗапуÑтите tvtime от \n" #~ "*** Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ root или измените Ñтот параметр командой\n" #~ "*** sysctl -w dev.rtc.max-user-freq=1024\n" #~ "*** Ð”Ð»Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾Ð´Ñ€Ð¾Ð±Ð½Ð¾Ð¹ информации зайдите на %s\n" #~ "\n" #~ msgid "BT8x8 luma correction" #~ msgstr "BT8x8 Ñ†Ð²ÐµÑ‚Ð¾Ð²Ð°Ñ ÐºÐ¾Ñ€Ñ€ÐµÐºÑ†Ð¸Ñ" #~ msgid "Sharpness" #~ msgstr "РезкоÑть" #~ msgid "Colour" #~ msgstr "Цвет" #~ msgid "Add current station" #~ msgstr "Добавить текущую Ñтанцию" #~ msgid "Luma correction enabled." #~ msgstr "Включена ÐºÐ¾Ñ€Ñ€ÐµÐºÑ†Ð¸Ñ Ñ†Ð²ÐµÑ‚Ð°" #~ msgid "Luma correction disabled." #~ msgstr "ÐšÐ¾Ñ€Ñ€ÐµÐºÑ†Ð¸Ñ Ñ†Ð²ÐµÑ‚Ð° выключена" #~ msgid "Luma correction value: %.1f" #~ msgstr "Значение коррекции цвета: %.1f" #~ msgid "Input Configuration" #~ msgstr "ÐаÑтройка входÑщих параметров" #~ msgid "" #~ "usage: %s [OPTION]...\n" #~ "\n" #~ " -a, --widescreen 16:9 mode.\n" #~ " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" #~ " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" #~ " -d, --device=DEVICE video4linux device (defaults to /dev/" #~ "video0).\n" #~ " -D, --driver=NAME Output driver to use: Xv, DirectFB, mga,\n" #~ " xmga, matroxtv or SDL (defaults to Xv).\n" #~ " -f, --frequencies=NAME The frequency table to use for the tuner.\n" #~ " (defaults to us-cable).\n" #~ "\n" #~ " Valid values are:\n" #~ " us-cable\n" #~ " us-cable100\n" #~ " us-broadcast\n" #~ " china-broadcast\n" #~ " japan-cable\n" #~ " japan-broadcast\n" #~ " europe\n" #~ " australia\n" #~ " australia-optus\n" #~ " newzealand\n" #~ " france\n" #~ " russia\n" #~ " custom (first run tvtime-scanner)\n" #~ "\n" #~ " -F, --configfile=FILE Additional config file to load settings " #~ "from.\n" #~ " -h, --help Show this help message.\n" #~ " -H, --height=HEIGHT Output window height (defaults to 576).\n" #~ " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" #~ " -I, --inputwidth=SAMPLING video4linux input scanline sampling\n" #~ " (defaults to 720).\n" #~ " -k, --slave Disables input handling in tvtime (slave " #~ "mode).\n" #~ " -m, --fullscreen Start tvtime in fullscreen mode.\n" #~ " -M, --window Start tvtime in window mode.\n" #~ " -n, --norm=NORM The norm to use for the input. tvtime " #~ "supports:\n" #~ " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" #~ " PAL-N or PAL-60 (defaults to NTSC).\n" #~ " -p, --fspos=POS Set the fullscreen position: top, bottom or\n" #~ " centre (default).\n" #~ " -r, --rvr=FILE RVR recorded file to play (for debugging).\n" #~ " -s, --showdrops Print stats on frame drops (for debugging).\n" #~ " -S, --saveoptions Save command line options to the config " #~ "file.\n" #~ " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" #~ " -v, --verbose Print debugging messages to stderr.\n" #~ " -x, --mixer=DEVICE[:CH] The mixer device and channel to control.\n" #~ " (defaults to /dev/mixer:line)\n" #~ "\n" #~ " Valid channels are:\n" #~ " vol, bass, treble, synth, pcm, speaker, " #~ "line,\n" #~ " mic, cd, mix, pcm2, rec, igain, ogain, " #~ "line1,\n" #~ " line2, line3, dig1, dig2, dig3, phin, " #~ "phout,\n" #~ " video, radio, monitor\n" #~ msgstr "" #~ "иÑпользование: %s [ОПЦИИ]...\n" #~ "\n" #~ " -a, --widescreen Режим 16:9.\n" #~ " -b, --vbidevice=DEVICE УÑтройÑтво VBI (по умолчанию /dev/vbi0).\n" #~ " -c, --channel=CHANNEL ПоÑле запуÑка включить указанный канал.\n" #~ " -d, --device=DEVICE УÑтройÑтво video4linux (по умолчанию /dev/" #~ "video0).\n" #~ " -D, --driver=NAME Выводить через: Xv, DirectFB, mga,\n" #~ " xmga, matroxtv или SDL (по умолчанию Xv).\n" #~ " -f, --frequencies=NAME ЧаÑÑ‚Ð¾Ñ‚Ð½Ð°Ñ Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ð°.\n" #~ " (по умолчанию us-cable).\n" #~ "\n" #~ " Возможные значениÑ:\n" #~ " us-cable\n" #~ " us-cable100\n" #~ " us-broadcast\n" #~ " china-broadcast\n" #~ " japan-cable\n" #~ " japan-broadcast\n" #~ " europe\n" #~ " australia\n" #~ " australia-optus\n" #~ " newzealand\n" #~ " france\n" #~ " russia\n" #~ " custom (запуÑтите tvtime-scanner)\n" #~ "\n" #~ " -F, --configfile=FILE Дополнительный файл конфигурации.\n" #~ " -h, --help Показать помощь.\n" #~ " -H, --height=HEIGHT Ширина окна (по умолчанию 576).\n" #~ " -i, --input=INPUTNUM video4linux входной канал (ТВ по умолчанию " #~ "0).\n" #~ " -I, --inputwidth=SAMPLING video4linux количеÑтво Ñтрок\n" #~ " (по умолчанию 720).\n" #~ " -k, --slave Отключить управление tvtime\n" #~ " -m, --fullscreen ПолноÑкранный режим.\n" #~ " -M, --window Оконный режим.\n" #~ " -n, --norm=NORM Выбрать Ñтандарт. tvtime поддерживает:\n" #~ " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" #~ " PAL-N or PAL-60 (defaults to NTSC).\n" #~ " -p, --fspos=POS УÑтановить позицию при полноÑкранном " #~ "режиме:\n" #~ " top, bottom or centre (по умолчанию).\n" #~ " -r, --rvr=FILE RVR запиÑывает файл Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð¸Ð³Ñ€Ñ‹Ð²Ð°Ð½Ð¸Ñ (Ð´Ð»Ñ " #~ "отладки).\n" #~ " -s, --showdrops Печатать ÑÑ‚Ð°Ñ‚ÑƒÑ Ð¿Ñ€Ð¾Ð¿ÑƒÑ‰ÐµÐ½Ð½Ñ‹Ñ… кадров (Ð´Ð»Ñ " #~ "отладки).\n" #~ " -S, --saveoptions Сохранить опции командной Ñтроки в файл " #~ "конфигурации.\n" #~ " -t, --xmltv=FILE Читать ÑпиÑок XMLTV из файла.\n" #~ " -v, --verbose Печатать отладочную информацию на stderr.\n" #~ " -x, --mixer=DEVICE[:CH] Микшер и канал Ð´Ð»Ñ ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð·Ð²ÑƒÐºÐ¾Ð¼.\n" #~ " (по умолчанию /dev/mixer:line)\n" #~ "\n" #~ " Возможные каналы:\n" #~ " vol, bass, treble, synth, pcm, speaker, " #~ "line,\n" #~ " mic, cd, mix, pcm2, rec, igain, ogain, " #~ "line1,\n" #~ " line2, line3, dig1, dig2, dig3, phin, " #~ "phout,\n" #~ " video, radio, monitor\n" #~ msgid "" #~ "usage: %s [OPTION]...\n" #~ "\n" #~ " -a, --widescreen 16:9 mode.\n" #~ " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" #~ " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" #~ " -d, --device=DEVICE video4linux device (defaults to /dev/" #~ "video0).\n" #~ " -D, --driver=NAME Output driver to use: Xv, DirectFB, mga,\n" #~ " xmga, matroxtv or SDL (defaults to Xv).\n" #~ " -f, --frequencies=NAME The frequency table to use for the tuner.\n" #~ " (defaults to us-cable).\n" #~ "\n" #~ " Valid values are:\n" #~ " us-cable\n" #~ " us-cable100\n" #~ " us-broadcast\n" #~ " china-broadcast\n" #~ " japan-cable\n" #~ " japan-broadcast\n" #~ " europe\n" #~ " australia\n" #~ " australia-optus\n" #~ " newzealand\n" #~ " france\n" #~ " russia\n" #~ "\n" #~ " -F, --configfile=FILE Additional config file to load settings " #~ "from.\n" #~ " -h, --help Show this help message.\n" #~ " -H, --height=HEIGHT Output window height (defaults to 576).\n" #~ " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" #~ " -I, --inputwidth=SAMPLING video4linux input scanline sampling\n" #~ " (defaults to 720).\n" #~ " -m, --fullscreen Start tvtime in fullscreen mode.\n" #~ " -M, --window Start tvtime in window mode.\n" #~ " -n, --norm=NORM The norm to use for the input. tvtime " #~ "supports:\n" #~ " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" #~ " PAL-N or PAL-60 (defaults to NTSC).\n" #~ " -p, --fspos=POS Set the fullscreen position: top, bottom or\n" #~ " centre (default).\n" #~ " -R, --priority=PRI Sets the process priority to run tvtime at.\n" #~ " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" #~ " -X, --display=DISPLAY Use the given X display to connect to.\n" #~ " -x, --mixer=DEVICE[:CH] The mixer device and channel to control.\n" #~ " (defaults to /dev/mixer:line)\n" #~ "\n" #~ " Valid channels are:\n" #~ " vol, bass, treble, synth, pcm, speaker, " #~ "line,\n" #~ " mic, cd, mix, pcm2, rec, igain, ogain, " #~ "line1,\n" #~ " line2, line3, dig1, dig2, dig3, phin, " #~ "phout,\n" #~ " video, radio, monitor\n" #~ msgstr "" #~ "иÑпользование: %s [ОПЦИИ]...\n" #~ "\n" #~ " -a, --widescreen Режим 16:9.\n" #~ " -b, --vbidevice=DEVICE УÑтройÑтво VBI (по умолчанию /dev/vbi0).\n" #~ " -c, --channel=CHANNEL ПоÑле запуÑка включить указанный канал.\n" #~ " -d, --device=DEVICE УÑтройÑтво video4linux (по умолчанию /dev/" #~ "video0).\n" #~ " -D, --driver=NAME Выводить через: Xv, DirectFB, mga,\n" #~ " xmga, matroxtv или SDL (по умолчанию Xv).\n" #~ " -f, --frequencies=NAME ЧаÑÑ‚Ð¾Ñ‚Ð½Ð°Ñ Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ð°.\n" #~ " (по умолчанию us-cable).\n" #~ "\n" #~ " Возможные значениÑ:\n" #~ " us-cable\n" #~ " us-cable100\n" #~ " us-broadcast\n" #~ " china-broadcast\n" #~ " japan-cable\n" #~ " japan-broadcast\n" #~ " europe\n" #~ " australia\n" #~ " australia-optus\n" #~ " newzealand\n" #~ " france\n" #~ " russia\n" #~ " custom (запуÑтите tvtime-scanner)\n" #~ "\n" #~ " -F, --configfile=FILE Дополнительный файл конфигурации.\n" #~ " -h, --help Показать помощь.\n" #~ " -H, --height=HEIGHT Ширина окна (по умолчанию 576).\n" #~ " -i, --input=INPUTNUM video4linux входной канал (ТВ по умолчанию " #~ "0).\n" #~ " -I, --inputwidth=SAMPLING video4linux количеÑтво Ñтрок\n" #~ " (по умолчанию 720).\n" #~ " -k, --slave Отключить управление tvtime\n" #~ " -m, --fullscreen ПолноÑкранный режим.\n" #~ " -M, --window Оконный режим.\n" #~ " -n, --norm=NORM Выбрать Ñтандарт. tvtime поддерживает:\n" #~ " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" #~ " PAL-N or PAL-60 (defaults to NTSC).\n" #~ " -p, --fspos=POS УÑтановить позицию при полноÑкранном " #~ "режиме:\n" #~ " top, bottom or centre (по умолчанию).\n" #~ " -r, --rvr=FILE RVR запиÑывает файл Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð¸Ð³Ñ€Ñ‹Ð²Ð°Ð½Ð¸Ñ (Ð´Ð»Ñ " #~ "отладки).\n" #~ " -s, --showdrops Печатать ÑÑ‚Ð°Ñ‚ÑƒÑ Ð¿Ñ€Ð¾Ð¿ÑƒÑ‰ÐµÐ½Ð½Ñ‹Ñ… кадров (Ð´Ð»Ñ " #~ "отладки).\n" #~ " -S, --saveoptions Сохранить опции командной Ñтроки в файл " #~ "конфигурации.\n" #~ " -t, --xmltv=FILE Читать ÑпиÑок XMLTV из файла.\n" #~ " -v, --verbose Печатать отладочную информацию на stderr.\n" #~ " -x, --mixer=DEVICE[:CH] Микшер и канал Ð´Ð»Ñ ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð·Ð²ÑƒÐºÐ¾Ð¼.\n" #~ " (по умолчанию /dev/mixer:line)\n" #~ "\n" #~ " Возможные каналы:\n" #~ " vol, bass, treble, synth, pcm, speaker, " #~ "line,\n" #~ " mic, cd, mix, pcm2, rec, igain, ogain, " #~ "line1,\n" #~ " line2, line3, dig1, dig2, dig3, phin, " #~ "phout,\n" #~ " video, radio, monitor\n" #~ msgid "" #~ "usage: %s [OPTION]...\n" #~ "\n" #~ " -d, --device=DEVICE video4linux device (defaults to /dev/" #~ "video0).\n" #~ " -F, --configfile=FILE Additional config file to load settings " #~ "from.\n" #~ " -h, --help Show this help message.\n" #~ " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" #~ " -n, --norm=NORM The norm to use for the input. tvtime " #~ "supports:\n" #~ " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" #~ " PAL-N or PAL-60 (defaults to NTSC).\n" #~ msgstr "" #~ "иÑпользование: %s [ОПЦИИ]...\n" #~ "\n" #~ " -d, --device=DEVICE уÑтройÑтво video4linux (по умолчанию /dev/" #~ "video0).\n" #~ " -F, --configfile=FILE Дополнительный файл конфигурации.\n" #~ " -h, --help Показать подÑказку.\n" #~ " -i, --input=INPUTNUM video4linux номер канала (ТВ по умолчанию " #~ "0).\n" #~ " -n, --norm=NORM Выбрать Ñтандарт. tvtime поддерживает:\n" #~ " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" #~ " PAL-N or PAL-60 (defaults to NTSC).\n" #~ msgid "tvtime: Can't set configuration options, exiting.\n" #~ msgstr "Ðе могу уÑтановить конфигурационные параметры, завершение работы.\n" #~ msgid "tvtime: Can't renice to %d.\n" #~ msgstr "Ðе могу Ñменить приоритет Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ tvtime на %d.\n" #~ msgid "tvtime: Sending fields to interlaced output devices.\n" #~ msgstr "Отображение Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð½Ð° уÑтройÑтве Ñ Ñ‡ÐµÑ€ÐµÐ·Ñтрочной разверткой.\n" #~ msgid "tvtime: Sending frames to interlaced output devices.\n" #~ msgstr "Отображение кадров на уÑтройÑтве Ñ Ñ‡ÐµÑ€ÐµÐ·Ñтрочной разверткой.\n" #~ msgid "tvtime: RVR frame sampling %d pixels per scanline.\n" #~ msgstr "RVR кадр: %d точек на Ñтроку.\n" #~ msgid "tvtime: V4L sampling %d pixels per scanline.\n" #~ msgstr "V4L изображение %d точек на Ñтроку.\n" #~ msgid "tvtime: Can't display input size %dx%d.\n" #~ msgstr "Ðевозможно получить входной Ñигнал Ñ Ñ€Ð°Ð·Ñ€ÐµÑˆÐµÐ½Ð¸ÐµÐ¼ %dx%d.\n" #~ msgid "tvtime: Can't create command handler.\n" #~ msgstr "Ðе могу Ñоздать управление командами.\n" #~ msgid "" #~ "tvtime: Can't get realtime priority for better performance, need root " #~ "access.\n" #~ msgstr "" #~ "Ðе могу уÑтановить режим реального времени Ð´Ð»Ñ Ð½Ð°Ð¸Ð»ÑƒÑ‡ÑˆÐµÐ³Ð¾ качеÑтва работы," #~ "необходим доÑтуп от root.\n" #~ msgid "" #~ "\n" #~ "*** Since your console is set for the %s codeset, rather than UTF-8,\n" #~ "*** console messages may be partially or completely illegible on your " #~ "terminal.\n" #~ "*** This is a known bug, and will probably be fixed for the next release " #~ "of\n" #~ "*** tvtime. You can work around this problem by launching tvtime using a " #~ "UTF-8\n" #~ "*** aware terminal. See %s for more information.\n" #~ "\n" #~ msgstr "" #~ "\n" #~ "*** Since your console is set for the %s codeset, rather than UTF-8,\n" #~ "*** console messages may be partially or completely illegible on your " #~ "terminal.\n" #~ "*** This is a known bug, and will probably be fixed for the next release " #~ "of\n" #~ "*** tvtime. You can work around this problem by launching tvtime using a " #~ "UTF-8\n" #~ "*** aware terminal. See %s for more information.\n" #~ "\n" tvtime-1.0.11/po/pl.gmo0000664000175000017500000004631012663345675011607 00000000000000Þ•Ó´L °q±Å#é '+KSsŸ:INK˜(äA GO:—5ÒGMP>žÖÝI´FþAE‡ž'¶Þû)-Wpw| –¢ ¹Ú6ú1 8C\p ‹™±ÈÜú (@^,c — ¢¬²Ëë79M@l2­.à-&Ah,{¨¼Ìâ ÷+ 1 ? W n "w š ¢ Á !â ! !$!$C! h!u!!©!Â!Ë!Þ!#ö!"!" &"D0" u""ˆ"H¡"ê"ñ"## #%#.9#+h#”#¦#3¼#ð#ô#ý# $$0$7$>$O$_$u$ z$†$)$!¹$ Û$ ü$%%+%<%D%Z%b%#s%—%°%Ï%í% &&!&(@&i&‚&Ÿ&¸&Ø&ò&' ' '(' /'):'!d'(†'3¯'.ã'(0(2I(&|(&£(Ê(ê()%)4)O)l)$„)©)¯)¿)Ú)ô) ****<**P*{*˜*¬*°*Á*Þ*-û*-)+&W+%~++¤+Ð+á+è+ÿ+,4,I,æa,€H.¿É. ‰/—0 ª0'¸1bà1vC25º2Pð2RA3(”3F½3D4=I45‡4I½4Z5Cb5Ц5Rw6FÊ6F7X7r7,Ž7&»7 â7 8+$8P8l8s8x8 ‹8–8%¯8$Õ8,ú8'9.9@9R9i9‰9œ9¼9&Û9!:$: ?:9I:*ƒ:®:8µ:î: ô:þ: ;;*+;V;As;µ;$Ò;A÷;D9<8~<·< ¿<à<)ø<"=47=l= ƒ= =±=Ñ=4å=>*>G>c>4l> ¡>#«>Ï>8ê>#?,?$=?$b?‡??§?¶? Ò?Þ?ò?1 @?@F@O@M_@­@ ¶@Â@Pâ@3A;ATA]A yA†A$¤A%ÉAïAB>B[BaBjB~BB¤B­B¿BÞBüBC C 'C95C+oC'›C ÃCÑCçCûCDD0D6D,HDuD$ŽD)³D%ÝDE EE/9E iE$ŠE ¯EÐEèEF $F0FAFQF WF2aF*”F3¿F>óF52G"hG‹GAŸGáG%H'&H)NH(xH¡H%²H'ØH"I1#IUI[IkIŠI¨IÃIÞI"øIJ;1J mJŽJ¥J«J)»J)åJ.K.>K/mKAK2ßKL 'L4LQL"mLL®Lim Ìf¬g*[ N%\•QƯ€Ë½!À5;?£$‰¡ŽD¨Âµ–nvYbL}RBrÅ‚#¼­,^ Ò><Èok«¦G§Í@6 ‡s_+K³“U™Á- —7¤‹x¢”ˆqlhX´ÐCHcѪ~(Ã2ÊAypT»0²ÎšŒz’ÏWj'&¹]Ou¸)±ž…|StZ.›:ad¥ V˜‘`394©E·ºJPÓÉ®Iœ¶=†wŠ/8¾ÄFŸ „"¿°{ƒe1MÇ No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:916:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Attempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAverage blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerColour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersLow (360 pixels)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOutput configurationOverscan settingPaused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.Standard (720 pixels)Stop channel scanTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: tvtime 0.99 Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2015-10-17 12:16-0300 Last-Translator: Mauro Carvalho Chehab Language-Team: Kamil 'Ci' Grzebien Language: pl_PL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Poedit-Basepath: /home/limak/po X-Poedit-Bookmarks: 5,-1,-1,-1,-1,-1,-1,-1,-1,-1 X-Generator: Poedit 1.8.5 Nie znaleziono tunera na wejÅ›ciu %d. JeÅ›li posiadasz tuner proszÄ™ wybierz inne wejÅ›cie używajÄ…c --input=. Twój sterownik tunera, %s, nie obsÅ‚uguje funkcji peÅ‚nego odÅ›wieżania. Sprawdź czy dobrze je skonfigurowaÅ‚eÅ› i wybraÅ‚eÅ› odpowiednie urzÄ…dzenie przechwytujÄ…ce (%s). Twoje sterowniki tunera, %s, nie dostarczajÄ… wystarczajÄ…cych buforów do obsÅ‚ugi obrazu w tvtime. ProszÄ™ sprawdzić dokumentacjÄ™ swoich sterowników w celu zwiÄ™kszenia iloÅ›ci buforów potrzebnych dla aplikacji oraz powiadom nas o tym na %s DostÄ™pne opcje: tvtime jest darmowym programem, napisanym przez Billy Biggs, Doug Bell i wielu innych. Po szczegóły prosze zajrzyj na naszÄ… stronÄ™ na http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen tryb 4:3. -F, --configfile=FILE Dodatkowy plik konfiguracyjny, z którego można zaÅ‚adować opcje . -I, --inputwidth=SAMPLING Rozdzielczość pozioma wejÅ›cia (domyÅ›lna to 720 pixels). -M, --window Uruchom tvtime w oknie. -R, --priority=PRI Ustaw priorytet procesu w jakim uruchomić tvtime. -S, --saveoptions Zapisz opcje linii poleceÅ„ w pliku konfiguracyjnym. -a, --widescreen tryb 16:9. -b, --vbidevice=DEVICE urzÄ…dzenie VBI (domyÅ›lnie /dev/vbi0). -c, --channel=CHANNEL Ustaw na podany kanaÅ‚ podczas startu. -g, --geometry=GEOMETRY Ustaw rozmiar okna wyjÅ›iowego. -h, --help Pokaż dostÄ™pne opcje. -i, --input=INPUTNUM numer wejÅ›cia video4linux (domyÅ›lnie 0). -l, --xmltvlanguage=LANG Użyj danych XMLTV w podanym jÄ™zyku, jeÅ›li jest dostÄ™pny. -m, --fullscreen Uruchom tvtime w trybie peÅ‚ny ekran. -n, --norm=NORM Wybór systemu wejÅ›cia. DostÄ™pny wybór: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (domyÅ›lnie NTSC). -s, --showdrops Wypisz statystyki gubienia klatek (dla debugowania). -t, --xmltv=FILE Odczytaj listing XMLTV z podanego pliku. -v, --verbose Wypisz wiadomosci debugowania do stderr. %s Bieżący: %d pikseli%s Maksymalny (%d pikseli)%s nie jest plikiem konfiguracyjnym tvtime. %s: Nie można przydzielić pamiÄ™ci. %s: Nie można otworzyć %s: %s %s: NieprawidÅ‚owa komenda '%s' %s: WysyÅ‚anie komendy %s z argumentem %s. %s: WysyÅ‚anie komendy %s. 1.85:116:9Tryb 16:9 aktywny.Obraz 16:9Inwersja Å›ciÄ…gania 2-3Inwersja Å›ciÄ…gania 2-3 wyłączona.Inwersja Å›ciÄ…gania 2-3 włączona.Inwersja Å›ciÄ…gania 2-3 nie jest dostÄ™pna.2.35:14:3 wyÅ›rodkowanyTryb 4:3 aktywny.Dodaj bieżący kanaÅ‚Wszystkie kanaÅ‚y reaktywowane.Zawsze na wierzchuZawsze na wierzchu wyłączone.Zawsze na wierzchu włączone.Wybór czÄ™stotliwośći odÅ›wieżaniaUstawione odÅ›wieżanie: %.2f fpsWzmocnienie sygnaÅ‚u audioAustraliaÅšredni czas przełączenia klatki: %.2f ms (%.0f MB/sek)Åšredni czas renderowania klatki: %5.2f msW tyÅ‚Czasy przełączeÅ„: %4.1f/%4.1f ms (potrzebne %4.1f ms)DółJasnośćAntenaKabłówkaKablówka z kanaÅ‚ami 100+Nie można zmienić wÅ‚aÅ›ciciela %s: %s. Nie można utworzyć %s: %s Nie można utorzyć kolejki FIFO, zdalne sterowanie wyłączone. Nie można otworzyć %s: %s Nie można otworzyć urzÄ…dzenia %s.Nie można otworzyć powtórnie tvtime o tej samej konfiguracji. Nie można zaktualizować konfiguracji gdy tvtime jest uruchomiony. GÅ‚oÅ›ność tunera nie zostanie ustawiona przez tvtime.ÅšrodekZmieÅ„ tablicÄ™ czÄ™stotliwoÅ›ciZmieÅ„ źródÅ‚o obrazuKanaÅ‚ wyłączony z listy przeglÄ…dania.Ustawienia kanałówZaznacz kanaÅ‚ jako aktywny w liÅ›cie przeglÄ…dania.Sprawdzanie %6.2f MHz:Chiny AntenaObraz czarno-biaÅ‚y wyłączony.Obraz czarno-biaÅ‚y włączony.Obraz czarno-biaÅ‚yDekodowania koloru dla tego kanaÅ‚u ustawione na %s.Odwróć koloryInwersja koloru wyłączona.Inwersja koloru włączona.KontrastNie można stworzyć nowego pliku konfiguracyjnego. BieżącyBieżący kanaÅ‚ aktywny na liÅ›cieOpis bieżącego przeplotuUstawienia użytkownika(najpierw uruchom tvtime-scanner)ZmniejszDomyÅ›lny jÄ™zykUstaw domyÅ›lnie system audio PAL-BGUstaw domyÅ›lnie system audio PAL-DKPrzeplotKonfiguracja przeplotuOpis przeplotuWyłącz detekcjÄ™ sygnaÅ‚uWyłączonyZgubione klatki: %dWłącz detekcjÄ™ sygnaÅ‚uBłąd podczas tworzenia pliku konfiguracyjnego. EuropaWyjÅ›cieWyjÅ›cie z menuBłąd podczas inicjalizacji UTF-8 do konwertera %s: iconv_open failed (%s). UlubioneDostrajanieDostrajanie bieżącego kanaÅ‚uZnaleziono kanaÅ‚ na %6.2f MHz (%.2f - %.2f MHz), dodawanie do listy kanałów. FrancjaTablica czÄ™stotliwoÅ›ciGÅ‚oÅ›nyMax odÅ›wieżanie: %.2f fpsPeÅ‚ny ekranPozycja w trybie peÅ‚ny ekranOdÅ›wieżanie dolnych pól: %.2f fpsOdÅ›wieżanie górnych pól: %.2f fpsWysoki (768 pikseli)Rozdzielczość poziomaRozdzielczość pozioma zostanie ustawiona na %d po restarcie.KolorZwiÄ™kszUstawienia wejÅ›ciaFiltry wejÅ›cioweNiski (360 pikseli)ÅšrednioOdbicie lustrzaneOdbicie lustrzane wyłączone.Odbicie lustrzane włączone.Åšredni (576 pikseli)WyciszNowa ZelandiaNastÄ™pny: %sBrak skonfigurowanego urzÄ…dzenia VBI dla dekodowania CC.Nie znaleziono elementu korzenia XML w %s. Brak dostÄ™pnych informacji o programieBrak sygnaÅ‚uBrak źródÅ‚a obrazuUstawienia wyjÅ›ciaUstawienia przybliżeniaPauza.Informacje o obrazieObrazUstawienia obrazuUstawienia obrazu do wartoÅ›ci domyÅ›lnych. Preferowany jÄ™zyk XMLTVPrzetwarzanie każdego dolnego pola.Przetwarzanie każdego pola wejÅ›ciowego.Przetwarzanie każdego górnego pola.CichoCiche zrzuty ekranuCzytanie konfiguracji z %s Zmiana numeru %d. Wprowadź nowy numer kanaÅ‚u.ZmieÅ„ numer bieżącego kanaÅ‚uUstaw wszystkie kanaÅ‚y jako aktywneZresetuj do ustawieÅ„ globalnychDopasuj wielkość oknaUruchom z nowymi ustawieniamiPonowne uruchomienie tvtime. Wznowienie.Uruchomione %s. Uruchomione: %sRosjaNasycenieZapisz bieżące ustawienia jako domyÅ›lne kanaÅ‚uZapisz bieżące ustawienia jako domyÅ›lneZapisz bieżące ustawienia jako domyÅ›lne globalneZapisano bieżące ustawienia obrazu jako domyÅ›lne globalne. Zapisano bieżące ustawienia obrazu dla kanaÅ‚u %d. Zapisywanie opcji linii poleceÅ„. Przeszukaj kanaÅ‚y Skaner niedostÄ™pny z wyłączonÄ… funkcjÄ… sprawdzania sygnaÅ‚u.Skanowanie kanałów z anteny.Skanowanie z %6.2f MHz do %6.2f MHz. Skanowanie używajÄ…c standardu TV %s. Informacja o zrzutach ekranu wyłączona.Informacja o zrzutach ekranu włączona.Zrzut ekranu: %sUstaw bieżący kanaÅ‚ w systemie PALUstaw bieżący kanaÅ‚ w systemie SECAMUstaw pozycje obrazu(PeÅ‚ny ekran)Ustawienie gÅ‚oÅ›noÅ›ci tunera na wartość %d%%.OpcjeSygnaÅ‚ wykrytyDetekcja sygnaÅ‚u wyłączona.Detekcja sygnaÅ‚u włączona.Funkcja Sleep za %d minut.Funkcja Sleep wyłączona.Standardowy (720 pikseli)Zatrzymaj przeszukiwanie kanałówStandardy telewizyjneStandard telewizyjny zostanie ustawiony ma %s po restarcie.Dziekujemy za używanie tvtime. ZmieÅ„ dekodowanie XDSGóraNieznany jÄ™zykUżywanie czÄ™stotliwoÅ›ci kablówki HRC.Używanie czÄ™stotliwoÅ›ci kablówki IRC.Użycie systemu audio PAL-BG dla tego kanaÅ‚u.Użycie systemu audio PAL-DK dla tego kanaÅ‚u.Używanie domyÅ›lnego jÄ™zyka dla danych XMLTV.Używanie czÄ™stotliwoÅ›ci nominalnych w systemie kablówki NTSC.Używanie nieznanego jÄ™zyka(%s) dla danych XMLTV.Przetwarzanie obrazuGÅ‚oÅ›nośćDekodowanie XDS wyłączone.Dekodowanie XDS włączone.JÄ™zyk XMLTV ustawiony na %s (%s).tvtime nie jest uruchomiony. użycie: %s [OPTION]... tvtime-1.0.11/po/uk.gmo0000664000175000017500000010125112664123017011570 00000000000000Þ•÷ÔKŒ¸_¹±qËÅ=! 7'EKms¹:-ØhIAK‹D×(AEG‡=Ï1 :? 5z G° Mø CF!MŠ!>Ø!Ö"œî"I‹#FÕ#A$\^$N»& '!''9'a'~'–')°'Ú'ó'ú'((( /(;( R(s(6“(Ê(Ñ( à(ë()) 3)A)Y) p)|))®) Á)Ë)(Ý)*$*,)*V* ]* h*r*x*‘*±*7Ç*ÿ*+@2+2s+.¦+Õ+Ü+ó+,(,&<,c,,v,£,·,Ç,Ý, ò,7-8-R-+k- —-¥-½-:Ô-.".;.C. b.!ƒ.¥.®.$¿.$ä.# / -/:/U/n/‡//£/#»/%ß/0 0 0D0 `0j0s0HŒ0Õ0Ü0ì0ñ0 11.$1+S11‘13§1Û1ß1è1 ü1 2 $212B2 \2}2„2‹2œ2¬2Â2 Ç2Ó2)Ü2!3 (3 I3S32c3–3«3´3Å3Ö3Þ3ô3ü3# 414J4i4‡4£4©4»4À4(ß45!5>5W5w5‘5¥5 ®5 »5Ç5 Î5)Ù5!6(%63N6.‚6±6Ï62è6&7&B7i7‰7§7Ä7Ó7î7 8$#8H8N8^8y8“8 ¨8 ³8À8Ö8è8þ8*9=9Z9n9…9‰9š9·9-Ô9-:,0:&]:%„:+ª:Ö:ç:î:;;:;O;õg;Á]=a>Â?^D@é£A"C‹°C-L\>‹\!Ê\.ì\<]*X]ƒ]–]N±]:^ ;^OF^–^^'²^ Ú^%ç^; _+I_wu_+í_M`sg`eÛ`uAa·a3Éa;ýa*9b$dbC‰b#ÍbWñbIc ic3tc5¨c!Þcfd"gd$Šd_¯d!e91e=ke}©e'fPBf“f@¢f8ãf;gXgig;g;»gh÷g`h7{h%³h4Ùhi#i4CiSxiRÌi j ,j7joNj ¾j#ËjCïj‚3k¶kÅk ák0ìklE6lb|ldßlDm@bmz£mn/n8Bn{n&—n¾nÚn=ønT6o‹ošo-·o/åop3pMpgpb~pGáp6)q`q)€qZªq:r@r#Irmr~rr¯r)ÀrGêr2s8Ps8‰s:Âs ýs7 t Bt2MtL€t9Ít5u5=uesuAÙuv9vMv_v tvv^–vJõv[@wrœwdxAtx(¶x]ßxH=y2†yE¹yFÿyHFzzL­zLúzZG{_¢{||39|5m|"£|#Æ|ê|%}*.}4Y})Ž}\¸}<~/R~)‚~¬~µ~EÏ~Ei[iÅf/€O–€Uæ€X<•¯,À.íB‚_‚.z‚àÏÚ¤ ó¯Ø‡ÌžÁjÜ€À.=v†>73~¹TôdNÒ ÔÕ_ì׸H24—&±hð¢Ù;SQ< L‰©ÈMáFçEõÓg-«¾ÞK· –ï§‹¨‘”æœÃŒâñ{:îå+əƃ“Ÿb¿kDW1ê$q„ºsi¦²pw‚\A½X¬Uò ¼[¡£'oÝ›÷neÑë#íÄÎVmÂßJxz»yÍ’³@èÇ|u(OÖ…!}^0•tf%9¶ÛŠ*CöZµI"c8é)]®BGlrˆ äÅÊYãš,ËÐ56­`/ ´Rªa?˜¥°ŽP Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to Examples: hw:0,0 disabled -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -X, --display=DISPLAY Use the given X display to connect to. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -d, --device=DEVICE video4linux device (defaults to -f, --frequencies=NAME The frequency table to use for the tuner. (defaults to us-cable). Valid values are: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (first run tvtime-scanner) -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -k, --slave Disables input handling in tvtime (slave mode). -l, --borderless Start tvtime without a window border. -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -p, --alsainputdev=DEV Specifies an ALSA device to read input on Examples: -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. -x, --mixer=| The mixer device and channel to control. The first variant sets the OSS mixer the second one ALSA. (defaults to default/Master) Valid channels for OSS are: vol, bass, treble, synth, pcm, speaker, line, mic, cd, mix, pcm2, rec, igain, ogain, line1, line2, line3, dig1, dig2, dig3, phin, phout, video, radio, monitor -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-seconds %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:1016:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange NTSC cable modeChange default audio standardChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed caption display failed to initialize, disabled. Closed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.Defaulting to PAL-I audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLast ChannelLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsQuitReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.South AfricaStandard (720 pixels)Stop channel scanSwitch audio standardTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using PAL-I audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: PACKAGE VERSION Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2016-02-26 12:07-0500 Last-Translator: Yuri Chornoivan Language-Team: Ukrainian Language: uk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Zanata 3.8.2 Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2) Ðе вдалоÑÑ Ñкинути адмініÑтративні привілеї: %s. Зараз tvtime завершить роботу, щоб убезпечити ÑиÑтему. Ðе вдалоÑÑ ÑƒÐ²Ñ–Ð¹Ñ‚Ð¸ до режиму UTF-8 викориÑтовуючи bind_textdomain_codeset() (повернуто %s.) Це може призвеÑти до невірного Ð²Ñ–Ð´Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½ÑŒ! Будь лаÑка повідомте про цю помилку за адреÑою %s. Ðа вході %d не знайдено тюнера. Якщо у Ð’Ð°Ñ Ñ” тюнер, будь лаÑка оберіть інший вхід за допомогою --input=. Ваш драйвер карти захопленнÑ, %s, здаєтьÑÑ Ð½Ðµ підтримує Ð·Ð°Ñ…Ð¾Ð¿Ð»ÐµÐ½Ð½Ñ Ð½Ð° повну швидкіÑть. Будь лаÑка, подивітьÑÑ Ñ‡Ð¸ правильно його налаштовано, або чи не обрали Ви невірний приÑтрій (%s). Ваш драйвер карти захопленнÑ, %s, не забезпечує доÑтатню кількіÑть буферів Ð´Ð»Ñ Ð¾Ð±Ñ€Ð¾Ð±ÐºÐ¸ відео з tvtime. Будь лаÑка подивітьÑÑ Ð´Ð¾ÐºÑƒÐ¼ÐµÐ½Ñ‚Ð°Ñ†Ñ–ÑŽ Ð´Ð»Ñ Ð·Ð±Ñ–Ð»ÑŒÑˆÐµÐ½Ð½Ñ ÐºÑ–Ð»ÑŒÐºÐ¾Ñті буферів доÑтупних програмам, та повідомте про це до відÑÐ»Ñ–Ð´ÐºÐ¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ð¼Ð¸Ð»Ð¾Ðº tvtime за адреÑою %s ДоÑтупні команди: tvtime вільне програмне Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ Ð½Ð°Ð¿Ð¸Ñане Billy Biggs, Doug Bell та іншими. Щоб дізнатиÑÑ Ð´ÐµÑ‚Ð°Ð»Ñ– та умови копіюваннÑ, переглÑньте наш веб-Ñайт за адреÑою http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 Billy Biggs, Doug Bell, Alexander S. Belov, та Achim Schneider. -A, --nowidescreen режим 4:3. -F, --configfile=FILE Додатковий файл налаштувань Ð´Ð»Ñ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ–Ð² роботи. -I, --inputwidth=SAMPLING Горизонтальна роздільна здатніÑть вхідного Ñигналу (типова - 720 точок). -M, --window ЗапуÑк tvtime у віконному режимі. -P, --alsaoutputdev=ПРИСТРІЙ Вказує приÑтрій ALSA, куди Ñлід виводити дані Приклади: hw:0,0 disabled -R, --priority=PRI ЗапуÑтити tvtime з вказаним рівнем приорітету. -S, --saveoptions Зберегти параметри командного Ñ€Ñдка до файла налаштувань. -X, --display=DISPLAY ВикориÑтовувати вказаний X диÑплей Ð´Ð»Ñ Ð·'єднаннÑ. -a, --widescreen режим 16:9. -b, --vbidevice=DEVICE приÑтрій VBI (типовий /dev/vbi0). -c, --channel=CHANNEL ÐалаштуватиÑÑ Ð½Ð° заданий канал під Ñ‡Ð°Ñ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ. -d, --device=ПРИСТРІЙ приÑтрій video4linux (типовий — -f, --frequencies=NAME Ð¢Ð°Ð±Ð»Ð¸Ñ†Ñ Ñ‡Ð°Ñтот, що викориÑтовуєтьÑÑ Ñ‚ÑŽÐ½ÐµÑ€Ð¾Ð¼. (типова - us-cable). Можливими значеннÑми Ñ”: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (Ñпочатку запуÑтити tvtime-scanner) -g, --geometry=GEOMETRY Ð’Ñтановити розмір вікна виведеннÑ. -h, --help Показати це довідкове повідомленнÑ. -i, --input=INPUTNUM номер входу video4linux (типовий - 0). -k, --slave Вимкнути ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ñ…Ð¾Ð´Ð¾Ð¼ у tvtime (керований режим). -l, --borderless ЗапуÑк tvtime без Ð¾Ð±Ñ€Ð°Ð¼Ð»ÐµÐ½Ð½Ñ Ð²Ñ–ÐºÐ½Ð° програми. -l, --xmltvlanguage=LANG ВикориÑтовувати дані XMLTV заданою мовою, Ñкщо вона доÑтупна. -m, --fullscreen ЗапуÑк tvtime у повноекранному режимі. -n, --norm=NORM Режим вхідного Ñигналу. tvtime підтримує: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N або PAL-60 (типовий NTSC). -p, --alsainputdev=ПРИСТРІЙ Вказує приÑтрій ALSA Ð´Ð»Ñ Ñ‡Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð²Ñ…Ñ–Ð´Ð½Ð¸Ñ… даних Приклади: -s, --showdrops Показувати ÑтатиÑтику викинутих кадрів (Ð´Ð»Ñ Ð½Ð°Ð»Ð°ÑˆÑ‚Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ). -t, --xmltv=FILE Читати XMLTV переліки з вказаного файла. -v, --verbose ÐадÑилати зневаджувальні Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð´Ð¾ stderr. -x, --mixer=<ПРИСТРІЙ[:КÐÐÐЛ]>|<ПРИСТРІЙ/КÐÐÐЛ> ПриÑтрій Ð¼Ñ–ÐºÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° канал, Ñким Ñлід керувати. За допомогою першого варіанта вÑтановлюєтьÑÑ Ð¼Ñ–ÐºÑˆÐµÑ€ OSS, другого — ALSA. (типовим Ñ” default/Master) Коректні Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÐºÐ°Ð½Ð°Ð»Ñ–Ð² OSS: vol, bass, treble, synth, pcm, speaker, line, mic, cd, mix, pcm2, rec, igain, ogain, line1, line2, line3, dig1, dig2, dig3, phin, phout, video, radio, monitor -z, --alsalatency=ЧИСЛО Визначає латентніÑть петльового приÑтрою ALSA у міліÑекундах %s Поточне: %d точок%s МакÑимальна (%d точок)%s не Ñ” файлом налаштувань tvtime. %s: Ðеможливо виділити пам'Ñть. %s: Ðеможливо відкрити %s: %s %s: Ðекоректна команда '%s' %s: ÐадіÑлано команду %s з аргументом %s. %s: ÐадіÑлано команду %s. 1.85:116:1016:916:9 + ПолÑÐктивовано режим Ð²Ñ–Ð´Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ 16:916:9 виведеннÑІнверÑÑ–Ñ Ð¿Ñ€Ð¾ÑÑƒÐ²Ð°Ð½Ð½Ñ 2-3ІнверÑÑ–ÑŽ проÑÑƒÐ²Ð°Ð½Ð½Ñ 2-3 вимкнено.ІнверÑÑ–ÑŽ проÑÑƒÐ²Ð°Ð½Ð½Ñ 2-3 увімкнено.ІнверÑÑ–Ñ Ð¿Ñ€Ð¾ÑÑƒÐ²Ð°Ð½Ð½Ñ 2-3 неможлива з вказаним Вами режимом ТБ.2.35:14:3 + ПолÑ4:3 по центруÐктивовано режим Ð²Ñ–Ð´Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ 4:3.Додати поточний каналВÑÑ– канали переактивовано.Завжди поверх інших віконСкаÑовано режим поверх-уÑÑ–Ñ…-віконДозволено режим поверх-уÑÑ–Ñ…-віконЗаÑтоÑувати маÑкуОÑтаточна чаÑтота кадрівОÑтаточна чаÑтота кадрів: %.2f кд/ÑФорÑÑƒÐ²Ð°Ð½Ð½Ñ Ñ€Ñ–Ð²Ð½Ñ Ð·Ð²ÑƒÐºÑƒÐвÑтраліÑÐвÑÑ‚Ñ€Ð°Ð»Ñ–Ñ (Optus)Середній Ñ‡Ð°Ñ Ð¿ÐµÑ€ÐµÐ´Ð°Ñ‡Ñ– потоку: %.2f Ð¼Ñ (%.0f MБ/Ñ)Середній Ñ‡Ð°Ñ Ð²Ñ–Ð´Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ: %5.2f мÑÐазадПроміжки копіюваннÑ: %4.1f/%4.1f Ð¼Ñ (запит %4.1f мÑ)ÐизЯÑкравіÑтьТелевізійне мовленнÑКабельКабель з каналами 100+Ðеможливо змінити влаÑника %s: %s. Ðеможливо Ñтворити %s: %s Ðе вдалоÑÑ Ñтворити потік FIFO, віддалене ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ tvtime ÑкаÑовано. Ðеможливо відкрити %s: %s Ðеможливо відкрити приÑтрій Ð·Ð°Ñ…Ð¾Ð¿Ð»ÐµÐ½Ð½Ñ %s.ЗапуÑк двох копій tvtime з однаковими налаштуваннÑми неможливий. Ðеможливо оновити налаштуваннÑ, Ñкщо tvtime вже запущено. ГучніÑть карти Ð·Ð°Ñ…Ð¾Ð¿Ð»ÐµÐ½Ð½Ñ Ð½Ðµ буде вÑтановлено за допомогою tvtime.По центруЗмінити режим кабельного NTSCЗмінити оÑновний аудіо ÑтандартЗмінити таблицю чаÑтотЗміна джерела відеоКанал виключено зі ÑпиÑку переглÑду.ÐšÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ°Ð½Ð°Ð»Ð°Ð¼Ð¸ÐšÐ°Ð½Ð°Ð» позначено Ñк активний у ÑпиÑку переглÑду.Перевірено %6.2f MHz:ÐšÐ¸Ñ‚Ð°Ð¹Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñƒ вимкнено.Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñƒ увімкнено.Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€ÑƒÐ’Ñ–Ð´Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñубтитрів не вдалоÑÑ Ð·Ð°Ð¿ÑƒÑтити, вимкнено. Субтитри вимкнено.Субтитри увімкнено.Ð”ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñƒ Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ каналу вÑтановлено %s.Інвертувати колірВимкнено Ñ–Ð½Ð²ÐµÑ€Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñƒ.Дозволено Ñ–Ð½Ð²ÐµÑ€Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñ–Ð².Файл налаштувань не можна обробити. ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ðµ буде збережено. КонтраÑтніÑтьÐеможливо Ñтворити новий файл налаштувань. ПоточнеПоточний канал активовано у ÑпиÑÐºÑƒÐžÐ¿Ð¸Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ð³Ð¾ деінтерлейÑераОÑобливе (перший запуÑк tvtime-scanner)ЗменшитиТипова моваТипове Ð´ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð²ÑƒÐºÑƒ Ñк PAL-BG.Типове Ð´ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð²ÑƒÐºÑƒ Ñк PAL-DK.Ð”Ð»Ñ Ð´ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð°ÑƒÐ´Ñ–Ð¾ цього каналу викориÑтовуєтьÑÑ PAL-I.ДеінтерлейÑерÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´ÐµÑ–Ð½Ñ‚ÐµÑ€Ð»ÐµÐ¹ÑÑ–Ð½Ð³ÑƒÐžÐ¿Ð¸Ñ Ð´ÐµÑ–Ð½Ñ‚ÐµÑ€Ð»ÐµÐ¹ÑераСкаÑувати виÑÐ²Ð»ÐµÐ½Ð½Ñ ÑигналуВимкненоВикинутих кадрів: %dДозволити виÑÐ²Ð»ÐµÐ½Ð½Ñ ÑигналуПомилка під Ñ‡Ð°Ñ ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ñ„Ð°Ð¹Ð»Ð° налаштувань. Помилка під Ñ‡Ð°Ñ Ð¾Ð±Ñ€Ð¾Ð±ÐºÐ¸ файла налаштувань %s. ЄвропаВийтиВийти з менюÐе вдалоÑÑ Ð·Ð°Ð¿ÑƒÑтити перетворювач UTF-8 до %s: помилка iconv_open (%s). ОбраніТочне налаштуваннÑТочне Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ð³Ð¾ каналуЗнайдено канал з чаÑтотою %6.2f МГц (%.2f - %.2f МГц), додано до ÑпиÑку каналів. ФранціÑÐ¢Ð°Ð±Ð»Ð¸Ñ†Ñ Ñ‡Ð°ÑтотПовнеÐа повну швидкіÑть: %.2f кд/ÑÐа веÑÑŒ ÐµÐºÑ€Ð°Ð½Ð Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñƒ повноекранному режиміÐа пів швидкоÑті, деінтерлейÑінг нижніх полів: %.2f кд/ÑÐа пів швидкоÑті, деінтерлейÑінг верхніх полів: %.2f кд/ÑВиÑока (768 точок)Горизонтальна роздільна здатніÑтьПіÑÐ»Ñ Ð¿ÐµÑ€ÐµÐ·Ð°Ð¿ÑƒÑку горизонтальна роздільна здатніÑть буде %d точок.ВідтінокЗбільшитиÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ñ…Ñ–Ð´Ð½Ð¾Ð³Ð¾ ÑигналуВхідні фільтриВхід: %s при %dx%d точкахОÑтанній каналÐизька (360 точок)Параметр рамки (вхідний Ñигнал 4:3)Параметри рамки (анаморфотний вхідний Ñигнал)СереднєВіддзеркаленнÑÐ’Ñ–Ð´Ð´Ð·ÐµÑ€ÐºÐ°Ð»ÐµÐ½Ð½Ñ Ð²Ð¸Ð¼ÐºÐ½ÐµÐ½Ð¾Ð”Ð¾Ð·Ð²Ð¾Ð»ÐµÐ½Ðµ віддзеркаленнÑÐизька (576 точок)Вимкнути звукÐова ЗеландіÑÐаÑтупний: %sÐе налаштовано приÑтрою VBI Ð´Ð»Ñ Ð´ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ñубтитрів.У %s не знайдено кореневого елемента XML. Ð†Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¸ відÑутнєВідÑутній ÑигналВідÑутній відеоÑигналЕкранний диÑплей не вдалоÑÑ Ð·Ð°Ð¿ÑƒÑтити, вимкнено. ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ð¸Ñ…Ñ–Ð´Ð½Ð¾Ð³Ð¾ ÑигналуПолÑÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ð»Ñ–Ð²ÐŸÐ¾Ð»Ñ: %.1f%%Ðа паузі.Оцінка швидкоÑтіКартинкаÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ°Ñ€Ñ‚Ð¸Ð½ÐºÐ¸ÐŸÐ°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð¸ картинки Ñкинуто до типових.ОÑновна мова XMLTVОбробка кожного нижнього полÑ.Обробка кожного вхідного полÑ.Обробка кожного верхнього полÑ.МовчкиЗнімки екрану без Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½ÑŒÐ’Ð¸Ð¹Ñ‚Ð¸Ð—Ñ‡Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½ÑŒ з %s Ð¡Ð¾Ñ€Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ %d. Вкажіть новий номер каналу.Змінити номер поточного каналуЗробити вÑÑ– канали активнимиСкинути до загальних типовихЗмінити розмір вікна, щоб повніÑтю вміÑтити зображеннÑПерезапуÑк з новими налаштуваннÑмиПерезапуÑк tvtime. Поновлено.ЗапуÑк %s. Запущено: %sРоÑÑ–ÑÐаÑиченіÑтьЗберегти поточні Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñк типові Ð´Ð»Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐ—Ð±ÐµÑ€ÐµÐ³Ñ‚Ð¸ поточні Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñк типовіЗберегти поточні Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñк загальні типовіЗбережено Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ñ— картинки Ñк загальні типові. Збережено поточні Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ°Ñ€Ñ‚Ð¸Ð½ÐºÐ¸ Ð´Ð»Ñ ÐºÐ°Ð½Ð°Ð»Ñƒ %d. Ð—Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð¾Ð¿Ñ†Ñ–Ð¹ командного Ñ€Ñдка. Пошук Ñигналу каналівПошук неможливий, Ñкщо вимкнено перевірку Ñигналу.Пошук каналів, Ñкими ведетьÑÑ Ð¼Ð¾Ð²Ð»ÐµÐ½Ð½Ñ.Пошук від %6.2f МГц до %6.2f МГц. Пошук з викориÑтаннÑм Ñтандарту ТБ %s. ÐŸÐ¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð·Ð½Ñ–Ð¼ÐºÑ–Ð² екрану вимкнено.ÐŸÐ¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð·Ð½Ñ–Ð¼ÐºÑ–Ð² екрану увімкнено.Знімок екрану: %sÐ’Ñтановити режмми PAL Ð´Ð»Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ð³Ð¾ каналуВÑтановити режим SECAM Ð´Ð»Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ð³Ð¾ каналуВÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ñ€Ð¾Ð·Ð¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ñƒ повноекранному режиміВÑтановити гучніÑть карти Ð·Ð°Ñ…Ð¾Ð¿Ð»ÐµÐ½Ð½Ñ Ñƒ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ %d%%.ÐалаштуваннÑЗнайдено ÑигналВимкнено виÑÐ²Ð»ÐµÐ½Ð½Ñ Ñигналу.Дозволено виÑÐ²Ð»ÐµÐ½Ð½Ñ Ñигналу.Сон через %d хвилин.Режим Ñну вимкнено.Південна ÐфрикаСтандартна (720 точок)Зупинити пошук ÐºÐ°Ð½Ð°Ð»Ñ–Ð²ÐŸÐµÑ€ÐµÐ¼Ð¸ÐºÐ°Ð½Ð½Ñ Ð°ÑƒÐ´Ñ–Ð¾ ÑтандартуТелевізійний ÑтандартПіÑÐ»Ñ Ð¿ÐµÑ€ÐµÐ·Ð°Ð¿ÑƒÑку телевізійним Ñтандартом буде %s.ДÑкуємо Вам за викориÑÑ‚Ð°Ð½Ð½Ñ tvtime. Перемкнути Ð´ÐµÐºÐ¾Ð´ÑƒÐ°Ð°Ð½Ð½Ñ XDSÐŸÐµÑ€ÐµÐ¼Ð¸ÐºÐ°Ð½Ð½Ñ ÑубтитрівВерхÐевідома моваВикориÑтовуютьÑÑ ÐºÐ°Ð±ÐµÐ»ÑŒÐ½Ñ– чаÑтоти HRC.ВикориÑтовуютьÑÑ ÐºÐ°Ð±ÐµÐ»ÑŒÐ½Ñ– чаÑтоти IRC.Ð”Ð»Ñ Ð´ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð°ÑƒÐ´Ñ–Ð¾ цього каналу викориÑтовуєтьÑÑ PAL-BG.Ð”Ð»Ñ Ð´ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð°ÑƒÐ´Ñ–Ð¾ цього каналу викориÑтовуєтьÑÑ PAL-DK.ВикориÑтовувати Ð´ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð°ÑƒÐ´Ñ–Ð¾ PAL-I Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ каналу.ВикориÑтовуєтьÑÑ Ñ‚Ð¸Ð¿Ð¾Ð²Ð° мова Ð´Ð»Ñ Ð´Ð°Ð½Ð¸Ñ… XMLTV.ВикориÑÑ‚Ð°Ð½Ð½Ñ Ð½Ð¾Ð¼Ñ–Ð½Ð°Ð»ÑŒÐ½Ð¸Ñ… кабельних чаÑтот NTSC.ВикориÑтовуєтьÑÑ Ð½ÐµÐ²Ñ–Ð´Ð¾Ð¼Ð° мова (%s) Ð´Ð»Ñ Ð´Ð°Ð½Ð¸Ñ… XMLTV.Обробка відеоГучніÑÑ‚ÑŒÐ”ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ XDS вимкнено.Ð”ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ XDS увімкнено.Мову XMLTV вÑтановлено у Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ %s (%s).tvtime не працює. викориÑтаннÑ: %s [ОПЦІЯ]... tvtime-1.0.11/po/nn.po0000664000175000017500000011034312663345675011441 00000000000000# Translation of nn to Norwegian Nynorsk # Translation of tvtime to Norwegian Nynorsk # This file is distributed under the same license as the tvtime package. # Copyright (C) 2005 Billy Biggs, # Karl Ove Hufthammer , 2005. # msgid "" msgstr "" "Project-Id-Version: nn\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2005-09-14 23:44+0200\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.10.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "Vel linjedoblar" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "Tilbake" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "Full: %.2f b/s" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "Halv: Linjedobla øvre felt: %.2f b/s" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "Halv: Linjedobla nedre felt: %.2f b/s" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "Overskanning" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "Biletmaskering" #: src/tvtime.c:909 msgid "16:9 output" msgstr "16:9-vising" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "Vindaugsstorleik etter innhald" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "Fullskjerm" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "Vel fullskjermsplassering" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "Alltid øvst" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Stille skjermbiletlagring" #: src/tvtime.c:968 msgid "Centre" msgstr "I midten" #: src/tvtime.c:975 msgid "Top" msgstr "Oppe" #: src/tvtime.c:981 msgid "Bottom" msgstr "Nede" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "MÃ¥lverdi for biletfrekvens" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "Ytingsestimat" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "Linjedoblar" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "Signal: %s ved %d × %d biletpunkt" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "MÃ¥lverdi for biletfrekvens: %.2f b/s" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "Gjennomsnittleg blittid: %.2f ms (%.0f MB/s)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "Gjennomsnittleg oppteikningstid: %5.2f ms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Mista bilete: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Blittintervall: %4.1f/%4.1f ms (mÃ¥l: %4.1f ms)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + overskanning" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1.85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2.35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 midtstilt" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "16:10" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + overskanning" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "Maskering (anamorfisk signal)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "Maskering (4:3-signal)" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: Klarte ikkje tildela minne.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "Klarte ikkje opna opptakseininga «%s»." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " Opptakskortdrivaren din, «%s», ser ikkje ut til Ã¥ støtta opptak\n" " ved full biletfrekvens. SjÃ¥ til at drivaren er rett sett opp, og\n" " at du ikkje vald feil opptakseining («%s»).\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " Opptakskortdrivaren din, %s, har ikkje sett opp nok bufferar\n" " til at tvtime kan kan handtera filmkjelda rett. SjÃ¥ i bruksrett-\n" " leiinga til drivaren korleis du kan auka talet pÃ¥ bufferar, og\n" " meld frÃ¥ om dette i feilrapporteringssystemet til tvtime:\n" " %s\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "Klarte ikkje starta menysystemet. Det vert derfor ikkje brukt.\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "Inga filmkjelde" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "Klarte ikkje laga FIFO. Fjernkontrollstøtta er derfor slÃ¥tt av.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "" "Klarte ikkje starta vising av «closed captioning». Denne funksjonen er " "derfor slÃ¥tt av.\n" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "Viser no alltid vindauget øvst." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "Viser ikkje lenger alltid vindauget øvst." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "Brukar no 16:9-vising." #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "Brukar no 4:3-vising." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "Vil ikkje lenger varsla skjermbiletlagring." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "Vil varsla kvar skjermbiletlagring." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "Brukar ikkje 2:3-kompensering." #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "Brukar 2:3-kompensering." #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "2:3-kompensering er ikkje mogleg for denne fjernsynsstandarden." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Skjermbilete: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "Startar tvtime om att.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "Takk for at du brukte tvtime!\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " Klarte ikkje unngÃ¥ root-løyve: %s.\n" " Avsluttar programmet grunna eventuelle tryggleiksproblem.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "Køyrer «%s».\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "Brukar" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "Ingen programinformasjon er tilgjengeleg" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "Neste program: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "Flytt kanal" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "Vis kanal ved kanalhopping" #: src/commands.c:346 msgid "Stop channel scan" msgstr "Stopp kanalsøk" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "Søk etter kanalar med signal" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "Vis alle kanalar ved kanalhopping" #: src/commands.c:364 msgid "Finetune current channel" msgstr "Fininnstilling" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "Byt modus for NTSC-kabelfjernsyn" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "Bruk SECAM-modus for denne kanalen" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "Bruk PAL-modus for denne kanalen" #: src/commands.c:393 msgid "Switch audio standard" msgstr "Byt lydstandard" #: src/commands.c:400 msgid "Change frequency table" msgstr "Byt frekvenstabell" #: src/commands.c:406 msgid "Disable signal detection" msgstr "Ikkje bruk signaldetektering" #: src/commands.c:407 msgid "Enable signal detection" msgstr "Bruk signaldetektering" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "StandardsprÃ¥k" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "Ukjent sprÃ¥k" #: src/commands.c:623 msgid "Change default audio standard" msgstr "Byt standard lydstandard" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "Lydforsterking" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "Fjernsynsstandard" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "Vassrett oppløysing" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Kabelfjernsyn" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Bakkesendt" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Kabelfjernsyn med over 100 kanalar" #: src/commands.c:709 msgid "Europe" msgstr "Europa" #: src/commands.c:717 msgid "Russia" msgstr "Russland" #: src/commands.c:724 msgid "France" msgstr "Frankrike" #: src/commands.c:731 msgid "Australia" msgstr "Australia" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "Australia (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "New Zealand" #: src/commands.c:752 msgid "China Broadcast" msgstr "Kina (bakkesendt)" #: src/commands.c:759 msgid "South Africa" msgstr "Sør-Afrika" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "Sjølvvald (køyr først tvtime-scanner)" #: src/commands.c:783 msgid "Disabled" msgstr "Av" #: src/commands.c:789 msgid "Quiet" msgstr "Stille" #: src/commands.c:795 msgid "Medium" msgstr "Middels" #: src/commands.c:801 msgid "Full" msgstr "Full" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s Brukar: %d biletpunkt" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "LÃ¥g (360 biletpunkt)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "Middels (576 biletpunkt)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Standard (720 biletpunkt)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Høg (768 biletpunkt)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s Maksimum (%d biletpunkt)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "Start om att med nye instillingar" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "Auk" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "Reduser" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "2:3-kompensering" #: src/commands.c:962 msgid "Colour invert" msgstr "Fargeinvertering" #: src/commands.c:970 msgid "Mirror" msgstr "Spegling" #: src/commands.c:978 msgid "Chroma killer" msgstr "Svartkvitt" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "Oppsett" #: src/commands.c:1131 msgid "Last Channel" msgstr "" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "Kanalar" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "Signal" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "Bilete" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Film" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Vising" #: src/commands.c:1161 msgid "Quit" msgstr "" #: src/commands.c:1192 msgid "Exit menu" msgstr "Lukk meny" #: src/commands.c:1221 msgid "Frequency table" msgstr "Frekvenstabell" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "Fininnstilling" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "Filmkjelde" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "SlÃ¥ av/pÃ¥ «closed captions»" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "SlÃ¥ av/pÃ¥ XDS-avkoding" #: src/commands.c:1392 msgid "Overscan" msgstr "Overskanning" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Fullskjermsplassering" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "Skildring av vald linjedoblar" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Biletfilter" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "Skildring av linjedoblar" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Bilete" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "Lysstyrke" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "Kontrast" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "Fargemetting" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Fargenyanse" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "Bruk som standard" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "Nullstill til standardinstillingar" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "Bruk som standard for alle kanalar" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "Bruk som standard for denne kanalen" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "Føretrekt XMLTV-sprÃ¥k" #: src/commands.c:1825 msgid "Favorites" msgstr "Favorittar" #: src/commands.c:1832 msgid "Add current channel" msgstr "Legg til denne kanalen" #: src/commands.c:1834 msgid "Exit" msgstr "Avslutt" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Steng av om %d minutt." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "SlÃ¥tt av automatisk avstenging." #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "Avkodar lyd som PAL-I for denne kanalen." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "Avkodar lyd som PAL-DK for denne kanalen." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "Avkodar lyd som PAL-BG for denne kanalen." #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "Avkodar lyd som PAL-I som standard." #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "Avkodar lyd som PAL-DK som standard." #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "Avkodar lyd som PAL-BG som standard." #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "Kanalen vert no vist ved kanalhopping." #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "Kanalen vert no ikkje vist ved kanalhopping." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "Lydstyrken til opptakskortet vert ikkje sett av tvtime." #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "Lydstyrken til opptakskortet er no sett til %d %%." #: src/commands.c:2380 msgid "Processing every input field." msgstr "Viser alle biletfelt." #: src/commands.c:2383 msgid "Processing every top field." msgstr "Viser berre øvre biletfelt." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "Viser berre nedre biletfelt." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "Vassrett oppløysing vert sett til %d biletpunkt etter omstart." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "Fjernsynsstandarden vert sett til %s etter omstart." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "Brukar standardsprÃ¥k for XMLTV-data." #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "Brukar ukjend sprÃ¥k («%s») for XMLTV-data." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "XMLTV-sprÃ¥ket er sett til %s (%s)." #: src/commands.c:2527 msgid "All channels re-activated." msgstr "Alle kanalar vert no vist ved kanalhopping." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "Flyttar kanalen %d. Skriv inn det nye kanalnummeret." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "Du mÃ¥ slÃ¥ pÃ¥ signaldetektering før du kan søkja etter kanalar." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "Søkjer etter kanalar." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "Brukar ikkje «closed captions»." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "Brukar «closed captions»." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "Inga VBI-eining sett opp for CC-avkoding." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "Avkodar fargar som %s for denne kanalen." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "Køyrer: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "Brukar no signaldetektering." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "Brukar no ikkje signaldetektering." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "Brukar XDS-avkoding." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "Brukar ikkje XDS-avkoding." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "Inverterar no fargane pÃ¥ biletet." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "Inverterar no ikkje fargane pÃ¥ biletet" #: src/commands.c:2822 msgid "Mirror enabled." msgstr "Speglar no biletet." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "Speglar no ikkje biletet." #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "Viser no biletet i svartkvitt." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "Viser no biletet i fargar." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "Overskanning: %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "Biletinnstillingane er no nullstilt til standard." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "Brukar standardfrekvensar for NTSC-kabelfjernsyn." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "Brukar frekvensar for IRC-kabelfjernsyn." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "Brukar frekvensar for HRC-kabelfjernsyn." #: src/commands.c:3029 msgid "Volume" msgstr "Lydstyrke" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "Lagra biletoppsett som standard for alle kanalar.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "Lagra biletoppsett som standard for kanal %d.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Pause." #: src/commands.c:3310 msgid "Resumed." msgstr "Held fram." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "Feil ved lesing av oppsettfila «%s».\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "Fann ingen rotelement i XML-fila «%s».\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "«%s» er ikkje ei gyldig oppsettfil for tvtime.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "Klarte ikkje lesa oppsettfila. Innstillingane vert ikkje lagra.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "Klarte ikkje laga ny oppsettfil.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "Feil ved oppretting av oppsettfil.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "Klarte ikkje byta eigar til %s: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "tvtime er fri programvare, skriven av Billy Biggs, Doug Bell, samt mange\n" "andre. SjÃ¥ nettstaden vÃ¥r pÃ¥ http://tvtime.net/ for detaljar og kopivilkÃ¥r.\n" "\n" "Copyright © 2001, 2002, 2003 Billy Biggs, Doug Bell, Alexander S. Belov\n" "og Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "Bruk: %s [val] ...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen 16:9-modus.\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen 4:3-modus.\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr " -b, --vbidevice=EINING VBI-eining (standard: «/dev/vbi0»).\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr " -c, --channel=KANAL Byt til vald kanal ved oppstart.\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 #, fuzzy msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr "" " -d, --device=EINING video4linux-eining (standard: «/dev/video0»).\n" #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=NAMN Frekvenstabellen som skal brukast.\n" " (Standard: «us-cable».)\n" "\n" " Gyldige verdiar:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (køyr først tvtime-scanner)\n" "\n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" " -F, --configfile=FIL Ektra tilleggsfil Ã¥ henta innstillingar frÃ¥.\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help Vis denne hjelpeteksten.\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr " -g, --geometry=GEOMETRI Vel vindaugsstorleik.\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr " -i, --input=SIGNAL video4linux-signalnummer (standard: 0).\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=PUNKT Vassrett oppløysing (standard: 720 " "biletpunkt).\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" " -k, --slave Ikkje bruk signalhandtering (slavemodus).\n" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr " -m, --fullscreen Start tvtime i fullskjermsmodus.\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 #, fuzzy msgid " -l, --borderless Start tvtime without a window border.\n" msgstr " -M, --window Start tvtime i vindaugemodus.\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window Start tvtime i vindaugemodus.\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=STANDARD Vel fjernsynsstandard. Desse er støtta:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (standard: NTSC).\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops Vis statistikk for mista bilete (for " "feilsøking).\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr " -S, --saveoptions Lagra kommandolinjeval i oppsettfila.\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr " -t, --xmltv=FIL Les XMLTV-programoversikt frÃ¥ fila.\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=SPRÃ…K Bruk XMLTV-data pÃ¥ dette sprÃ¥ket (viss " "tilgjengeleg).\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr " -v, --verbose Send feilsøkingsmeldingar til «stderr».\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr " -X, --display=SKJERM Kopla til dette skjermbiletet.\n" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 #, fuzzy msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer=EINING[:KANAL] Miksereining og kanal Ã¥ styra.\n" " (standard: «/dev/mixer:line»)\n" "\n" " Gyldige kanalar er:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr "" " -R, --priority=PRI Set prosessprioriteten tvtime skal køyra med.\n" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "Leser oppsett frÃ¥ «%s».\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "Kan ikkje køyra to utgÃ¥ver av tvtime med same oppsett.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "Lagrar kommandolinjeval.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "Kan ikkje oppdatera oppsett samtidig som tvtime køyrer.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "Ingen signal" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "Demp" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "Klarte ikkje laga «%s»: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "Klarte ikkje opna «%s»: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" "Klarte ikkje starta UTF-8 til %s-omformar: feil ved iconv_open («%s»).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " Klarte ikkje bruka UTF-8-modus med bind_textdomain_codeset()\n" " (feilmelding: «%s».) Dette kan føra til at nokre meldingar vert vist\n" " feil. Meld frÃ¥ om denne feilen pÃ¥:\n" " %s.\n" "\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "Tilgjengelege kommandoar:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "tvtime køyrer ikkje.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: Klarte ikkje opna «%s»: %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: Ugyldig kommando: «%s»\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: Sender kommandoen «%s» med argumentet «%s».\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: Sender kommandoen «%s».\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "Søkjer med fjernsynsstandarden %s.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " Fann ingen fjernsynsmottakar pÃ¥ kjelda «%d». Om du har ein\n" " mottakar kan du velja ei anna kjelde med «--input=».\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "Søkjer frÃ¥ %6.2f MHz til %6.2f MHz.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "Kontrollerer %6.2f MHz:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "Fann signal" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "Fann ein kanal pÃ¥ %6.2f MHz (%.2f–%.2f MHz). Legg til i kanaloversikt.\n" #~ msgid "Preferred audio mode" #~ msgstr "Føretrekt lydmodus" #~ msgid "Mono" #~ msgstr "Mono" #~ msgid "Stereo" #~ msgstr "Stereo" #~ msgid "SAP" #~ msgstr "SAP" #~ msgid "Primary Language" #~ msgstr "SprÃ¥k 1" #~ msgid "Secondary Language" #~ msgstr "SprÃ¥k 2" #~ msgid "" #~ "\n" #~ " You are using the bttv driver, but have not configured enough\n" #~ " buffers for tvtime to process the video optimally. This is\n" #~ " true by default with bttv in kernels before 2.4.21. Please\n" #~ " set the option gbuffers=4 when loading bttv. For more\n" #~ " information see our support page at %s\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Du brukar bttv-drivaren, men har ikkje sett opp nok bufferar\n" #~ " til at tvtime kan kan handtera filmkjelda optimalt. Viss du køyrer\n" #~ " ein Linux-kjerne som er eldre enn 2.4.21 er bufferinstillingane som\n" #~ " standard for lÃ¥ge. For Ã¥ løysa problemet kan du leggja til valet\n" #~ " gbuffers=4 nÃ¥r du lastar bttv. Meir informasjon finn du pÃ¥ " #~ "hjelpesida:\n" #~ " %s\n" #~ "\n" tvtime-1.0.11/po/nn.gmo0000664000175000017500000005555712663345675011624 00000000000000Þ•ï”K 8_9±™qKŽƒ¡ ·'ÅKís9:­IèK2D~(ÃAìG.1v:¨5ãGMaM¯>ýÖ< I!F]!A¤!æ!ý!'"="Z"r")Œ"¶"Ï"Ö"Ü"á"ñ" ## .#O#6o#¦#­# ¼#Ç#à#ô# $$5$ L$X$l$Š$ $§$(¹$â$%,%2% 9% D%N%T%m%%7£%Û%ï%@&2O&.‚&±&¸&Ï&í&'&'?',R''“'£'¹' Î'7Ü'(.(+G( s((™(:°(ë("ô()) >)!_))Š)$›)$À)#å) **1*J*c*l**#—*%»*á*è* í*D÷* <+F+O+Hh+±+¸+È+Í+ á+ì+.,+/,[,m,3ƒ,·,»,Ä, Ø,æ,-- +-L-S-Z-k-{-‘- –-¢-)«-!Õ- ÷- .".22.e.z.ƒ.”.¥.­.Ã.Ë.#Ü.//8/V/r/x/Š/(©/Ò/ë/0!0A0[0o0 x0 …0‘0 ˜0)£0!Í0(ï031.L1{1™12²1&å1& 232S2q2Ž22¸2Õ2$í233(3C3]3 r3 }3Š3 3²3È3*Ü34$484O4S4d44-ž4-Ì4,ú4&'5%N5+t5 5±5¸5Ï5å566´16iæ7ÀP8„9–9Y:m;ø‰;(‚<L«<Nø<;G=Lƒ=CÐ=<>)Q>C{>>¿>.þ>3-B6aBE˜BGÞBV&C>}C̼CP‰DBÚDHEfE€E1E ÏE!ðEF40FeF„F‹F‘F–FªF ÁFÍFÞFýF?GVG]G pG~G”G+«G ×G*äG H0H?H%[HH HšH,¬H)ÙHI/ I;I @I JI UI"cI$†I«IBÉI J(*J9SJ9J7ÇJÿJ K)KBK UK,`KK&•K¼KÔKæKL L[+L!‡L©L(ÅLîL'ÿL"'M@JM‹M!”M¶M½MØM(öMN'N$6N$[N#€N ¤N°NÀNÙNöNùN O#!O'EOmOtO |OI†O ÐOÛOêOJùO DPNP]PbP qP|P%’P%¸PÞPôP? Q IQUQYQ `Q"lQQ¥Q¼QÚQâQëQRR2R 7RCR)UR)R(©R ÒRßR?ïR/S 6S CSPSeS lSzSS1ˆSºSÒSïST"T)TCT4_T ”T! T"ÂTåT!U&U >UIU ZUfU oU#|U U"²U2ÕU.V7VQVCoV³V&ÊV$ñV+W#BWfW wW"˜W»W2ÕWX X"X?X\X sX ”X XºXÊXÚX3ìX Y?YXYxY }Y(‹Y(´Y)ÝY)Z(1Z%ZZ1€Z-²ZàZ åZïZ [#[C[Z[ØÇÒ ë¨ÐÄ—¹dÔz¸(7p€81-x±Nì^HÊ ÌÍYäÏB,. ªbè›Ñ5M‡K6Fƒ¢ÀG@ß?íˬ'¤¶ÖE° ç …¡‹ŽÞ•»†Úéu4Ý%Á’¾}˜\·e>Q+åÙ~²mckâ«jq|Vy;µR¥OêD´Ušœ!iÕ”ï–h‰_Éãaæ¿ÆPgº×rt³sÅŒ¼:àvo"„IÎwX*n`3¯Ó“$=îT®C]2á#W§<Afl‚™Ü½ÂS ÛŸ&{ÃÈ/0¦ZŠ) ­L£[9‘ž©ˆJ Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -X, --display=DISPLAY Use the given X display to connect to. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -f, --frequencies=NAME The frequency table to use for the tuner. (defaults to us-cable). Valid values are: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (first run tvtime-scanner) -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -k, --slave Disables input handling in tvtime (slave mode). -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:1016:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange NTSC cable modeChange default audio standardChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed caption display failed to initialize, disabled. Closed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.Defaulting to PAL-I audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.South AfricaStandard (720 pixels)Stop channel scanSwitch audio standardTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using PAL-I audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: nn Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2005-09-14 23:44+0200 Last-Translator: Karl Ove Hufthammer Language-Team: Norwegian Nynorsk Language: nn MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: KBabel 1.10.2 Plural-Forms: nplurals=2; plural=(n != 1); Klarte ikkje unngÃ¥ root-løyve: %s. Avsluttar programmet grunna eventuelle tryggleiksproblem. Klarte ikkje bruka UTF-8-modus med bind_textdomain_codeset() (feilmelding: «%s».) Dette kan føra til at nokre meldingar vert vist feil. Meld frÃ¥ om denne feilen pÃ¥: %s. Fann ingen fjernsynsmottakar pÃ¥ kjelda «%d». Om du har ein mottakar kan du velja ei anna kjelde med «--input=». Opptakskortdrivaren din, «%s», ser ikkje ut til Ã¥ støtta opptak ved full biletfrekvens. SjÃ¥ til at drivaren er rett sett opp, og at du ikkje vald feil opptakseining («%s»). Opptakskortdrivaren din, %s, har ikkje sett opp nok bufferar til at tvtime kan kan handtera filmkjelda rett. SjÃ¥ i bruksrett- leiinga til drivaren korleis du kan auka talet pÃ¥ bufferar, og meld frÃ¥ om dette i feilrapporteringssystemet til tvtime: %s Tilgjengelege kommandoar: tvtime er fri programvare, skriven av Billy Biggs, Doug Bell, samt mange andre. SjÃ¥ nettstaden vÃ¥r pÃ¥ http://tvtime.net/ for detaljar og kopivilkÃ¥r. Copyright © 2001, 2002, 2003 Billy Biggs, Doug Bell, Alexander S. Belov og Achim Schneider. -A, --nowidescreen 4:3-modus. -F, --configfile=FIL Ektra tilleggsfil Ã¥ henta innstillingar frÃ¥. -I, --inputwidth=PUNKT Vassrett oppløysing (standard: 720 biletpunkt). -M, --window Start tvtime i vindaugemodus. -R, --priority=PRI Set prosessprioriteten tvtime skal køyra med. -S, --saveoptions Lagra kommandolinjeval i oppsettfila. -X, --display=SKJERM Kopla til dette skjermbiletet. -a, --widescreen 16:9-modus. -b, --vbidevice=EINING VBI-eining (standard: «/dev/vbi0»). -c, --channel=KANAL Byt til vald kanal ved oppstart. -f, --frequencies=NAMN Frekvenstabellen som skal brukast. (Standard: «us-cable».) Gyldige verdiar: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (køyr først tvtime-scanner) -g, --geometry=GEOMETRI Vel vindaugsstorleik. -h, --help Vis denne hjelpeteksten. -i, --input=SIGNAL video4linux-signalnummer (standard: 0). -k, --slave Ikkje bruk signalhandtering (slavemodus). -l, --xmltvlanguage=SPRÃ…K Bruk XMLTV-data pÃ¥ dette sprÃ¥ket (viss tilgjengeleg). -m, --fullscreen Start tvtime i fullskjermsmodus. -n, --norm=STANDARD Vel fjernsynsstandard. Desse er støtta: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (standard: NTSC). -s, --showdrops Vis statistikk for mista bilete (for feilsøking). -t, --xmltv=FIL Les XMLTV-programoversikt frÃ¥ fila. -v, --verbose Send feilsøkingsmeldingar til «stderr». %s Brukar: %d biletpunkt%s Maksimum (%d biletpunkt)«%s» er ikkje ei gyldig oppsettfil for tvtime. %s: Klarte ikkje tildela minne. %s: Klarte ikkje opna «%s»: %s %s: Ugyldig kommando: «%s» %s: Sender kommandoen «%s» med argumentet «%s». %s: Sender kommandoen «%s». 1.85:116:1016:916:9 + overskanningBrukar no 16:9-vising.16:9-vising2:3-kompenseringBrukar ikkje 2:3-kompensering.Brukar 2:3-kompensering.2:3-kompensering er ikkje mogleg for denne fjernsynsstandarden.2.35:14:3 + overskanning4:3 midtstiltBrukar no 4:3-vising.Legg til denne kanalenAlle kanalar vert no vist ved kanalhopping.Alltid øvstViser ikkje lenger alltid vindauget øvst.Viser no alltid vindauget øvst.BiletmaskeringMÃ¥lverdi for biletfrekvensMÃ¥lverdi for biletfrekvens: %.2f b/sLydforsterkingAustraliaAustralia (Optus)Gjennomsnittleg blittid: %.2f ms (%.0f MB/s)Gjennomsnittleg oppteikningstid: %5.2f msTilbakeBlittintervall: %4.1f/%4.1f ms (mÃ¥l: %4.1f ms)NedeLysstyrkeBakkesendtKabelfjernsynKabelfjernsyn med over 100 kanalarKlarte ikkje byta eigar til %s: %s. Klarte ikkje laga «%s»: %s Klarte ikkje laga FIFO. Fjernkontrollstøtta er derfor slÃ¥tt av. Klarte ikkje opna «%s»: %s Klarte ikkje opna opptakseininga «%s».Kan ikkje køyra to utgÃ¥ver av tvtime med same oppsett. Kan ikkje oppdatera oppsett samtidig som tvtime køyrer. Lydstyrken til opptakskortet vert ikkje sett av tvtime.I midtenByt modus for NTSC-kabelfjernsynByt standard lydstandardByt frekvenstabellFilmkjeldeKanalen vert no ikkje vist ved kanalhopping.KanalarKanalen vert no vist ved kanalhopping.Kontrollerer %6.2f MHz:Kina (bakkesendt)Viser no biletet i fargar.Viser no biletet i svartkvitt.SvartkvittKlarte ikkje starta vising av «closed captioning». Denne funksjonen er derfor slÃ¥tt av. Brukar ikkje «closed captions».Brukar «closed captions».Avkodar fargar som %s for denne kanalen.FargeinverteringInverterar no ikkje fargane pÃ¥ biletetInverterar no fargane pÃ¥ biletet.Klarte ikkje lesa oppsettfila. Innstillingane vert ikkje lagra. KontrastKlarte ikkje laga ny oppsettfil. BrukarVis kanal ved kanalhoppingSkildring av vald linjedoblarSjølvvald (køyr først tvtime-scanner)ReduserStandardsprÃ¥kAvkodar lyd som PAL-BG som standard.Avkodar lyd som PAL-DK som standard.Avkodar lyd som PAL-I som standard.LinjedoblarVel linjedoblarSkildring av linjedoblarIkkje bruk signaldetekteringAvMista bilete: %dBruk signaldetekteringFeil ved oppretting av oppsettfil. Feil ved lesing av oppsettfila «%s». EuropaAvsluttLukk menyKlarte ikkje starta UTF-8 til %s-omformar: feil ved iconv_open («%s»). FavorittarFininnstillingFininnstillingFann ein kanal pÃ¥ %6.2f MHz (%.2f–%.2f MHz). Legg til i kanaloversikt. FrankrikeFrekvenstabellFullFull: %.2f b/sFullskjermFullskjermsplasseringHalv: Linjedobla nedre felt: %.2f b/sHalv: Linjedobla øvre felt: %.2f b/sHøg (768 biletpunkt)Vassrett oppløysingVassrett oppløysing vert sett til %d biletpunkt etter omstart.FargenyanseAukSignalBiletfilterSignal: %s ved %d × %d biletpunktLÃ¥g (360 biletpunkt)Maskering (4:3-signal)Maskering (anamorfisk signal)MiddelsSpeglingSpeglar no ikkje biletet.Speglar no biletet.Middels (576 biletpunkt)DempNew ZealandNeste program: %sInga VBI-eining sett opp for CC-avkoding.Fann ingen rotelement i XML-fila «%s». Ingen programinformasjon er tilgjengelegIngen signalInga filmkjeldeKlarte ikkje starta menysystemet. Det vert derfor ikkje brukt. VisingOverskanningOverskanningOverskanning: %.1f%%Pause.YtingsestimatBileteBileteBiletinnstillingane er no nullstilt til standard.Føretrekt XMLTV-sprÃ¥kViser berre nedre biletfelt.Viser alle biletfelt.Viser berre øvre biletfelt.StilleStille skjermbiletlagringLeser oppsett frÃ¥ «%s». Flyttar kanalen %d. Skriv inn det nye kanalnummeret.Flytt kanalVis alle kanalar ved kanalhoppingNullstill til standardinstillingarVindaugsstorleik etter innhaldStart om att med nye instillingarStartar tvtime om att. Held fram.Køyrer «%s». Køyrer: %sRusslandFargemettingBruk som standard for denne kanalenBruk som standardBruk som standard for alle kanalarLagra biletoppsett som standard for alle kanalar. Lagra biletoppsett som standard for kanal %d. Lagrar kommandolinjeval. Søk etter kanalar med signalDu mÃ¥ slÃ¥ pÃ¥ signaldetektering før du kan søkja etter kanalar.Søkjer etter kanalar.Søkjer frÃ¥ %6.2f MHz til %6.2f MHz. Søkjer med fjernsynsstandarden %s. Vil ikkje lenger varsla skjermbiletlagring.Vil varsla kvar skjermbiletlagring.Skjermbilete: %sBruk PAL-modus for denne kanalenBruk SECAM-modus for denne kanalenVel fullskjermsplasseringLydstyrken til opptakskortet er no sett til %d %%.OppsettFann signalBrukar no ikkje signaldetektering.Brukar no signaldetektering.Steng av om %d minutt.SlÃ¥tt av automatisk avstenging.Sør-AfrikaStandard (720 biletpunkt)Stopp kanalsøkByt lydstandardFjernsynsstandardFjernsynsstandarden vert sett til %s etter omstart.Takk for at du brukte tvtime! SlÃ¥ av/pÃ¥ XDS-avkodingSlÃ¥ av/pÃ¥ «closed captions»OppeUkjent sprÃ¥kBrukar frekvensar for HRC-kabelfjernsyn.Brukar frekvensar for IRC-kabelfjernsyn.Avkodar lyd som PAL-BG for denne kanalen.Avkodar lyd som PAL-DK for denne kanalen.Avkodar lyd som PAL-I for denne kanalen.Brukar standardsprÃ¥k for XMLTV-data.Brukar standardfrekvensar for NTSC-kabelfjernsyn.Brukar ukjend sprÃ¥k («%s») for XMLTV-data.FilmLydstyrkeBrukar ikkje XDS-avkoding.Brukar XDS-avkoding.XMLTV-sprÃ¥ket er sett til %s (%s).tvtime køyrer ikkje. Bruk: %s [val] ... tvtime-1.0.11/po/sv.po0000664000175000017500000011511412663345675011457 00000000000000# Swedish translation of tvtime # Copyright (C) 2003, 2004 Billy Biggs # This file is distributed under the same license as the tvtime package. # Per von Zweigbergk , 2003, 2004 # Many thanks to Göran Uddeborg and Mikael Magnusson for proofreading and # suggestions. msgid "" msgstr "" "Project-Id-Version: tvtime 0.9.13\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2005-04-14 00:15+0200\n" "Last-Translator: Per von Zweigbergk \n" "Language-Team: Per von Zweigbergk \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "Inställningar för deinterlacer" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "Tillbaka" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "Full bildfrekvens: %.2f b/s" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "Halv bildfrekvens, deinterlacear övre bildfälten: %.2f b/s" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "Halv bildfrekvens, deinterlacear nedre bildfälten: %.2f b/s" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "Översvepning" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "Lägg pÃ¥ bildmask" #: src/tvtime.c:909 msgid "16:9 output" msgstr "16:9-visning" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "Ändra fönstrets storlek för att matcha innehÃ¥llet" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "Helskärm" # Finns bättre formulering? #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "Välj helskärmsposition" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "Alltid-överst" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Tysta skärmdumpar" #: src/tvtime.c:968 msgid "Centre" msgstr "I mitten" #: src/tvtime.c:975 msgid "Top" msgstr "Uppe" #: src/tvtime.c:981 msgid "Bottom" msgstr "Nere" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "MÃ¥lvärde för bildfrekvens" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "Uppskattad prestanda" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "Deinterlacer" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "Signal: %s vid %dx%d bildpunkter" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "MÃ¥lvärde för bildfrekvens: %.2f b/s" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "Genomsnittlig blit-tid: %.2f ms (%.0f MB/s)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "Genomsnittlig renderingstid: %5.2f ms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Missade bildrutor: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Blit-intervall: %4.1f/%4.1f ms (mÃ¥l: %4.1f ms)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + Översvepning" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1,85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2,35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 mitten" #: src/tvtime.c:1088 src/tvtime.c:1104 #, fuzzy msgid "16:10" msgstr "16:9" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + Översvepning" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "Bildmaskering (Anamorfisk signal)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "Bildmaskering (4:3-signal)" # Allokera kanske? #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: Kan inte tilldela minne.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "Kan inte öppna capture-enheten %s." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " Din capture-drivrutin, %s, verkar inte stödja capture\n" " vid full bildfrekvens. Var god kontrollera att drivrutinen är rätt\n" " inställd, och att du valt rätt enhet (%s).\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " Din capture-drivrutin, %s, ger inte tillräckligt mÃ¥nga buffrar\n" " för att tvtime ska kunna behandla bilden. Kontrollera drivrutinens\n" " dokumentation, för att se om du kan öka antalet buffrar som\n" " drivrutinen lÃ¥ter program hantera, och rapportera den här\n" " incidenten via tvtimes buggrapporteringssystem pÃ¥ %s.\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "Kunde inte initiera menysystemet -- inaktiverat.\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "Ingen videokälla" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "Kan inte skapa FIFO -- fjärrstyrning av tvtime inaktiverat.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "Kunde inte initiera visning av closed captions -- inaktiverad.\n" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "Alltid-överst aktiverat." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "Alltid-överst inaktiverat." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "16:9-visning aktivt." #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "4:3-visning aktivt." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "Skärmdumpsmeddelanden inaktiverade." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "Skärmdumpsmeddelanden aktiverade." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "2:3-matnings-kompensering inaktiverad." #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "2:3-matnings-kompensering aktiverad." #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "2:3-matning-kompensering ej relevant för vald tv-standard." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Skärmdump: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "Startar om tvtime.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "Tack för denna gÃ¥ng!\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " Kunde inte avstÃ¥ frÃ¥n root-rättigheter: %s.\n" " tvtime avslutas för att undvika säkerhetsproblem.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "Kör %s.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "Aktuell" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "Ingen programinformation tillgänglig" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "Nästa program: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "Flytta kanal" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "Visa kanal vid bläddring" #: src/commands.c:346 msgid "Stop channel scan" msgstr "Stoppa kanalsökning" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "Sök efter kanaler med signal" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "Visa alla kanaler vid bläddring" #: src/commands.c:364 msgid "Finetune current channel" msgstr "Fininställning" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "Ändra läge för NTSC-kabel-tv." #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "Välj SECAM-läge för denna kanal" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "Välj PAL-läge för denna kanal" #: src/commands.c:393 #, fuzzy msgid "Switch audio standard" msgstr "TV-standard" #: src/commands.c:400 msgid "Change frequency table" msgstr "Byt frekvenstabell" #: src/commands.c:406 msgid "Disable signal detection" msgstr "Inaktivera signaldetektorn" #: src/commands.c:407 msgid "Enable signal detection" msgstr "Aktivera signaldetektorn" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "Förvalt sprÃ¥k" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "Okänt sprÃ¥k" #: src/commands.c:623 msgid "Change default audio standard" msgstr "" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "Extra ljudförstärkning" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "TV-standard" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "VÃ¥grät upplösning" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Kabel-tv" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Marksänd TV" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Kabel-tv med över 100 kanaler" #: src/commands.c:709 msgid "Europe" msgstr "Europa" #: src/commands.c:717 msgid "Russia" msgstr "Ryssland" #: src/commands.c:724 msgid "France" msgstr "Frankrike" #: src/commands.c:731 msgid "Australia" msgstr "Australien" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "Australien (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "Nya Zeeland" #: src/commands.c:752 msgid "China Broadcast" msgstr "Kina (Marksänd TV)" #: src/commands.c:759 msgid "South Africa" msgstr "" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "Egen (kör tvtime-scanner först)" #: src/commands.c:783 msgid "Disabled" msgstr "Inaktiverat" #: src/commands.c:789 msgid "Quiet" msgstr "Tyst" #: src/commands.c:795 msgid "Medium" msgstr "Mellan" #: src/commands.c:801 msgid "Full" msgstr "Full" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s Aktuell inställning: %d bildpunkter" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "LÃ¥g (360 bildpunkter)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "Medel (576 bildpunkter)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Standard (720 bildpunkter)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Hög (768 bildpunkter)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s Maximal (%d bildpunkter)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "Starta om med nya inställningar" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "Öka" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "Minska" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "2:3-matnings-kompensering" #: src/commands.c:962 msgid "Colour invert" msgstr "Färginvertering" #: src/commands.c:970 msgid "Mirror" msgstr "Spegling" #: src/commands.c:978 msgid "Chroma killer" msgstr "Färgspärr" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "Inställningar" #: src/commands.c:1131 msgid "Last Channel" msgstr "" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "Kanalhantering" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "Källsignalinställningar" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "Bildinställningar" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Videobehandling" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Visningsinställningar" #: src/commands.c:1161 msgid "Quit" msgstr "" #: src/commands.c:1192 msgid "Exit menu" msgstr "Stäng meny" #: src/commands.c:1221 msgid "Frequency table" msgstr "Frekvenstabell" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "Fininställning" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "Ändra videokälla" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "Closed captions av/pÃ¥" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "XDS-avkodning av/pÃ¥" #: src/commands.c:1392 msgid "Overscan" msgstr "Översvepning" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Helskärmsposition" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "Beskrivning av vald deinterlacer" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Signalfilter" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "Beskrivning av deinterlacer" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Bild" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "Ljusstyrka" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "Kontrast" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "Färgmättnad" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Färgton" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "Spara bildinställningar som förval" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "Ã…tergÃ¥ till sparade förval" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "Spara bildinställningar som förval för alla kanaler" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "Spara bildinställningar som förval för denna kanal" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "Önskat XMLTV-sprÃ¥k" #: src/commands.c:1825 msgid "Favorites" msgstr "Favoriter" #: src/commands.c:1832 msgid "Add current channel" msgstr "Lägg till denna kanal" #: src/commands.c:1834 msgid "Exit" msgstr "Avsluta" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Insomningstimer: %d minuter." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "Insomningsfunktionen inaktiverad." #: src/commands.c:2238 #, fuzzy, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "Använder PAL-BG-avkodning för den här kanalens ljud." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "Använder PAL-DK-avkodning för den här kanalens ljud." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "Använder PAL-BG-avkodning för den här kanalens ljud." #: src/commands.c:2275 #, fuzzy, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "Avkodar ljud som PAL-BK som förval." #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "Avkodar ljud som PAL-DK som förval." #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "Avkodar ljud som PAL-BK som förval." #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "Kanalen visas nu vid bläddring." #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "Kanalen visas inte längre vid bläddring." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "Tvtime kommer inte ställa in capture-kortets ljudstyrka." #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "Ställer capture-kortets ljudstyrka till %d%%." #: src/commands.c:2380 msgid "Processing every input field." msgstr "Behandlar alla bildfält." #: src/commands.c:2383 msgid "Processing every top field." msgstr "Behandlar endast övre bildfälten." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "Behandlar endast undre bildfälten." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "VÃ¥grät upplösning blir %d punkter efter omstart." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "Vald TV-standard blir %s efter omstart." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "Använder förvalt sprÃ¥k för XMLTV-data." #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "Använder okänt sprÃ¥k (%s) för XMLTV-data." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "XMLTV-sprÃ¥k ställt till %s (%s)." #: src/commands.c:2527 msgid "All channels re-activated." msgstr "Alla kanaler visas nu vid bläddring." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "Flyttar kanal %d. Mata in nytt kanalnummer." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "Signaldetektorn mÃ¥ste aktiveras för kanalsökning." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "Söker efter kanaler." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "Closed captions inaktiverade." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "Closed captions aktiverade." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "Ingen VBI-enhet vald för CC-avkodning." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "Kanalens färger avkodas som %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "Kör: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "Signaldetektor aktiverad." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "Signaldetektor inaktiverad." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "XDS-avkodning aktiverad." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "XDS-avkodning inaktiverad." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "Färginvertering aktiverad." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "Färginvertering inaktiverad." #: src/commands.c:2822 msgid "Mirror enabled." msgstr "Spegling aktiverad." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "Spegling inaktiverad." #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "Färgspärr aktiverad." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "Färgspärr inaktiverad." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "Översvepning: %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "Bildinställningarna Ã¥terställda." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "Använder standardfrekvenser för NTSC-kabel-tv." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "Använder frekvenser för IRC-kabel-tv." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "Använder frekvenser för HRC-kabel-tv." #: src/commands.c:3029 msgid "Volume" msgstr "Ljudstyrka" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "Bildinställningarna sparades som förval för alla kanaler.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "Bildinställningarna sparades som förval för kanal %d.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Stillbild." #: src/commands.c:3310 msgid "Resumed." msgstr "Fortsätter." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "Fel vid tolkning av inställningsfilen %s.\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "Inget XML-rotelement hittades i %s.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s är inte en tvtime-inställningsfil.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "" "Inställningsfilen kunde inte tolkas. Inställningar kommer inte att sparas.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "Kunde inte skapa ny inställningsfil.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "Fel vid skapande av inställningsfil.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "Kan inte byta ägare för %s: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "tvtime är fri programvara, skriven av Billy Biggs, Doug Bell, och mÃ¥nga\n" "andra. För mer information och spridningsvillkor, se vÃ¥r webbsida:\n" "http://tvtime.net/\n" "\n" "tvtime är Copyright © 2001, 2002, 2003 Billy Biggs, Doug Bell,\n" "Alexander S. Belov, och Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "användning: %s [ALTERNATIV]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen 16:9-läge.\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen 4:3-läge.\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr " -b, --vbidevice=ENHET VBI-enhet (/dev/vbi0 om ej vald).\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr " -c, --channel=KANAL Välj kanal vid uppstart.\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 #, fuzzy msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr "" " -d, --device=ENHET video4linux-enhet (/dev/video0 om ej vald)\n" #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 #, fuzzy msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=NAMN Vilken frekvenstabell som ska användas för\n" " kanalväljaren. (us-cable om ej vald).\n" "\n" " Giltiga värden är:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (kör tvtime-scanner först)\n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" " -F, --configfile=FIL En ytterligare fil att ladda inställningar " "frÃ¥n.\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help Visa det här hjälpmeddelandet.\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr " -g, --geometry=GEOMETRI Ställer in visningsfönstrets storlek.\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr "" " -i, --input=SIGNALNUMMER video4linux signalnummer (0 om ej vald).\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=SAMPLING VÃ¥grät bildupplösning (720 bildpunkter om ej\n" " vald).\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr " -k, --slave Stäng av signalhantering (slavläge).\n" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr " -m, --fullsreen Starta tvtime i helskärmsläge.\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 #, fuzzy msgid " -l, --borderless Start tvtime without a window border.\n" msgstr " -M, --window Starta tvtime i fönsterläge.\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window Starta tvtime i fönsterläge.\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=NORM Välj tv-standard. tvtime stödjer:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N och PAL-60 (NTSC om ej vald).\n" "\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops Visa statistik för missade bildrutor\n" " (för avlusning).\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" " -S, --saveoptions Spara kommandoradsalternativ i " "inställningsfilen.\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr " -t, --xmltv=FIL Läs XMLTV-tablÃ¥er frÃ¥n en fil.\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=SPRÃ…K Använd XMLTV-data i ett givet sprÃ¥k, om\n" " tillgängligt.\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr "" " -v, --verbose Skriv avlusningsmeddelanden till stderr.\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr " -X, --display=DISPLAY Anslut till specifierad X-server.\n" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 #, fuzzy msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer=ENHET[:KANAL] Mixerenhet och mixerkanal att styra.\n" " (/dev/mixer:line om ej vald)\n" "\n" " Giltiga kanaler:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr " -R, --prioritet=PRI Ställ in tvtime-processens prioritet.\n" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "Läser inställningar frÃ¥n %s\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "Kan inte köra tvÃ¥ instanser av tvtime med samma konfiguration.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "Sparar kommandoradsalternativen.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "Kan inte uppdatera inställningsfilen samtidigt som tvtime körs.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "Ingen signal" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "Ljud avstängt" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "Kan inte skapa %s: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "Kan inte öppna %s: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" "Kan ej initiera teckenkonverterare (frÃ¥n UTF-8 till %s):\n" "fel vid iconv_open (%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " Kunde inte aktivera UTF-8-läge via bind_textdomain_codeset()\n" " (funktionen returnerade %s.) Det här kan orsaka att\n" " meddelanden inte visas korrekt!\n" " Var god felanmäl detta pÃ¥ %s.\n" "\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "Tillgängliga kommandon:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "tvtime är inte igÃ¥ng.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: Kan inte öppna %s: %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: Ogiltigt kommando \"%s\"\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: Sänder kommandot %s med argumentet %s.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: Sänder kommandot %s.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "Söker med tv-standarden %s.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " Ingen kanalväljare funnen pÃ¥ källa %d. Om du har en kanalväljare,\n" " välj en annan källa med hjälp av --input=.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "Söker frÃ¥n %6.2f MHz till %6.2f MHz.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "Kontrollerar %6.2f MHz:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "Signal funnen" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "Hittade en kanal pÃ¥ %6.2f MHz (%.2f - %.2f MHz), lägger till i kanallistan.\n" #~ msgid "Preferred audio mode" #~ msgstr "Önskat ljudläge" #~ msgid "Mono" #~ msgstr "Mono" #~ msgid "Stereo" #~ msgstr "Stereo" #~ msgid "SAP" #~ msgstr "SAP" #~ msgid "Primary Language" #~ msgstr "SprÃ¥k 1" #~ msgid "Secondary Language" #~ msgstr "SprÃ¥k 2" #~ msgid "" #~ "\n" #~ " You are using the bttv driver, but have not configured enough\n" #~ " buffers for tvtime to process the video optimally. This is\n" #~ " true by default with bttv in kernels before 2.4.21. Please\n" #~ " set the option gbuffers=4 when loading bttv. For more\n" #~ " information see our support page at %s\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Du använder bttv-drivrutinen, men du har inte ställt in\n" #~ " tillräckligt mÃ¥nga buffrar för att tvtime:s videobehandling\n" #~ " ska fungera optimalt. Ifall du kör en version av Linux äldre\n" #~ " än 2.4.21, är de förvalda inställningarna för lÃ¥ga. För att\n" #~ " lösa problemet, välj inställningen gbuffers=4 när du laddar\n" #~ " bttv-modulen. För mer information, se vÃ¥r hjälpsida:\n" #~ " %s\n" #~ "\n" #~ msgid "Use PAL-BG audio decoding" #~ msgstr "Avkoda ljud som PAL-BG" #~ msgid "Use PAL-DK audio decoding" #~ msgstr "Avkoda ljud som PAL-DK" #~ msgid "Default to PAL-DK audio decoding" #~ msgstr "Använd PAL-DK som förval vid ljudavkodning" #~ msgid "" #~ "\n" #~ " Enhanced Real Time Clock support in your kernel is necessary for\n" #~ " smooth video. We strongly recommend that you load the 'rtc' kernel\n" #~ " module before starting tvtime, and make sure that your user has\n" #~ " access to the device file (/dev/rtc or /dev/misc/rtc). See our\n" #~ " support page at %s for more information.\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Utökat stöd för RTC (realtidsklocka) i din kärna krävs för att\n" #~ " bilden inte ska hacka. Vi rekommenderar starkt att du laddar\n" #~ " kernelmodulen \"rtc\" innan tvtime startas, och att du ser till att\n" #~ " din användare har tillgÃ¥ng till enhetsfilen (/dev/rtc eller\n" #~ " /dev/misc/rtc). Se vÃ¥r hjälpsida: %s för mer information.\n" #~ "\n" #~ msgid "" #~ "\n" #~ " Failed to get 1024 Hz resolution from your RTC device. High\n" #~ " resolution access is necessary for video to be smooth. Please\n" #~ " run tvtime as root, set tvtime as SUID root, or change the\n" #~ " maximum RTC resolution allowed for user processes by running this\n" #~ " command as root:\n" #~ " sysctl -w dev.rtc.max-user-freq=1024\n" #~ " See our support page at %s for more information.\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Kunde inte fÃ¥ en upplösning pÃ¥ 1024 Hz frÃ¥n din RTC-enhet. TillgÃ¥ng\n" #~ " till hög upplösning är nödvändigt för mjuk videouppspelning. Kör\n" #~ " tvtime som root, sätt tvtime som SUID-root, eller ändra den maximala\n" #~ " tillÃ¥tna RTC-upplösningen för användarprocesser genom att köra\n" #~ " följande kommando som root:\n" #~ " sysctl -w dev.rtc.max-user-freq=1024\n" #~ " Se vÃ¥r hjälpsida: %s för mer information.\n" #~ "\n" tvtime-1.0.11/po/pt_BR.gmo0000664000175000017500000006377712664122141012200 00000000000000Þ•÷ÔKŒ¸_¹±qËÅ=! 7'EKms¹:-ØhIAK‹D×(AEG‡=Ï1 :? 5z G° Mø CF!MŠ!>Ø!Ö"œî"I‹#FÕ#A$\^$N»& '!''9'a'~'–')°'Ú'ó'ú'((( /(;( R(s(6“(Ê(Ñ( à(ë()) 3)A)Y) p)|))®) Á)Ë)(Ý)*$*,)*V* ]* h*r*x*‘*±*7Ç*ÿ*+@2+2s+.¦+Õ+Ü+ó+,(,&<,c,,v,£,·,Ç,Ý, ò,7-8-R-+k- —-¥-½-:Ô-.".;.C. b.!ƒ.¥.®.$¿.$ä.# / -/:/U/n/‡//£/#»/%ß/0 0 0D0 `0j0s0HŒ0Õ0Ü0ì0ñ0 11.$1+S11‘13§1Û1ß1è1 ü1 2 $212B2 \2}2„2‹2œ2¬2Â2 Ç2Ó2)Ü2!3 (3 I3S32c3–3«3´3Å3Ö3Þ3ô3ü3# 414J4i4‡4£4©4»4À4(ß45!5>5W5w5‘5¥5 ®5 »5Ç5 Î5)Ù5!6(%63N6.‚6±6Ï62è6&7&B7i7‰7§7Ä7Ó7î7 8$#8H8N8^8y8“8 ¨8 ³8À8Ö8è8þ8*9=9Z9n9…9‰9š9·9-Ô9-:,0:&]:%„:+ª:Ö:ç:î:;;:;O;ßg;kG=Á³=su>Æé>/°?à@%ù@'BBGBsŠB7þBÙ6C>DEODG•D(ÝDHEIOE?™EÙE9âH1ISNIN¢I@ñIS2J;†JÓÂJŸ–KL6LOƒLDÓLÑMfêNQOfO3~O'²OÚOôO,P=PYP`PfPkP ƒP ¤P°P"ÇPêP@ QKQRQiQzQšQ!²QÔQãQþQR3R/PR€R “RžR,±R(ÞRS:SISOSVS]SbS-~S¬S>ÂST4TRLTGŸT=çT%U,UEU!eU‡U¡U³UÅUÔUëUûUV.V:=VxV ‡V8“VÌVßVþVRW mW<wW´WºW*ÎW*ùW$X-X/(^g^€^ ‘^²^Ë^Ô^í^ô^: _G_$^_'ƒ_$«_Ð_Ù_ö_û_7`Q`i`"€`0£`$Ô`ù` a a +a7a ?a4Ka+€a2¬a=ßa5b'Sb{b:Œb'Çb)ïb%c)?c&icc¤c Ãcäc1d6dEdUdud’d§d·dÆdÛdöd e.eNeke‹ešeŸe!³e!Õe9÷e91f8kf/¤f+Ôf:g;gSgZgzg#—g#»gßgàÏÚ¤ ó¯Ø‡ÌžÁjÜ€À.=v†>73~¹TôdNÒ ÔÕ_ì׸H24—&±hð¢Ù;SQ< L‰©ÈMáFçEõÓg-«¾ÞK· –ï§‹¨‘”æœÃŒâñ{:îå+əƃ“Ÿb¿kDW1ê$q„ºsi¦²pw‚\A½X¬Uò ¼[¡£'oÝ›÷neÑë#íÄÎVmÂßJxz»yÍ’³@èÇ|u(OÖ…!}^0•tf%9¶ÛŠ*CöZµI"c8é)]®BGlrˆ äÅÊYãš,ËÐ56­`/ ´Rªa?˜¥°ŽP Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to Examples: hw:0,0 disabled -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -X, --display=DISPLAY Use the given X display to connect to. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -d, --device=DEVICE video4linux device (defaults to -f, --frequencies=NAME The frequency table to use for the tuner. (defaults to us-cable). Valid values are: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (first run tvtime-scanner) -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -k, --slave Disables input handling in tvtime (slave mode). -l, --borderless Start tvtime without a window border. -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -p, --alsainputdev=DEV Specifies an ALSA device to read input on Examples: -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. -x, --mixer=| The mixer device and channel to control. The first variant sets the OSS mixer the second one ALSA. (defaults to default/Master) Valid channels for OSS are: vol, bass, treble, synth, pcm, speaker, line, mic, cd, mix, pcm2, rec, igain, ogain, line1, line2, line3, dig1, dig2, dig3, phin, phout, video, radio, monitor -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-seconds %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:1016:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange NTSC cable modeChange default audio standardChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed caption display failed to initialize, disabled. Closed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.Defaulting to PAL-I audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLast ChannelLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsQuitReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.South AfricaStandard (720 pixels)Stop channel scanSwitch audio standardTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using PAL-I audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: tvtime 1.0.4 Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2016-02-24 12:32-0300 Last-Translator: Mauro Carvalho Chehab Language-Team: Português do Brasil Language: pt_BR MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.6 Plural-Forms: nplurals=2; plural=(n > 1); X-Poedit-Basepath: .. X-Poedit-SearchPath-0: src Erro ao largar os privilégios de root: %s. O tvtime sairá para evitar problemas de segurança. Erro ao entrar em modo UTF-8 usando bind_textdomain_codeset() (retornou %s). Isto pode causar uma exibição incorreta de mensagens Por favor, relate este problema em %s. Nenhum sintonizador encontrado na entrada %d. Se tiver um, selecione outra entrada usando --input=. O driver da placa de captura, %s, parece não suportar captura a taxa nominal. Por favor, verifique se está mal configurado ou se selecionou o dispositivo de captura errado (%s). O driver da sua placa de captura, %s, não está disponibilizando memória suficiente para o tvtime processar o vídeo. Por favor, verifique na documentação do seu driver de como é possível aumentar a memória disponível à aplicações e relate-o ao tvtime bug tracker em %s Comandos disponíveis: O tvtime é um programa livre, desenvolvido por Billy Biggs, Doug Bell e muitos outros. Para detalhes e condições de cópia, por favor, veja a nossa página em http://tvtime.net/ O tvtime tem Copyright (C) 2001, 2002, 2003 por Billy Biggs, Doug Bell, Alexander S. Belov e Achim Schneider. -A, --nowidescreen modo 4:3. -F, --configfile=FICHEIRO Arquivo de configuração adicional. -I, --inputwidth=AMOSTRAG. Resolução horizontal da entrada (padrão: 720 pontos). -M, --window Inicia em modo de janela. -p, --alsaoutputdev=DEV Especifica um dispositivo ALSA para saída. Exemplos: hw:0,0 disabled -R, --priority=PRI Define a prioridade do processo. -S, --saveoptions Gravar as opções da linha de comando. -X, --display=DISPLAY Usar o display X informado para conectar. -a, --widescreen modo 16:9. -b, --vbidevice=DISPOS. dispositivo VBI (por omissão: /dev/vbi0). -c, --channel=CANAL Sintonizar o canal especificado no início. -d, --device=DISPOSITIVO dispositivo video4linux (default: -f, --frequencies=NOME A tabela de freqüências para a sintonia. (por omissão: us-cable). Valores válidos: us-cable us-cable100 us-broadcast china-broadcast japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (rodar tvtime-scanner antes) -g, --geometry=GEOMETRIA Define o tamanho da janela. -h, --help Mostrar esta ajuda. -i, --input=NUMENTRADA Número do dispositivo video4linux (por omissão: 0). -k, --slave Desativa o tratamento de entrada (modo escravo). -M, --window Inicia tvtime sem borda na janela. -l, --xmltvlanguage=LING Usar dados XMLTV no idioma informado, se disponível. -m, --fullscreen Inicia em modo de tela cheia. -n, --norm=NORMA A norma usada na entrada. O tvtime suporta: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N ou PAL-60 (por omissão: NTSC). -p, --alsainputdev=DEV Especifica um dispositivo ALSA para entrada. Exemplos: -s, --showdrops Exibe estatísticas de abdicação de imagens. -t, --xmltv=FICHEIRO Ler as programações XMLTV do arquivo informado. -v, --verbose Exibe mensagens de erro para o stderr. -x, --mixer=DISPOS[:CN] O dispositivo mixer e canal para controle. (padrão:/dev/mixer:line) Canais válidos: vol, bass, treble, synth, pcm, speaker, line, mic, cd, mix, pcm2, rec, igain, ogain, line1, line2, line3, dig1, dig2, dig3, phin, phout, video, radio, monitor -z, --alsalatency=LATÊNCIA Especifica a latência do dispositivo ALSA de loopback em milisegundos %s Atual: %d pontos%s Máximo (%d pontos)%s não é um arquivo de configuração do tvtime. %s: Não é possível alocar memória. %s: Erro ao abrir %s: %s %s: Comando inválido '%s' %s: Enviando o comando %s com argumento %s. %s: Enviando o comando %s. 1.85:116:1016:916:9 + sobre-amostragemModo de exibição 16:9 ativado.Saída 16:9Inversão pulldown 2-3Inversão pulldown 2-3 desativada.Inversão pulldown 2-3 ativada.A inversão pulldown 2-3 não é válida para a sua norma de TV.2.35:14:3 + sobre-amostragem4:3 centralizadoModo de exibição 4:3 ativado.Adicionar o canal atualTodos os canais foram reativados.Sempre no topoSempre no topo desativado.Sempre no topo ativado.Aplicar relação de aspectoTaxa de exibição tentativaTaxa de apresentação objetivo: %.2f quadros/sControle do volumeAustráliaAustrália (Optus)Tempo médio de desenho: %.2f ms (%.0f MB/s)Tempo médio de renderização: %5.2f msVoltarIntervalo de desenho: %4.1f/%4.1f ms (pretendido %4.1f ms)FundoBrilhoAntenaCaboCabo com mais de 100 canaisNão foi possível alterar o dono de %s: %s. Erro ao criar %s: %s Não foi possível criar FIFO, controle do tvtime desativado. Erro ao abrir %s: %s Não é possível abrir o dispositivo de captura %s.Não é possível executar duas instâncias do tvtime com a mesma configuração. Não é possível alterar a configuração com o tvtime em execução. O volume da placa de captura não será ajustado pelo tvtime.CentroAlterar o modo NTSC caboMudar padrão da norma de audioAlterar a tabela de freqüênciasAlterar a fonte de vídeoCanal desativado.Gestão de canaisCanal ativado.Verificando %6.2f MHz:China BroadcastPreto e branco desativado.Preto e branco ativado.Preto e brancoA inicialização da exibição de CC falhou, desativada. CC desativada.CC ativada.Decodificação de cor para este canal definida como %s.Inversão de coresInversão de cores desativada.Inversão de cores ativada.Arquivo de configuração não pode ser lido. Preferências não serão gravadas. ContrasteNão foi possível criar um novo arquivo de configuração. AtualCanal atual ativadoDescrição da desentrelaçamento correntePersonalizado (rodar tvtime-scanner antes)DiminuirIdioma padrãoPadronizando a decodificação de audio PAL-BG.Padronizando a decodificação de audio PAL-DK.Padronizando a decodificação de audio PAL-I.DesentrelaçadorConfiguração do desentrelaçadorDescrição do desentrelaçamentoDesativar a detecção de sinalDesativadoImagens não mostradas: %dAtivar a detecção de sinalOcorreu um erro ao criar o arquivo de configuração. Ocorreu um erro ao ler o arquivo de configuração %s. EuropaSairSair do menuFalhou a inicialização do conversor de UTF-8 para %s: iconv_open falhou(%s). FavoritosAjuste finoAjustar o canal atualEncontrado um canal em %6.2f MHz (%.2f - %.2f MHz), adicionando à lista de canais. FrançaTabela de freqüênciasTotalTaxa nominal: %.2f quadros/sTela cheiaPosição da tela cheiaMeia taxa, desentrelaçar campo inferior: %.2f quadros/sMeia taxa, desentrelaçar campo superior: %.2f quadros/sAlto (768 pixels)Resolução horizontalA resolução horizontal será de %d pontos no reinício.CorAumentarConfiguração da entradaFiltros de entradaEntrada: %s a %dx%d pontosÚltimo canalBaixo (360 pontos)Preferência de relação de aspecto: entrada 4:3Preferência de relação de aspecto: entrada anamórficaMédioEspelhoEspelho desativado.Espelho ativado.Moderado (576 pontos)Sem somNova ZelândiaPróximo: %sNão há dispositivo VBI configurado para decodificação CC.Não foi encontrado um elemento raiz XML em %s. Não há informação do programa disponívelSem sinalNão há fonte de vídeoA inicialização da Informação na tela falhou, desativada. Configuração da saídaSobre-amostragemPreferência de sobre-amostragemSobre-amostragem: %.1f%%Pausado.Estimativa de desempenhoImagemPreferências da imagemAs preferências de imagem retornaram aos valores padrão.Idioma XMLTV preferidoProcessando todos os campo inferior.Processando todos os campos de entrada.Processando todos os campo superior.DiscretoCapturas de tela silenciosasSairLendo a configuração de %s Renumerando o canal %d. Insira o novo número do canal.Renumerar o canal atualAtivar todos os canaisRecarregar valores padrão globaisRedimensionar a janela de acordo com o conteúdoReiniciar com as novas preferênciasReinicializando o tvtime. Resumido.Rodando %s. Rodando: %sRússiaSaturaçãoGravar as preferências atuais como padrão do canalGravar as preferências atuais como padrãoGravar as preferências atuais como padrão globalPreferências de imagem atuais gravadas como padrão global. Preferências de imagem atuais gravadas no canal %d. Gravando opções da linha de comando. Pesquisar canaisPesquisa indisponivel com verificador de sinal desativado.Pesquisando por canais em transmissão.Pesquisando de %6.2f MHz até %6.2f MHz. Pesquisando usando a norma de TV %s. Mensagens de captura de tela desativadas.Mensagens de captura de tela ativadas.Captura de tela: %sDefinir o canal atual como PALDefinir o canal atual como SECAMDefinir posição da tela cheiaDefinindo o volume da placa de captura para %d%%.ConfiguraçãoSinal detectadoDetecção de sinal desativada.Detecção de sinal ativada.Sleep em %d minutos.Sleep terminadoÃfrica do SulPadrão (720 pontos)Parar a pesquisa de canaisMudar norma do audioNorma da televisãoO padrão de televisão será %s no reinício.Obrigado por usar o tvtime. (Des)ativar decodificação XDS(Des)ativar CCTopoIdioma desconhecidoUsando freqüências de cabo HRC.Usando freqüências de cabo IRC.Usando a decodificação de audio PAL-BG para este canal.Usando a decodificação de audio PAL-DK para este canal.Usando a decodificação de audio PAL-I para este canal.Usando o idioma padrão para os dados do XMLTV.Usando freqüências de cabo NTSC nominais.Usando um idioma desconhecido (%s) para os dados do XMLTV.Processamento de vídeoVolumeDecodificação XDS desativada.Decodificação XDS ativada.Idioma XMLTV definido como %s (%s).O tvtime não está em execução. utilização: %s [OPÇÃO]... tvtime-1.0.11/po/sk.po0000664000175000017500000011256212664122141011426 00000000000000# Dusan Kazik , 2016. #zanata msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2016-02-26 01:51-0500\n" "Last-Translator: Dusan Kazik \n" "Language-Team: Slovak\n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Zanata 3.8.2\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "Konfigurácia odstránenia prekladania" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "Späť" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "Plná rýchlosÅ¥ snímkov: %.2f sn./s" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "PoloviÄná frekvencia, odstránenie prekladania horných polí: %.2f sn./s" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "" "PoloviÄná frekvencia, odstránenie prekladania spodných polí: %.2f sn./s" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "Nastavenie overscanu" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "PoužiÅ¥ zmenu veľkosti" #: src/tvtime.c:909 msgid "16:9 output" msgstr "Výstup 16:9" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "ZmeniÅ¥ veľkosÅ¥ okna podľa obsahu" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "Režim na celú obrazovku" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "NastaviÅ¥ pozíciu režimu na celú obrazovku" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "Vždy navrchu" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Tiché snímky obrazovky" #: src/tvtime.c:968 msgid "Centre" msgstr "V strede" #: src/tvtime.c:975 msgid "Top" msgstr "Navrchu" #: src/tvtime.c:981 msgid "Bottom" msgstr "Naspodku" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "Pokusná frekvencia snímkov" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "Odhad výkonu" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "Nástroj na odstránenie prekladania" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "Vstup: %s na %dx%d pixelov" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "Pokusná frekvencia snímkov: %.2f sn./s" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "Priemerná doba blitu: %.2f ms (%.0f MB/sek)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "Priemerný Äas vykresľovania: %5.2f ms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Zahodené snímky: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Odstup blitov: %4.1f/%4.1f ms (chcených %4.1f ms)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + overscan" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1.85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2.35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 nastred" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "16:10" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + overscan" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "Nastavenie zmeny veľkosti (anamorfný vstup)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "Nastavenie zmeny veľkosti (vstup 4:3)" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: Nedá sa prideliÅ¥ pamäť.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "Nedá sa otvoriÅ¥ zaznamenávacie zariadenie %s." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " Zdá sa, že ovládaÄ vaÅ¡ej zaznamenávacej karty %s\n" " nepodporuje záznam v plnej frekvencii snímkov. Prosím, skontrolujte\n" " konfiguráciu, alebo Äi nie je vybraté nesprávne zaznamenávacie\n" " zariadenie (%s).\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " OvládaÄ vaÅ¡ej zaznamenávacej karty %s neposkytuje\n" " dostatok zásobníkov pre program tvtime na spracovanie videa.\n" " Prosím, skontrolujte v dokumentácii vášho ovládaÄa, Äi môžete\n" " zvýšiÅ¥ poÄet zásobníkov poskytnutých aplikáciám a nahláste túto\n" " chybu na adrese %s\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "Zlyhala inicializácia displeju na obrazovke. Bude zakázaný.\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "Žiadny zdroj videa" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "" "Nedá sa vytvoriÅ¥ zásobník FIFO. Diaľkové ovládanie programu tvtime bude " "zakázané.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "Zlyhala inicializácia zobrazenia skrytých titulkov. Budú zakázané.\n" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "Režim vždy navrchu povolený." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "Režim vždy navrchu zakázaný." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "Režim zobrazenia 16:90 aktívny." #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "Režim zobrazenia 4:3 aktívny." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "Správy snímkov obrazoviek zakázané." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "Správy snímkov obrazoviek povolené." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "2-3 pulldown inverzia zakázaná." #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "2-3 pulldown inverzia povolená." #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "2-3 pulldown inverzia nie je platná s vaÅ¡ou TV normou." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Snímok obrazovky: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "ReÅ¡tartuje sa program tvtime.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "ÄŽakujeme za používanie programu tvtime.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " Zlyhalo zahodenie privilégií správcu: %s.\n" " Program tvtime teraz skonÄí kvôli zabráneniu bezpeÄnostným problémom.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "Spúšťa sa %s.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "Aktuálne" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "Nie sú dostupné informácie o programe" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "ÄŽalší: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "PreÄíslovaÅ¥ aktuálny kanál" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "Aktuálny aktívny kanál v zozname" #: src/commands.c:346 msgid "Stop channel scan" msgstr "ZastaviÅ¥ vyhľadávanie kanálov" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "VyhľadaÅ¥ signál kanálov" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "ObnoviÅ¥ vÅ¡etky kanály ako aktívne" #: src/commands.c:364 msgid "Finetune current channel" msgstr "Jemne ladiÅ¥ aktuálny kanál" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "ZmeniÅ¥ káblový režim NTSC" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "NastaviÅ¥ aktuálny kanál ako SECAM" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "NastaviÅ¥ aktuálny kanál ako PAL" #: src/commands.c:393 msgid "Switch audio standard" msgstr "Prepnúť Å¡tandard zvuku" #: src/commands.c:400 msgid "Change frequency table" msgstr "ZmeniÅ¥ frekvenÄnú tabuľku" #: src/commands.c:406 msgid "Disable signal detection" msgstr "ZakázaÅ¥ zistenie signálu" #: src/commands.c:407 msgid "Enable signal detection" msgstr "PovoliÅ¥ zistenie signálu" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "Predvolený jazyk" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "Neznámy jazyk" #: src/commands.c:623 msgid "Change default audio standard" msgstr "ZmeniÅ¥ predvolený Å¡tandard zvuku" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "Zosilnenie hlasitosti zvuku" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "Televízny Å¡tandard" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "Horizontálne rozlíšenie" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Kábel" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Vysielanie" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Kábel s viac ako 100 kanálmi" #: src/commands.c:709 msgid "Europe" msgstr "Európa" #: src/commands.c:717 msgid "Russia" msgstr "Rusko" #: src/commands.c:724 msgid "France" msgstr "Francúzsko" #: src/commands.c:731 msgid "Australia" msgstr "Austrália" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "Austrália (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "Nový Zéland" #: src/commands.c:752 msgid "China Broadcast" msgstr "Čínske vysielanie" #: src/commands.c:759 msgid "South Africa" msgstr "Južná Afrika" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "Vlastná (najskôr spustite program tvtime-scanner)" #: src/commands.c:783 msgid "Disabled" msgstr "Zakázané" #: src/commands.c:789 msgid "Quiet" msgstr "Slabé" #: src/commands.c:795 msgid "Medium" msgstr "Stredné" #: src/commands.c:801 msgid "Full" msgstr "Plné" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s Aktuálne: %d pixelov" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "Nízke (360 pixelov)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "Stredné(576 pixelov)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Å tandardné(720 pixelov)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Vysoké(768 pixelov)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s Maximálne (%d pixelov)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "ReÅ¡tartovaÅ¥ s novými nastaveniami" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "ZvýšiÅ¥" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "ZnížiÅ¥" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "2-3 pulldown inverzia" #: src/commands.c:962 msgid "Colour invert" msgstr "InvertovaÅ¥ farby" #: src/commands.c:970 msgid "Mirror" msgstr "ZrkadliÅ¥" #: src/commands.c:978 msgid "Chroma killer" msgstr "Odstránenie farieb" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "Nastavenie" #: src/commands.c:1131 msgid "Last Channel" msgstr "Posledný kanál" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "Správa kanálov" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "Konfigurácia vstupu" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "Nastavenia obrazu" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Spracovanie videa" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Výstupná konfigurácia" #: src/commands.c:1161 msgid "Quit" msgstr "UkonÄiÅ¥" #: src/commands.c:1192 msgid "Exit menu" msgstr "Ponuka skonÄenia" #: src/commands.c:1221 msgid "Frequency table" msgstr "FrekvenÄná tabuľka" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "Jemné ladenie" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "ZmeniÅ¥ zdroj videa" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "Prepnúť skryté titulky" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "Prepnúť dekódovanie XDS" #: src/commands.c:1392 msgid "Overscan" msgstr "Overscan" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Pozícia režimu na celú obrazovku" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "Aktuálny popis nástroja na odstránenie prekladania" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Vstupné filtre" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "Popis nástroja na odstránenie prekladania" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Obraz" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "Jas" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "Kontrast" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "SýtosÅ¥" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Odtieň" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "UložiÅ¥ aktuálne nastavenia ako predvolené" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "ObnoviÅ¥ na globálne predvolené" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "UložiÅ¥ aktuálne nastavenia ako globálne predvolené" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "UložiÅ¥ aktuálne nastavenia ako predvolené pre kanál" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "Uprednostňovaný jazyk XMLTV" #: src/commands.c:1825 msgid "Favorites" msgstr "Obľúbené" #: src/commands.c:1832 msgid "Add current channel" msgstr "PridaÅ¥ aktuálny kanál" #: src/commands.c:1834 msgid "Exit" msgstr "SkonÄiÅ¥" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Spánok o %d minút" #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "Spánok vypnutý." #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "Používa sa dekódovanie zvuku PAL-I pre tento kanál." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "Používa sa dekódovanie zvuku PAL-DK pre tento kanál." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "Používa sa dekódovanie zvuku PAL-BG pre tento kanál." #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "Nastavuje sa predvolené dekódovanie zvuku PAL-I." #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "Nastavuje sa predvolené dekódovanie zvuku PAL-DK." #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "Nastavuje sa predvolené dekódovanie zvuku PAL-BG." #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "Kanál oznaÄený ako aktívny v zozname prehliadania." #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "Kanál zakázaný zo zoznamu prehliadania." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "HlasitosÅ¥ zaznamenávacej karty nebude nastavená programom tvtime." #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "Nastavuje sa hlasitosÅ¥ zaznamenávacej karty na %d%%." #: src/commands.c:2380 msgid "Processing every input field." msgstr "Spracováva sa každé vstupné pole." #: src/commands.c:2383 msgid "Processing every top field." msgstr "Spracováva sa každé horné pole." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "Spracováva sa každé spodné pole." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "Po reÅ¡tarte bude nastavené horizontálne rozlíšenie %d pixelov." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "Po reÅ¡tarte bude nastavený televízny Å¡tandard %s." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "Používa sa predvolený jazyk údajov XMLTV." #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "Používa sa neznámy jazyk (%s) údajov XMLTV." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "Jazyk XMLTV nastavený na %s (%s)" #: src/commands.c:2527 msgid "All channels re-activated." msgstr "VÅ¡etky kanály sú znova aktivované." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "Znovu sa mapuje %d. Zadajte nové Äíslo kanálu." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "VyhľadávaÄ nie je dostupný so zakázanou kontrolou signálu." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "Vyhľadávajú sa vysielané kanály." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "Skryté titulky zakázané." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "Skryté titulky povolené." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "" "Nie je nakonfigurované žiadne zariadenie VBI pre dekódovanie skrytých " "titulkov." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "Dekódovanie farieb pre tento kanál nastavené na %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "Spúšťa sa: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "Zistenie signálu povolené." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "Zistenie signálu zakázané." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "Dekódovanie XDS povolené." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "Dekódovanie XDS zakázané." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "Invertovanie farieb povolené." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "Invertovanie farieb zakázané." #: src/commands.c:2822 msgid "Mirror enabled." msgstr "Zrkadlenie povolené." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "Zrkadlenie zakázané." #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "Odstránenie farieb povolené." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "Odstránenie farieb zakázané." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "Overscan: %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "Nastavenia obrazu obnovené na predvolené." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "Používajú sa nominálne káblové frekvencie NTSC." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "Používajú sa káblové frekvencie IRC." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "Používajú sa káblové frekvencie HRC." #: src/commands.c:3029 msgid "Volume" msgstr "HlasitosÅ¥" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "Uložené aktuálna nastavenia obrazu ako globálne predvolené.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "Uložené aktuálne nastavenia obrazu pre kanál %d.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Pozastavené." #: src/commands.c:3310 msgid "Resumed." msgstr "PokraÄované." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "Chyba pri analýze konfiguraÄného súboru %s.\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "NenaÅ¡iel sa žiadny koreňový prvok XML v %s.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s nie je platným súborom konfigurácie programu tvtime.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "Nedá sa analyzovaÅ¥ konfiguraÄný súbor. Nastavenia nebudú uložené.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "Nepodarilo sa vytvoriÅ¥ nový konfiguraÄný súbor.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "Chyba pri vytváraní konfiguraÄného súboru.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "Nedá sa zmeniÅ¥ vlastník súboru %s: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "Program tvtime je slobodný softvér, ktorý vytvoril Billy Biggs, Doug Bell\n" "a mnoho iných. Pre podrobnosti a podmienky kopírovania si, prosím, \n" "prezrite naÅ¡u webovú stránku na adrese http://tvtime.net/\n" "\n" "Autorské práva programu tvtime (C) 2001, 2002, 2003 Billy Biggs, Doug Bell,\n" "Alexander S. Belov, a Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "použitie: %s [VOĽBA]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen Režim 16:9.\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen Režim 4:3.\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr "" " -b, --vbidevice=ZARIADENIE Zariadenie VBI (predvolené je /dev/vbi0).\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr " -c, --channel=KANÃL Po spustení naladí urÄený kanál.\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr "" " -d, --device=ZARIADENIE Zariadenie video4linux (predvolené je " #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=NÃZOV FrekvenÄná tabuľka použitá pre tuner.\n" " (predvolená hodnota je us-cable).\n" "\n" " Platné hodnoty sú:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (najskôr spustite program tvtime-" "scanner)\n" "\n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" " -F, --configfile=SÚBOR DodatoÄný konfiguraÄný súbor, z ktorého " "naÄítaÅ¥ nastavenia.\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help Zobrazí túto správu pomocníka.\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr " -g, --geometry=GEOMETRIA Nastaví veľkosÅ¥ výstupného okna.\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr "" " -i, --input=ÄŒ.VSTUPU Číslo vstupu video4linux (predvolené je 0).\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=VZORKOVANIE Horizontálne rozlíšenie vstupu\n" " (predvolená hodnota je 720 pixelov).\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" " -k, --slave Zakáže ovládanie vstupu v programe tvtime " "(podriadený režim).\n" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr "" " -m, --fullscreen Spustí program tvtime v režime na celú " "obrazovku.\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 msgid " -l, --borderless Start tvtime without a window border.\n" msgstr " -l, --borderless Spustí program tvtime bez okraju okna.\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window Spustí program tvtime v režime okna.\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=NORMA Norma použitá pre vstup. Program tvtime " "podporuje:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N alebo PAL-60 (predvolená hodnota je " "NTSC).\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops Vypíše Å¡tatistiku pri zahodení snímkov (pre " "ladenie).\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" " -S, --saveoptions Uloží voľby príkazového riadku do " "konfiguraÄného súboru.\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" " -t, --xmltv=SÚBOR NaÄíta zoznamy XMLTV zo zadaného súboru.\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=JAZYK Použije údaje XMLTV v zadanom jazyku, ak je " "dostupný.\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr " -v, --verbose Vypíše ladiace správy do stderr.\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr " -X, --display=DISPLEJ Použije zadaný displej X na pripojenie.\n" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer=|\n" " Zariadenie zmieÅ¡avaÄa a kanál na ovládanie. " "Prvá\n" " varianta nastaví zmieÅ¡avaÄ OSS a druhá " "zmieÅ¡avaÄ\n" " ALSA (predvolená je hodnota default/Master)\n" "\n" " Platné kanály pre OSS sú:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr "" " -R, --priority=PRI Nastaví prioritu procesu, s ktorou sa spustí " "program tvtime.\n" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" " -p, --alsainputdev=ZAR UrÄí zariadenie ALSA, z ktorého sa má ÄítaÅ¥ " "vstup\n" " Príklad:\n" " " #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" " -P, --alsaoutputdev=ZAR UrÄí zariadenie ALSA, do ktorého sa zapíše " "výstup\n" " Príklady:\n" " hw:0,0\n" " disabled\n" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" " -z, --alsalatency=ONESKORENIE UrÄí oneskorenie sluÄky ovládaÄa ALSA v " "milisekundách\n" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "NaÄítava sa konfigurácia z %s\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "" "Nedajú sa spustiÅ¥ dve inÅ¡tancie programu tvtime s rovnakou konfiguráciou.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "Ukladajú sa voľby príkazového riadku.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "" "Nedá sa aktualizovaÅ¥ konfigurácia, pokiaľ je spustený program tvtime.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "Žiadny signál" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "StlmiÅ¥" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "Nedá sa vytvoriÅ¥ %s: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "Nedá sa otvoriÅ¥ %s: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" "Zlyhala inicializácia UTF-8 pre nástroj na konvertovanie %s: Funkcia " "iconv_open zlyhala (%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " Zlyhalo spustenie režimu UTF-8 pomocou funkcie " "bind_textdomain_codeset()\n" " (vrátené %s.) Toto môže spôsobiÅ¥ nesprávne zobrazenie\n" " správ! Prosím, nahláste túto chybu na adrese\n" " %s.\n" "\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "Dostupné príkazy:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "Program tvtime nie je spustený.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: Nedá sa otvoriÅ¥ %s: %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: Neplatný príkaz „%s“\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: Odosiela sa príkaz %s s argumentom %s.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: Odosiela sa príkaz %s.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "Vyhľadávanie použitím TV Å¡tandardu %s.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " NenaÅ¡iel sa žiadny tuner na vstupe %d. Ak máte tuner, prosím, \n" " vyberte iný vstup pomocou argumentu --input=<Äíslo>.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "Vyhľadáva sa od frekvencie %6.2f MHz po frekvenciu %6.2f MHz.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "Kontroluje sa frekvencia %6.2f MHz:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "Zistený signál" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "NaÅ¡iel sa kanál na frekvencii %6.2f MHz (%.2f - %.2f MHz). Pridáva sa do " "zoznamu kanálov.\n" tvtime-1.0.11/po/boldquot.sed0000644000175000017500000000033112522224716012767 00000000000000s/"\([^"]*\)"/“\1â€/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“â€/""/g s/“/“/g s/â€/â€/g s/‘/‘/g s/’/’/g tvtime-1.0.11/po/nl.gmo0000664000175000017500000002026512663345675011606 00000000000000Þ•|ü§Üx y  — œ ¬ Æ Ò é ð ÿ  # > L X l v ˆ  ” Ÿ © ¯ È Ï æ ý & ,8 e u ‹   ® È +á  3 J S [ z !› ½ Æ Ó î  3KR WajƒŠ š¥¹ËÏØ ìú  %FM^n „)ºÊßèù (0#Ae„¢(¾ç6P Ye)l!–(¸3á.D2]&·Æáþ7Q fq‡™*­Øì6\L©ÄËÐà ñþ*:Jdt† ˜£¶¼  ÍÚà ÷7!L*n ™¥À Úè0! R`}™¢ª!À â 3LiƒŸ ¦ °½Ì éó+BFO bp!‡+© Õßù ./<l|™¯ÀÇÜâ%ô"="],€­È)ß" , 4?0G*x3£=×5K=g¥Â Ó"ô! 9FeƒŸ¯ËÞ-ñ ? ^ d s z ˜ SU't 86x^)RX_ac("P*=m CO<h HYvMZK7\sbfy%pLr;IT$4q]?z@EnQjF+uW`{.&2|- G3[9e/k0D,i:lNJA o!#dVB>15gw%s Current: %d pixels1.85:116:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2.35:14:3 + Overscan4:3 centre4:3 display mode active.All channels re-activated.Always-on-topApply matteAttempted framerateAustraliaAustralia (Optus)BackBottomBrightnessBroadcastCableCable with channels 100+CentreChange NTSC cable modeChange frequency tableChange video sourceChannel disabled from the browse list.Channel marked as active in the browse list.China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.ContrastCurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDropped frames: %dEnable signal detectionEuropeExitExit menuFinetuneFinetune current channelFranceFrequency tableFullscreenFullscreen positionHigh (768 pixels)HueIncreaseInput configurationInput filtersLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MirrorMirror disabled.Mirror enabled.Moderate (576 pixels)New ZealandNo VBI device configured for CC decoding.No video sourceOutput configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Processing every bottom field.Processing every input field.Processing every top field.Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsRestart with new settingsResumed.Running: %sRussiaSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetupSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.Standard (720 pixels)Stop channel scanTelevision standardTelevision standard will be %s on restart.Toggle XDS decodingToggle closed captionsTopVideo processingVolumeXDS decoding disabled.XDS decoding enabled.Project-Id-Version: tvtime cvs Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2003-10-05 23:25+0200 Last-Translator: Vincent van Adrighem Language-Team: Dutch Language: nl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit %s Huidig: %d beeldpunten1.85:116:916:9 + Overscan16:9 verhouding.16:9 uitvoer2-3 pulldown-inversie2.35:14:3 + Overscan4:3 gecentreerd4:3 verhouding.Alle kanalen geactiveerd.Altijd bovenaan'Matte' toepassenGewenste snelheidAustraliëAustralië (Optus)TerugOnderHelderheidVia de etherKabelKabel met 100+ kanelenCentrerenNTSC kabelstand veranderenFrequentietabel veranderenVideobron veranderenKanaal uitgeschakeld in de lijst.Kanaal ingeschakeld als actief in de lijstChina EtherChroma-kill uitgeschakeld.Chroma-kill ingeschakeld.Chroma-killerOndertiteling uitgeschakeld.Ondertiteling ingeschakeld.Kleurdecodering voor dit kanaal ingesteld op %s.KleurinversieKleurinversie uitgeschakeld.Kleurinversie ingeschakeld.ContrastHuidigeHuidige kanaal actiefBeschrijving huidige deinterlacerAangepast (start tvtime-scanner)VerlagenDeinterlacerDeinterlacer configuratieBeschijving deinterlacerSignaaldetectie uitschakelenOvergeslagen beeldjes: %dSignaaldetectie inschakelenEuropaAfsluitenMenu sluitenFijnafstellingHuidige kanaal fijnafstemmenFrankrijkFrequentietabelVolledig schermVolledig scherm positieHoog (768 beeldpunten)HueVerhogenInvoerconfiguratieInvoerfiltersLaag (360 beeldpunten)'Matte' instellingen (4:3 invoer)'Matte' instellingen (Anamorphische invoer)SpiegelenSpiegeling uitgeschakeld.Spiegeling ingeschakeld.Gemiddeld (576 beeldpunten)Nieuw ZeelandGeen VBI-apparaat ingesteld voor CC-decodering.Geen video-bronUitvoerconfiguratieOverscanOverscan-instellingenOverscan: %1.f%%Pauze.Geschatte prestatiesBeeldBeeldinstellingenStandaard beeldinstellingen hersteld.Verwerken van ieder onderste veld.Verwerken van ieder invoerveld.Verwerken van ieder bovenste veld.Verplaatsen van %d. Geef nieuw kanaalnummer.Huidige kanaal hernummerenAlle kanalen activerenAlgemene standaardinstellingen herstellenHerstarten met nieuwe instellingenActief.Actief: %sRuslandHuidige instellingen als kanaalstandaard opslaanHuidige instellingen als standaard opslaanHuidige instellingen als algemene standaard opslaanHuidige beeldinstellingen als algemene standaard opgeslagen. Huidige beeldinstellingen opgeslagen voor kaneel %d. Kanalen scannen op signalenZoeken niet beschikbaar wegens uigeschakelde signaalcontrole.Zoeken naar actieve kanalen.Schermafdruk: %sHuidige kanaal instellen als PALHuidige kanaal instellen als SECAMPositie volledig scherm instellenInstellingenSignaaldetectie uitgeschakeld.Signaaldetectie ingeschakeld.Slaapstand over %d minuten.Slaapstand uit.Standaard (720 beeldpunten)Kanaalscan stoppenTelevisiestandaardTelevisiestandaard zal %s zijn na herstarten.XDS-decodering in-/uitschakelenOndertiteling in-/uitschakelenBovenVideobewerkingVolumeXDS-decodering uitgeschakeld.XDS-decodering ingeschakeld.tvtime-1.0.11/po/Makevars0000664000175000017500000000341612354244126012146 00000000000000# Makefile variables for PO directory in any package using GNU gettext. # Usually the message domain is the same as the package name. DOMAIN = $(PACKAGE) # These two variables depend on the location of this directory. subdir = po top_builddir = .. # These options get passed to xgettext. XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ # This is the copyright holder that gets inserted into the header of the # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding # package. (Note that the msgstr strings, extracted from the package's # sources, belong to the copyright holder of the package.) Translators are # expected to transfer the copyright for their translations to this person # or entity, or to disclaim their copyright. The empty string stands for # the public domain; in this case the translators are expected to disclaim # their copyright. COPYRIGHT_HOLDER = Billy Biggs # This is the email address or URL to which the translators shall report # bugs in the untranslated strings: # - Strings which are not entire sentences, see the maintainer guidelines # in the GNU gettext documentation, section 'Preparing Strings'. # - Strings which use unclear terms or require additional context to be # understood. # - Strings which make invalid assumptions about notation of date, time or # money. # - Pluralisation problems. # - Incorrect English spelling. # - Incorrect formatting. # It can be your email address, or a mailing list address where translators # can write to without being subscribed, or the URL of a web page through # which the translators can contact you. MSGID_BUGS_ADDRESS = http://tvtime.net/ # This is the list of locale categories, beyond LC_MESSAGES, for which the # message catalogs shall be used. It is usually empty. EXTRA_LOCALE_CATEGORIES = tvtime-1.0.11/po/fr.gmo0000664000175000017500000006026212663345675011605 00000000000000Þ•ï”K 8_9±™qKŽƒ¡ ·'ÅKís9:­IèK2D~(ÃAìG.1v:¨5ãGMaM¯>ýÖ< I!F]!A¤!æ!ý!'"="Z"r")Œ"¶"Ï"Ö"Ü"á"ñ" ## .#O#6o#¦#­# ¼#Ç#à#ô# $$5$ L$X$l$Š$ $§$(¹$â$%,%2% 9% D%N%T%m%%7£%Û%ï%@&2O&.‚&±&¸&Ï&í&'&'?',R''“'£'¹' Î'7Ü'(.(+G( s((™(:°(ë("ô()) >)!_))Š)$›)$À)#å) **1*J*c*l**#—*%»*á*è* í*D÷* <+F+O+Hh+±+¸+È+Í+ á+ì+.,+/,[,m,3ƒ,·,»,Ä, Ø,æ,-- +-L-S-Z-k-{-‘- –-¢-)«-!Õ- ÷- .".22.e.z.ƒ.”.¥.­.Ã.Ë.#Ü.//8/V/r/x/Š/(©/Ò/ë/0!0A0[0o0 x0 …0‘0 ˜0)£0!Í0(ï031.L1{1™12²1&å1& 232S2q2Ž22¸2Õ2$í233(3C3]3 r3 }3Š3 3²3È3*Ü34$484O4S4d44-ž4-Ì4,ú4&'5%N5+t5 5±5¸5Ï5å566u16§7¼88„õ8òz9Im:·;$Ñ;'ö<R=vq=>è=N'>Œv><?(@?Ji?K´?G@KHC5”CLÊCVD`nDAÏDÚEˆìEOuF_ÅF%G=G1UG'‡G!¯GÑG3îG"H@HGHMHRHbH uHH&šH"ÁH@äH%I,I ;IGIYI+uI¡I²IÐIêI% J0/J`J ~JˆJ+šJÆJæJ2íJ K $K0K9K @K3aK•KK³KÿK4LLQLMžL=ìL*M2M"MMpMM#¨MÌM,áMN"N3NNN eN?sN³NÍN8ãNO%O:OZLO §O:±OìOõO) P+7PcPlP0P0°P/áP Q"Q BQ#cQ ‡Q“Q«Q>ËQ5 R@RGRORQ^R°R ¸R#ÅRTéR>SESZSaS wS„S2šS3ÍSTT=+T iT sT}T˜TªTÇT0ÚT9 UEUKURUfUvU‰UŽU  UF­U'ôUV :VHV7]V•V°V¹VÒVäVëVW W''WOW"kW(ŽW#·W ÛWæWX@%X fX‡X £X.ÄX)óXY6Y ?YLY^Y eYEpY5¶Y<ìY;)ZBeZ0¨ZÙZQïZ,A[/n[1ž[0Ð[,\.\!D\#f\&Š\4±\ æ\ô\! ]+]I]i]‚]‘] §]È]ç]#û]^9^S^l^q^*€^*«^7Ö^7_6F_0}_+®_2Ú_ ``&`A`-X`†`š`ØÇÒ ë¨ÐÄ—¹dÔz¸(7p€81-x±Nì^HÊ ÌÍYäÏB,. ªbè›Ñ5M‡K6Fƒ¢ÀG@ß?íˬ'¤¶ÖE° ç …¡‹ŽÞ•»†Úéu4Ý%Á’¾}˜\·e>Q+åÙ~²mckâ«jq|Vy;µR¥OêD´Ušœ!iÕ”ï–h‰_Éãaæ¿ÆPgº×rt³sÅŒ¼:àvo"„IÎwX*n`3¯Ó“$=îT®C]2á#W§<Afl‚™Ü½ÂS ÛŸ&{ÃÈ/0¦ZŠ) ­L£[9‘ž©ˆJ Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -X, --display=DISPLAY Use the given X display to connect to. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -f, --frequencies=NAME The frequency table to use for the tuner. (defaults to us-cable). Valid values are: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (first run tvtime-scanner) -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -k, --slave Disables input handling in tvtime (slave mode). -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:1016:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange NTSC cable modeChange default audio standardChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed caption display failed to initialize, disabled. Closed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.Defaulting to PAL-I audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.South AfricaStandard (720 pixels)Stop channel scanSwitch audio standardTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using PAL-I audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: fr Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2015-10-17 12:16-0300 Last-Translator: Mauro Carvalho Chehab Language-Team: French Language: fr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.5 Impossible de supprimer les droits super-utilisateur : %s. tvtime va maintenant s'arrêter pour éviter les problèmes de sécurité. Impossible d'entrer en mode UTF-8 en utilisant bind_textdomain_codeset() (a retourné %s.) Les messages peuvent ne pas bien s'afficher ! Merci de rapporter le boggue à %s. Aucun tuner trouvé à l'entrée %d. Si vous avez un tuner, merci de choisir une entrée différente avec --input=. Votre périphérique de capture, %s, ne semble pas supporter la capture en vitesse de rafraîchissement pleine. Merci de vérifier la configuration, ou si vous avez séléctionné le mauvais périphérique de capture (%s). Votre pilote de périphérique de capture, %s, ne fourni pas assez de buffers pour que tvtime fonctionne correctement. Merci de consulter la documentation de votre pilote pour voir si vous pouvez augmenter le nombre de buffers attribués aux applications, puis d'alerter le rapport de bugs de tvtime à %s Commandes disponibles : tvtime est un logiciel libre, écrit par Billy Biggs, Doug Bell et autres. Pour les détails des conditions de copie, merci de visiter notre site internet ici : http://tvtime.net/ tvtime est Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, et Achim Schneider. -A, --nowidescreen mode 4:3. -F, --configfile=FICHIER Fichier de configuration supplémentaire à charger. -I, --inputwidth=SAMPLING Résolution horizontale d'entrée (720 pixels par défaut). -M, --window Lancer tvtime en mode fenêtré. -R, --priority=PRI Définir la priorité du processus de tvtime à. -S, --saveoptions Enregistrer les options de la ligne de commande dans le fichier de configuration. -X, --display=DISPLAY Utiliser l'affichage X donné. -a, --widescreen mode 16:9. -b, --vbidevice=PÉRIPH. périphérique VBI (/dev/vbi0 par défaut). -c, --channel=CHAÃŽNE Ouvrir la chaîne spécifiée au démarrage. -f, --frequencies=NOM La table de fréquence à utiliser pour le tuner. (us-cable par défaut). Les valeurs valides sont : us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (lancer d'abord tvtime-scanner) -g, --geometry=GÉOMÉTRIE Défini la taille de la fenêtre en sortie. -h, --help Voir ce message d'aide. -i, --input=INPUTNUM numéro d'entrée video4linux (0 par défaut). -k, --slave Désactiver l'entrée standard de tvtime (mode esclave). -l, --xmltvlanguage=LANGUE Utiliser les données XMLTV dans la langue donnée, si disponible. -m, --fullscreen Lancer tvtime en mode plein écran. -n, --norm=NORME Norme à utiliser pour l'entrée. tvtime supporte : NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (NTSC par défaut). -s, --showdrops Afficher des statistiques sur la suppression de frames (pour le debogguage). -t, --xmltv=FICHIER Lire les données XMLTV depuis le fichier donné. -v, --verbose Affichier des information de débogguage sur la sortie d'erreurs. %s Courant : %d pixels%s Maximum (%d pixels)%s n'est pas un fichier de configuration tvtime. %s : Impossible d'allouer la mémoire. %s : Impossible d'ouvrir %s : %s %s : Commande invalide '%s' %s : Commande "%s" envoyée avec pour argument %s. %s : Commande "%s" envoyée. 1.85:116:1016:916:9 + OverscanMode 16:9 activé.Sortie 16:9Inversion "2-3 pulldown"Inversion "2-3 pulldown" désactivée.Inversion "2-3 pulldown" activée.L'inversion "2-3 pulldown" n'est pas valide pour votre norme TV.2.35:14:3 + Overscan4:3 centréMode 4:3 activé.Ajouter la chaîne couranteToutes les chaînes ont été réactivées.Toujours visibleToujours visible désactivé.Toujours visible activé.Appliquer le redimensionnementVitesse de rafraîchissement attendueVitesse de rafraîchissement attendue : %.2f fpsAugmentation du volume sonoreAustralieAustralie (Optus)Temps moyen de blit : %.2f ms (%.0f Mo/sec)Temps moyen de rendu : %5.2f msRetourEspace de blit : %4.1f/%4.1f ms (%4.1f ms attendu)BasLuminositéHertzienCâbleCâble avec plus de 100 chaînesImpossible de changer le propriétaire de %s : %s. Impossible de créer %s : %s Impossible de créer le FIFO, contrôle à distance de tvtime désactivé. Impossible d'ouvrir %s : %s Impossible d'ouvrir le périphérique de capture %s.Impossible de charger deux instances de tvtime avec la même configuration. Impossible de mettre à jour la configuration pendant que tvtime est lancé. Le volume de la carte de capture n'est pas géré par tvtime.CentréPasser en mode câble NTSCChanger le mode sonore par défautChanger de table de fréquenceChanger de source vidéoChaîne désactivée dans la liste.Gestion des chaînesChaîne marquée comme active dans la liste.Vérifie %6.2f MHz:Chine (hertzien)Noir et blanc désactivé.Noir et blanc activé.Noir et blancImpossible d'activer l'affichage des sous-titres, désactivé. Sous-titres désactivés.Sous-titres activés.Décodage des couleurs pour cette chaîne défini à %s.NégatifNégatif désactivéNégatif activé.Le fichier de configuration est illisible. Les préférences ne seront pas sauvegardées. ContrasteImpossible de créer un nouveau fichier de configuration. Courant Chaîne courante activeDéscription du désentrelacement courantNon défini (lancer d'abord tvtime-scanner)DiminuerLangue par défautUtiliser le décodage sonore PAL-BG par défaut.Utiliser le décodage sonore PAL-DK par défaut.Utiliser le décodage sonore PAL-I par défaut.DésentraleurConfiguration du désentrelacementDescription du désentrelacementDésactiver la détection de signalDésactivéImages supprimées : %dActiver la détection de signalErreur à la création d'un nouveau fichier de configuration. Erreur à la lecture du fichier de configuration %s. EuropeQuitterSortir du menuImpossible d'intialiser le convertisseur UTF-8 vers %s : erreur iconv_open (%s). FavorisRéglage finRéglage fin de la chaîne couranteChaîne trouvée à %6.2f MHz (%.2f - %.2f MHz), ajoutée à la liste des chaînes. FranceTable de fréquencesPleineTaux plein : %.2f fpsPlein écranPosition plein écranMi-taux, désentrelacement de champ bas : %.2f fpsMi-taux, désentrelacement de champ haut : %.2f fpsHaut (768 pixels)Résolution horizontaleLa résolution horizontale sera de %d pixels au redémarrage.TonalitéAugmenterConfiguration de l'entréeFiltres d'entréeEntrée : %s à %dx%d pixelsPetit (360 pixels)Configuration de redimensionnement (Entrée 4:3)Configuration de redimensionnement (Entrée anamorphique)MoyenMiroirMiroir désactivé.Miroir activé.Moyen (576 pixels)MuetNouvelle ZélandeSuivant : %sAucun périphérique VBI configuré pour le décodage des sous-titres.Élément racine XML manquant dans %s. Aucune information disponiblePas de signalPas de source vidéoImpossible d'initialiser l'affichage à l'écran (osd) Configuration de la sortieOverscanPréférences d'overscanOverscan : %.1f%%Pause.Estimation des performancesImagePréférences d'affichagePréférences d'image remis à défaut.Langue de XMLTV préféréeTraitement de tous les champs bas.Traitement de tous les champs d'entrée.Traitement de tous les champs haut.SilencieuxCaptures d'écran silencieusesLit la configuration depuis %s Renumérotation de %d. Entrez le nouveau numéro de la chaîne.Renuméroter la chaîne couranteActiver toutes les chaînesRemettre les options par défautRedimensionner la fenêtre d'après le contenuRedémarrer avec les nouveaux paramètresRedémarrage de tvtime. Reprise.Utilise %s. Lancement de : %sRussieSaturationSauvegarder les préférences actuelles comme défaut pour la chaîneSauvegarder les préférences actuelles comme défautSauvegarder les préférences actuelles comme défaut globalPréférences d'image courantes enregistrées par défaut. Préférences d'image courantes enregistrées pour la chaîne %d. Enregistre les options de la ligne de commande. Rechercher les canauxLa recherche de canaux est impossible si la recherche de signal est désactivée.Recherche de canaux sur le réseau hertzien.Recherche de canaux de %6.2f MHz à %6.2f MHz. Recherche de canaux en utilisant la norme TV %s. Messages dans les captures d'écran désactivé.Messages dans les captures d'écran activé.Capture d'écran : %sPasser la chaîne courante en PALPasser la chaîne courante en SECAMConfigurer la position en plein écranConfigurer le volume de la carte de capture à %d%%.ConfigurationDétection de signalDétection de signal désactivé.Détection de signal activé.Mise en veille dans %d minutes.Mise en veille annulée.Afrique du SudStandard (720 pixels)Arrêter la recherche de chaîneChanger de norme de réceptionNorme de réceptionLa norme TV sera %s au redémarrageMerci d'utiliser tvtime. Basculer le décodage XDSBasculer les sous-titresHautLangue inconnuUtilisation des fréquences de câble HRC.Utilisation des fréquences de câble IRC.Utiliser le décodage sonore PAL-BG pour cette chaîne.Utiliser le décodage sonore PAL-DK pour cette chaîne.Utiliser le décodage sonore PAL-I pour cette chaîne.Utilisation de la langue par défaut pour XMLTV.Utilisation des fréquences de câble NTSC.Utilisation d'une langue inconnue (%s) pour XMLTV.Traitement vidéoVolumeDécodage XDS désactivé.Décodage XDS activé.Définition de la langue de XMLTV à %s (%s).tvtime non lancé. usage: %s [OPTION]... tvtime-1.0.11/po/ca.gmo0000664000175000017500000006546512663345675011573 00000000000000Þ•ô¼K\ˆ_‰±éq›Å Óñ 'K=s‰:ýØ8IK[D§(ìAGW1Ÿ:Ñ5 GB MŠ CØ M!>j!Ö©!I€"FÊ"A#\S#°%Ç%'ß%&$&<&)V&€&™& &¦&«&»& Õ&á& ø&'69'p'w' †'‘'ª'¾' Ù'ç'ÿ' ("(6(T( g(q((ƒ(¬(Ê(,Ï(ü( ) )))7)W)7m)¥)¹)@Ø)2*.L*{*‚*™*·*Î*&â* +,+I+]+m+ƒ+ ˜+7¦+Þ+ø++, =,K,c,:z,µ,"¾,á,é, -!)-K-T-$e-$Š-#¯- Ó-à-û-.-.6.I.#a.%….«.². ·.DÁ. ///H2/{/‚/’/—/ «/¶/.Ê/+ù/%0703M00…0Ž0 ¢0°0 Ê0×0è0 1#1*111B1R1h1 m1y1)‚1!¬1 Î1 ï1ù12 2<2Q2Z2k2|2„2š2¢2#³2×2ð23-3I3O3a3f3(…3®3Ç3ä3ý3474K4 T4 a4m4 t4)4!©4(Ë43ô4.(5W5u52Ž5&Á5&è56/6M6j6y6”6±6$É6î6ô67797 N7 Y7f7|7Ž7¤7*¸7ã788+8/8@8]8-z8-¨8,Ö8&9%*9+P9|99”9«9Á9à9õ9¥ :r³;Ø&< ÿ<ê =r‹>þ?5@'JAYrA~ÌA=KBå‰BQoC`ÁCQ"D(tDIDHçDV0EL‡H=ÔHSI\fIFÃIa JFlJܳJdKLõKNBL…‘LO-O0DOuO”O"°O2ÓO P'P.P4P9P+RP ~P‹P0¥P.ÖPFQLQSQ kQ*vQ¡Q!¹QÛQ%íQ"R6R#FR-jR"˜R »RÆR*ÙR/S4S-;SiS rS }SˆSŽS+¤SÐSHèS1T,ITNvTJÅT=UNUUU(rU$›UÀU6ÛUV;$V`VvV+ˆV)´VÞV<óV"0W SWBtW·W*ËW(öWJXjX4sX¨X"¯X/ÒX.Y 1YºU©Rï ¹Xž $lÚ˜ôškŒbÎèdêÄËSj¿ÜGuw¸vÊÁ=åyr%LÓ‚z[-’qc"6³Ø‡'@óW²F `5æ&Z«?Dio…áÂÇVà—)~ÈÍ23ª], ±O§^<•¢­‹M Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to Examples: hw:0,0 disabled -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -X, --display=DISPLAY Use the given X display to connect to. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -f, --frequencies=NAME The frequency table to use for the tuner. (defaults to us-cable). Valid values are: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (first run tvtime-scanner) -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -k, --slave Disables input handling in tvtime (slave mode). -l, --borderless Start tvtime without a window border. -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. -x, --mixer=| The mixer device and channel to control. The first variant sets the OSS mixer the second one ALSA. (defaults to default/Master) Valid channels for OSS are: vol, bass, treble, synth, pcm, speaker, line, mic, cd, mix, pcm2, rec, igain, ogain, line1, line2, line3, dig1, dig2, dig3, phin, phout, video, radio, monitor %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:1016:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange NTSC cable modeChange default audio standardChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed caption display failed to initialize, disabled. Closed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.Defaulting to PAL-I audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLast ChannelLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsQuitReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.South AfricaStandard (720 pixels)Stop channel scanSwitch audio standardTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using PAL-I audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: PACKAGE VERSION Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2015-11-26 05:02-0500 Last-Translator: Robert Antoni Buj Gelonch Language-Team: Catalan Language: ca MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Zanata 3.8.2 Plural-Forms: nplurals=2; plural=(n != 1); No s'ha pogut baixar els privilegis de root: %s. tvtime sortirà ara per evitar problemes de seguretat. No s'ha pogut entrar al mode UTF-8 mitjançant bind_textdomain_codeset() (va retornar %s.) Això pot provocar que els missatges no es mostrin correctament! Si us plau, informeu d'aquest error a %s. No s'ha trobat cap sintonitzador en l'entrada %d. Si teniu un sintonitzador, si us plau, seleccioneu una entrada diferent mitjançant --input=. La vostra targeta capturadora, %s, no sembla que admeti la captura de tota la taxa de fotogrames. Si us plau, comproveu que estigui configurada correctament, o que no hàgiu seleccionat un dispositiu equivocat (%s). La vostra targeta capturadora, %s, no està proporcionant prou memòria temporal perquè tvtime processi el vídeo. Si us plau, comproveu la documentació del vostre controlador per veure si podeu incrementar la memòria temporal que es proporciona a les aplicacions, i informeu d'això a l'eina de seguiment d'errors de programari del tvtime a %s Ordres disponibles: tvtime és programari lliure, l'ha escrit en Billy Biggs, en Doug Bell i molts altres. Per als detalls i condicions de còpia, si us plau, visiteu la nostra pàgina web a http://tvtime.net/ tvtime està sota el Copyright (C) 2001, 2002, 2003 de Billy Biggs, Doug Bell, Alexander S. Belov i Achim Schneider. -A, --nowidescreen Mode 4:3. -F, --configfile=FITXER Fitxer addicional de configuració per carregar els ajusts. -I, --inputwidth=MOSTREIG Resolució horitzontal de l'entrada (per defecte són 720 píxels). -M, --window Inicia tvtime en mode finestra. -P, --alsaoutputdev=DEV Especifica un dispositiu ALSA per escriure-hi la sortida Exemples: hw:0,0 disabled -R, --priority=PRI Estableix la prioritat per a l'execució de tvtime. -S, --saveoptions Desa les opcions de la línia d'ordres al fitxer de configuració. -X, --display=DISPLAY Utilitza el monitor indicat de les X per connectar. -a, --widescreen Mode 16:9. -b, --vbidevice=DISPOSITIU Dispositiu VBI (per defecte és /dev/vbi0). -c, --channel=CANAL Sintonitza el canal especificat a l'inici. -f, --frequencies=NOM La taula de freqüències per utilitzar amb el sintonitzador. (per defecte és us-cable). Els valors vàlids són: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (primer executeu tvtime-scanner) -g, --geometry=GEOMETRIA Estableix les mides de la finestra de sortida. -h, --help Mostra aquest missatge d'ajuda. -i, --input=NUMENTRADA Número d'entrada de video4linux (per defecte és 0). -k, --slave Inhabilita el tractament de l'entrada al tvtime (mode esclau). -l, --borderless Inicia tvtime sense vores a la finestra. -l, --xmltvlanguage=LANG Utilitza les dades XMLTV en l'idioma indicat, si estan disponibles. -m, --fullscreen Inicia tvtime en mode pantalla completa. -n, --norm=NORMA La norma a utilitzar per a l'entrada. tvtime admet: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N o PAL-60 (per defecte és NTSC). -s, --showdrops Mostra les estadístiques quant als fotogrames rebutjats (depuració). -t, --xmltv=FITXER Llegeix els llistats XMLTV del fitxer indicat. -v, --verbose Imprimeix els missatges de depuració al stderr. -x, --mixer=| El dispositiu mesclador i el canal a controlar. La primera variant estableix el mesclador OSS i la segona el d'ALSA. (per defecte és default/Master) Els canals vàlids per OSS són: vol, bass, treble, synth, pcm, speaker, line, mic, cd, mix, pcm2, rec, igain, ogain, line1, line2, line3, dig1, dig2, dig3, phin, phout, video, radio, monitor %s actual: %d píxels%s màxim (%d píxels)%s no és un fitxer de configuració de tvtime. %s: No pot assignar memòria. %s: No es pot obrir %s: %s %s: L'ordre «%s» no és vàlida %s: S'està enviant l'ordre %s amb l'argument %s. %s: S'està enviant l'ordre %s. 1.85:116:1016:916:9 + sobre-exploracióEl mode de visualització 16:9 està actiu.sortida 16:9Inversió desplegable 2-3La inversió desplegable 2-3 està inhabilitada.La inversió desplegable 2-3 està habilitada.La inversió desplegable 2-3 no és vàlida amb la vostra norma de TV.2.35:14:3 + sobre-exploraciócentre 4:3El mode de visualització 4:3 està actiu.Afegeix el canal actualTots els canals estan reactivats.Sempre per damuntSempre per damunt està deshabilitat.Sempre per damunt està habilitat.Aplica l'estoraS'ha intentat la taxa de fotogramesTaxa de fotogrames que es va provar: %.2f fpsPotenciació del volum de l'àudioAustràliaAustràlia (Optus)Temps mitjà del BLIT: %.2f ms (%.0f MB/s)Temps mitjà de l'eina de renderitzat: %5.2f msEnrereEspai del BLIT: %4.1f/%4.1f ms (vol %4.1f ms)InferiorBrillantorRedifusióCableCable amb 100+ canalsNo es pot canviar el propietari de %s: %s. No es pot crear %s: %s No es pot crear la FIFO, el control remot de tvtime està deshabilitat. No es pot obrir %s: %s No es pot obrir el dispositiu de captura %s.No es poden executar dues instàncies de tvtime amb la mateixa configuració. No es pot actualitzar la configuració mentre tvtime s'estigui executant. El volum de la targeta de captura no s'establirà amb tvtime.CentreCanvia al mode NTSC de cableCanvia l'estàndard d'àudio per defecteCanvia la taula de les freqüènciesCanvia l'origen del vídeoEl canal s'ha deshabilitat de la llista d'exploració.Gestió del canalEl canal s'ha marcat com a actiu a la llista d'exploració.Comprovant %6.2f MHz:Redifusió xinesaL'assassinat de la croma està inhabilitat.L'assassinat de la croma està habilitat.Assassí de la cromaNo s'han pogut inicialitzar els subtítols i s'inhabiliten. Els subtítols estan inhabilitats.Els subtítols estan habilitats.La descodificació del color d'aquest canal està establerta a %s.Inversió del colorLa inversió del color està inhabilitada.La inversió del color està habilitada.No es pot analitzar el fitxer de configuració. No es desaran els ajusts. ContrastNo s'ha pogut crear el nou fitxer de configuració. ActualCanal actiu actualment a la llistaDescripció de l'eina actual de desentrellaçatPersonalitzat (primer executeu tvtime-scanner)DisminueixIdioma per defecteS'està definint com per defecte la descodificació d'àudio PAL-BG.S'està definint com per defecte la descodificació d'àudio PAL-DK.S'està definint com per defecte la descodificació d'àudio PAL-I.Eina de desentrellaçatConfiguració de l'eina de desentrellaçatDescripció de l'eina de desentrellaçatInhabilita de detecció del senyalInhabilitatFotogrames rebutjats: %dHabilita de detecció del senyalS'ha produït un error en crear el fitxer de configuració. S'ha produït un error en analitzar el fitxer %s. EuropaSurtMenú de sortidaNo s'ha pogut inicialitzar UTF-8 al convertidor %s: iconv_open ha fallat (%s). PreferitsAfinaAfina el canal actualS'ha trobat un canal als %6.2f MHz (%.2f - %.2f MHz) i s'afegeix a la llista dels canals. FrançaTaula de freqüènciesCompletTaxa completa: %.2f fpsPantalla completaPosició de la pantalla completaTaxa mitja, desentrellaça els camps inferiors: %.2f fpsTaxa mitja, desentrellaça els camps superiors: %.2f fpsElevat (768 píxels)Resolució horitzontalLa resolució horitzontal serà de %d píxels en reiniciar.ToIncrementaConfiguració de l'entradaFiltres d'entradaEntrada: %s a %dx%d píxelsÚltim canalBaix (360 píxels)Ajust de l'estora (entrada 4:3)Ajust de l'estora (entrada anamòrfica)MitjàEmmirallamentL'emmirallament està inhabilitat.L'emmirallament està habilitat.Moderat (576 píxels)SilenciaNova ZelandaSegüent: %sNo hi ha cap dispositiu VBI que estigui configurat per a la descodificació CC.No s'ha trobat l'element arrel XML a %s. No hi ha cap informació del programaSense senyalSense origen de vídeoLa visualització en pantalla no es pot inicialitzar i s'inhabilita. Configuració de la sortidaSobre-exploracióAjust de la sobre-exploracióSobre-exploració: %.1f%%Pausat.Estimacions del rendimentImatgeAjusts de la imatgeEls ajusts de la imatge s'han restablert als predeterminats.Idioma preferit del XMLTVS'està processant tot el camp inferior.S'està processant tot el camp d'entrada.S'està processant tot el camp superior.SilenciósCaptures de pantalla en silenciSurtLectura de la configuració de %s Reassignació %d. Introduïu el nou número del canal.Torna a numerar el canal actualRestableix tots els canals com a actiusRestableix als predeterminats globalmentRedimensiona la finestra perquè coincideixi amb el contingutReinicia amb els nous ajustsS'està reiniciant tvtime. Reprès.Execució de %s. Execució: %sRússiaSaturacióDesa els ajusts actuals com als predeterminats del canalDesa els ajusts actuals com als predeterminatsDesa els ajusts actuals com als predeterminats globalmentS'han desat els ajusts actuals de la imatge com als predeterminats globalment. S'han desat els ajusts actuals d'imatge al canal %d. S'estan desant les opcions de la línia d'ordres. Exploració dels canals pel senyalL'eina d'exploració no està disponible amb la comprovació inhabilitada del senyal.Exploració dels canals que s'estan transmetent.Exploració dels %6.2f MHz als %6.2f MHz. Exploració mitjançant l'estàndard %s de TV. Els missatges de captura de pantalla estan deshabilitats.Els missatges de captura de pantalla estan habilitats.Captura de pantalla: %sEstableix el canal actual com a PALEstableix el canal actual com a SECAMEstableix la posició de la pantalla completaS'està establint el volum de la targeta de captura al %d%%.AjustSenyal detectatLa detecció del senyal està inhabilitada.La detecció del senyal està habilitada.Repòs en %d minuts.Repòs apagat.Sud-àfricaEstàndard (720 píxels)Atura l'exploració dels canalsCanvia l'estàndard de l'àudioEstàndard de televisióL'estàndard de televisió serà %s en reiniciar.Gràcies per utilitzar tvtime. Commuta la descodificació XDSCommuta els subtítolsSuperiorIdioma desconegutS'utilitzen les freqüències HRC de cable.S'utilitzen les freqüències IRC de cable.S'està utilitzant la descodificació d'àudio PAL-BG per aquest canal.S'està utilitzant la descodificació d'àudio PAL-DK per aquest canal.S'està utilitzant la descodificació d'àudio PAL-I per aquest canal.S'està utilitzant l'idioma per defecte per a les dades del XMLTV.S'estan utilitzant les freqüències de cable nominals de NTSC. S'està utilitzant un idioma desconegut (%s) per a les dades del XMLTV.Processament del vídeoVolumLa descodificació XDS està inhabilitada.La descodificació XDS està habilitada.L'idioma XMLTV està establert a %s (%s).tvtime no s'està executant. ús: %s [OPCIÓ]... tvtime-1.0.11/po/sk.gmo0000664000175000017500000006604012664122141011571 00000000000000Þ•÷ÔKŒ¸_¹±qËÅ=! 7'EKms¹:-ØhIAK‹D×(AEG‡=Ï1 :? 5z G° Mø CF!MŠ!>Ø!Ö"œî"I‹#FÕ#A$\^$N»& '!''9'a'~'–')°'Ú'ó'ú'((( /(;( R(s(6“(Ê(Ñ( à(ë()) 3)A)Y) p)|))®) Á)Ë)(Ý)*$*,)*V* ]* h*r*x*‘*±*7Ç*ÿ*+@2+2s+.¦+Õ+Ü+ó+,(,&<,c,,v,£,·,Ç,Ý, ò,7-8-R-+k- —-¥-½-:Ô-.".;.C. b.!ƒ.¥.®.$¿.$ä.# / -/:/U/n/‡//£/#»/%ß/0 0 0D0 `0j0s0HŒ0Õ0Ü0ì0ñ0 11.$1+S11‘13§1Û1ß1è1 ü1 2 $212B2 \2}2„2‹2œ2¬2Â2 Ç2Ó2)Ü2!3 (3 I3S32c3–3«3´3Å3Ö3Þ3ô3ü3# 414J4i4‡4£4©4»4À4(ß45!5>5W5w5‘5¥5 ®5 »5Ç5 Î5)Ù5!6(%63N6.‚6±6Ï62è6&7&B7i7‰7§7Ä7Ó7î7 8$#8H8N8^8y8“8 ¨8 ³8À8Ö8è8þ8*9=9Z9n9…9‰9š9·9-Ô9-:,0:&]:%„:+ª:Ö:ç:î:;;:;O;®g;„=Л=†l>æó>0Ú? AI!A)kBd•B…úBD€CåÅC\«D^EGgE*¯ELÚEB'FHjFR³FDJ@KJMŒJ`ÚJE;KWKRÙKê,L«MXÃMLNAiN}«N])Q‡Q¡Q;½Q ùQR8R,XR…R¢R©R¯R´R!ÄR æRóR! S +S8LS…SŒS ›S§SÇS&àS T T6TVToT(ŒTµT ÑTÜT,ïT(UEU2LUUˆU ŒU—UžU+½UéU[V`V0zVN«VKúVDFW‹W”W#²WÖWôW*X3X6DX#{XŸX³XÓXòXHYOYkY6†Y½YÏYïYJZYZ5bZ ˜Z#¢Z5ÆZ3üZ 0[:[3L[3€[2´[$ç[& \+3\_\ {\†\œ\0·\0è\] !]+]`=] ž]ª]¹]^×] 6^B^X^%^^„^#ž^LÂ^K_[_p_C‹_Ï_ ×_á_ö_`!`2`&G`-n`œ` ¥`¯`Æ`Ü`ò` ú` aSa0ia(šaÃaÓa?ça'b@bIb^b ob }b‹b‘b+£bÏb$íb%c#8c\ccc |c!†c2¨cÛc%ûc!!d$Cd$hdd­d¼dÎdßdåd8îd-'e7UeAe5Ïe*f0f@Lf%f@³f,ôf'!g&Igpg"†g$©g-Îg6üg 3h>hOhmhŠhžh°h¿h!Ùhûhi5*i+`iŒi§iÁiÉi)Øi)j8,j8ej7žj-Öj5k/:kjk |k‡k¤k!Àk!âklàÏÚ¤ ó¯Ø‡ÌžÁjÜ€À.=v†>73~¹TôdNÒ ÔÕ_ì׸H24—&±hð¢Ù;SQ< L‰©ÈMáFçEõÓg-«¾ÞK· –ï§‹¨‘”æœÃŒâñ{:îå+əƃ“Ÿb¿kDW1ê$q„ºsi¦²pw‚\A½X¬Uò ¼[¡£'oÝ›÷neÑë#íÄÎVmÂßJxz»yÍ’³@èÇ|u(OÖ…!}^0•tf%9¶ÛŠ*CöZµI"c8é)]®BGlrˆ äÅÊYãš,ËÐ56­`/ ´Rªa?˜¥°ŽP Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to Examples: hw:0,0 disabled -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -X, --display=DISPLAY Use the given X display to connect to. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -d, --device=DEVICE video4linux device (defaults to -f, --frequencies=NAME The frequency table to use for the tuner. (defaults to us-cable). Valid values are: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (first run tvtime-scanner) -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -k, --slave Disables input handling in tvtime (slave mode). -l, --borderless Start tvtime without a window border. -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -p, --alsainputdev=DEV Specifies an ALSA device to read input on Examples: -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. -x, --mixer=| The mixer device and channel to control. The first variant sets the OSS mixer the second one ALSA. (defaults to default/Master) Valid channels for OSS are: vol, bass, treble, synth, pcm, speaker, line, mic, cd, mix, pcm2, rec, igain, ogain, line1, line2, line3, dig1, dig2, dig3, phin, phout, video, radio, monitor -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-seconds %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:1016:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange NTSC cable modeChange default audio standardChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed caption display failed to initialize, disabled. Closed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.Defaulting to PAL-I audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLast ChannelLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsQuitReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.South AfricaStandard (720 pixels)Stop channel scanSwitch audio standardTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using PAL-I audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: PACKAGE VERSION Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2016-02-26 01:51-0500 Last-Translator: Dusan Kazik Language-Team: Slovak Language: sk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Zanata 3.8.2 Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2 Zlyhalo zahodenie privilégií správcu: %s. Program tvtime teraz skonÄí kvôli zabráneniu bezpeÄnostným problémom. Zlyhalo spustenie režimu UTF-8 pomocou funkcie bind_textdomain_codeset() (vrátené %s.) Toto môže spôsobiÅ¥ nesprávne zobrazenie správ! Prosím, nahláste túto chybu na adrese %s. NenaÅ¡iel sa žiadny tuner na vstupe %d. Ak máte tuner, prosím, vyberte iný vstup pomocou argumentu --input=<Äíslo>. Zdá sa, že ovládaÄ vaÅ¡ej zaznamenávacej karty %s nepodporuje záznam v plnej frekvencii snímkov. Prosím, skontrolujte konfiguráciu, alebo Äi nie je vybraté nesprávne zaznamenávacie zariadenie (%s). OvládaÄ vaÅ¡ej zaznamenávacej karty %s neposkytuje dostatok zásobníkov pre program tvtime na spracovanie videa. Prosím, skontrolujte v dokumentácii vášho ovládaÄa, Äi môžete zvýšiÅ¥ poÄet zásobníkov poskytnutých aplikáciám a nahláste túto chybu na adrese %s Dostupné príkazy: Program tvtime je slobodný softvér, ktorý vytvoril Billy Biggs, Doug Bell a mnoho iných. Pre podrobnosti a podmienky kopírovania si, prosím, prezrite naÅ¡u webovú stránku na adrese http://tvtime.net/ Autorské práva programu tvtime (C) 2001, 2002, 2003 Billy Biggs, Doug Bell, Alexander S. Belov, a Achim Schneider. -A, --nowidescreen Režim 4:3. -F, --configfile=SÚBOR DodatoÄný konfiguraÄný súbor, z ktorého naÄítaÅ¥ nastavenia. -I, --inputwidth=VZORKOVANIE Horizontálne rozlíšenie vstupu (predvolená hodnota je 720 pixelov). -M, --window Spustí program tvtime v režime okna. -P, --alsaoutputdev=ZAR UrÄí zariadenie ALSA, do ktorého sa zapíše výstup Príklady: hw:0,0 disabled -R, --priority=PRI Nastaví prioritu procesu, s ktorou sa spustí program tvtime. -S, --saveoptions Uloží voľby príkazového riadku do konfiguraÄného súboru. -X, --display=DISPLEJ Použije zadaný displej X na pripojenie. -a, --widescreen Režim 16:9. -b, --vbidevice=ZARIADENIE Zariadenie VBI (predvolené je /dev/vbi0). -c, --channel=KANÃL Po spustení naladí urÄený kanál. -d, --device=ZARIADENIE Zariadenie video4linux (predvolené je -f, --frequencies=NÃZOV FrekvenÄná tabuľka použitá pre tuner. (predvolená hodnota je us-cable). Platné hodnoty sú: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (najskôr spustite program tvtime-scanner) -g, --geometry=GEOMETRIA Nastaví veľkosÅ¥ výstupného okna. -h, --help Zobrazí túto správu pomocníka. -i, --input=ÄŒ.VSTUPU Číslo vstupu video4linux (predvolené je 0). -k, --slave Zakáže ovládanie vstupu v programe tvtime (podriadený režim). -l, --borderless Spustí program tvtime bez okraju okna. -l, --xmltvlanguage=JAZYK Použije údaje XMLTV v zadanom jazyku, ak je dostupný. -m, --fullscreen Spustí program tvtime v režime na celú obrazovku. -n, --norm=NORMA Norma použitá pre vstup. Program tvtime podporuje: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N alebo PAL-60 (predvolená hodnota je NTSC). -p, --alsainputdev=ZAR UrÄí zariadenie ALSA, z ktorého sa má ÄítaÅ¥ vstup Príklad: -s, --showdrops Vypíše Å¡tatistiku pri zahodení snímkov (pre ladenie). -t, --xmltv=SÚBOR NaÄíta zoznamy XMLTV zo zadaného súboru. -v, --verbose Vypíše ladiace správy do stderr. -x, --mixer=| Zariadenie zmieÅ¡avaÄa a kanál na ovládanie. Prvá varianta nastaví zmieÅ¡avaÄ OSS a druhá zmieÅ¡avaÄ ALSA (predvolená je hodnota default/Master) Platné kanály pre OSS sú: vol, bass, treble, synth, pcm, speaker, line, mic, cd, mix, pcm2, rec, igain, ogain, line1, line2, line3, dig1, dig2, dig3, phin, phout, video, radio, monitor -z, --alsalatency=ONESKORENIE UrÄí oneskorenie sluÄky ovládaÄa ALSA v milisekundách %s Aktuálne: %d pixelov%s Maximálne (%d pixelov)%s nie je platným súborom konfigurácie programu tvtime. %s: Nedá sa prideliÅ¥ pamäť. %s: Nedá sa otvoriÅ¥ %s: %s %s: Neplatný príkaz „%s“ %s: Odosiela sa príkaz %s s argumentom %s. %s: Odosiela sa príkaz %s. 1.85:116:1016:916:9 + overscanRežim zobrazenia 16:90 aktívny.Výstup 16:92-3 pulldown inverzia2-3 pulldown inverzia zakázaná.2-3 pulldown inverzia povolená.2-3 pulldown inverzia nie je platná s vaÅ¡ou TV normou.2.35:14:3 + overscan4:3 nastredRežim zobrazenia 4:3 aktívny.PridaÅ¥ aktuálny kanálVÅ¡etky kanály sú znova aktivované.Vždy navrchuRežim vždy navrchu zakázaný.Režim vždy navrchu povolený.PoužiÅ¥ zmenu veľkostiPokusná frekvencia snímkovPokusná frekvencia snímkov: %.2f sn./sZosilnenie hlasitosti zvukuAustráliaAustrália (Optus)Priemerná doba blitu: %.2f ms (%.0f MB/sek)Priemerný Äas vykresľovania: %5.2f msSpäťOdstup blitov: %4.1f/%4.1f ms (chcených %4.1f ms)NaspodkuJasVysielanieKábelKábel s viac ako 100 kanálmiNedá sa zmeniÅ¥ vlastník súboru %s: %s. Nedá sa vytvoriÅ¥ %s: %s Nedá sa vytvoriÅ¥ zásobník FIFO. Diaľkové ovládanie programu tvtime bude zakázané. Nedá sa otvoriÅ¥ %s: %s Nedá sa otvoriÅ¥ zaznamenávacie zariadenie %s.Nedajú sa spustiÅ¥ dve inÅ¡tancie programu tvtime s rovnakou konfiguráciou. Nedá sa aktualizovaÅ¥ konfigurácia, pokiaľ je spustený program tvtime. HlasitosÅ¥ zaznamenávacej karty nebude nastavená programom tvtime.V stredeZmeniÅ¥ káblový režim NTSCZmeniÅ¥ predvolený Å¡tandard zvukuZmeniÅ¥ frekvenÄnú tabuľkuZmeniÅ¥ zdroj videaKanál zakázaný zo zoznamu prehliadania.Správa kanálovKanál oznaÄený ako aktívny v zozname prehliadania.Kontroluje sa frekvencia %6.2f MHz:Čínske vysielanieOdstránenie farieb zakázané.Odstránenie farieb povolené.Odstránenie fariebZlyhala inicializácia zobrazenia skrytých titulkov. Budú zakázané. Skryté titulky zakázané.Skryté titulky povolené.Dekódovanie farieb pre tento kanál nastavené na %s.InvertovaÅ¥ farbyInvertovanie farieb zakázané.Invertovanie farieb povolené.Nedá sa analyzovaÅ¥ konfiguraÄný súbor. Nastavenia nebudú uložené. KontrastNepodarilo sa vytvoriÅ¥ nový konfiguraÄný súbor. AktuálneAktuálny aktívny kanál v zoznameAktuálny popis nástroja na odstránenie prekladaniaVlastná (najskôr spustite program tvtime-scanner)ZnížiÅ¥Predvolený jazykNastavuje sa predvolené dekódovanie zvuku PAL-BG.Nastavuje sa predvolené dekódovanie zvuku PAL-DK.Nastavuje sa predvolené dekódovanie zvuku PAL-I.Nástroj na odstránenie prekladaniaKonfigurácia odstránenia prekladaniaPopis nástroja na odstránenie prekladaniaZakázaÅ¥ zistenie signáluZakázanéZahodené snímky: %dPovoliÅ¥ zistenie signáluChyba pri vytváraní konfiguraÄného súboru. Chyba pri analýze konfiguraÄného súboru %s. EurópaSkonÄiÅ¥Ponuka skonÄeniaZlyhala inicializácia UTF-8 pre nástroj na konvertovanie %s: Funkcia iconv_open zlyhala (%s). ObľúbenéJemné ladenieJemne ladiÅ¥ aktuálny kanálNaÅ¡iel sa kanál na frekvencii %6.2f MHz (%.2f - %.2f MHz). Pridáva sa do zoznamu kanálov. FrancúzskoFrekvenÄná tabuľkaPlnéPlná rýchlosÅ¥ snímkov: %.2f sn./sRežim na celú obrazovkuPozícia režimu na celú obrazovkuPoloviÄná frekvencia, odstránenie prekladania spodných polí: %.2f sn./sPoloviÄná frekvencia, odstránenie prekladania horných polí: %.2f sn./sVysoké(768 pixelov)Horizontálne rozlíšeniePo reÅ¡tarte bude nastavené horizontálne rozlíšenie %d pixelov.OdtieňZvýšiÅ¥Konfigurácia vstupuVstupné filtreVstup: %s na %dx%d pixelovPosledný kanálNízke (360 pixelov)Nastavenie zmeny veľkosti (vstup 4:3)Nastavenie zmeny veľkosti (anamorfný vstup)StrednéZrkadliÅ¥Zrkadlenie zakázané.Zrkadlenie povolené.Stredné(576 pixelov)StlmiÅ¥Nový ZélandÄŽalší: %sNie je nakonfigurované žiadne zariadenie VBI pre dekódovanie skrytých titulkov.NenaÅ¡iel sa žiadny koreňový prvok XML v %s. Nie sú dostupné informácie o programeŽiadny signálŽiadny zdroj videaZlyhala inicializácia displeju na obrazovke. Bude zakázaný. Výstupná konfiguráciaOverscanNastavenie overscanuOverscan: %.1f%%Pozastavené.Odhad výkonuObrazNastavenia obrazuNastavenia obrazu obnovené na predvolené.Uprednostňovaný jazyk XMLTVSpracováva sa každé spodné pole.Spracováva sa každé vstupné pole.Spracováva sa každé horné pole.SlabéTiché snímky obrazovkyUkonÄiÅ¥NaÄítava sa konfigurácia z %s Znovu sa mapuje %d. Zadajte nové Äíslo kanálu.PreÄíslovaÅ¥ aktuálny kanálObnoviÅ¥ vÅ¡etky kanály ako aktívneObnoviÅ¥ na globálne predvolenéZmeniÅ¥ veľkosÅ¥ okna podľa obsahuReÅ¡tartovaÅ¥ s novými nastaveniamiReÅ¡tartuje sa program tvtime. PokraÄované.Spúšťa sa %s. Spúšťa sa: %sRuskoSýtosÅ¥UložiÅ¥ aktuálne nastavenia ako predvolené pre kanálUložiÅ¥ aktuálne nastavenia ako predvolenéUložiÅ¥ aktuálne nastavenia ako globálne predvolenéUložené aktuálna nastavenia obrazu ako globálne predvolené. Uložené aktuálne nastavenia obrazu pre kanál %d. Ukladajú sa voľby príkazového riadku. VyhľadaÅ¥ signál kanálovVyhľadávaÄ nie je dostupný so zakázanou kontrolou signálu.Vyhľadávajú sa vysielané kanály.Vyhľadáva sa od frekvencie %6.2f MHz po frekvenciu %6.2f MHz. Vyhľadávanie použitím TV Å¡tandardu %s. Správy snímkov obrazoviek zakázané.Správy snímkov obrazoviek povolené.Snímok obrazovky: %sNastaviÅ¥ aktuálny kanál ako PALNastaviÅ¥ aktuálny kanál ako SECAMNastaviÅ¥ pozíciu režimu na celú obrazovkuNastavuje sa hlasitosÅ¥ zaznamenávacej karty na %d%%.NastavenieZistený signálZistenie signálu zakázané.Zistenie signálu povolené.Spánok o %d minútSpánok vypnutý.Južná AfrikaÅ tandardné(720 pixelov)ZastaviÅ¥ vyhľadávanie kanálovPrepnúť Å¡tandard zvukuTelevízny Å¡tandardPo reÅ¡tarte bude nastavený televízny Å¡tandard %s.ÄŽakujeme za používanie programu tvtime. Prepnúť dekódovanie XDSPrepnúť skryté titulkyNavrchuNeznámy jazykPoužívajú sa káblové frekvencie HRC.Používajú sa káblové frekvencie IRC.Používa sa dekódovanie zvuku PAL-BG pre tento kanál.Používa sa dekódovanie zvuku PAL-DK pre tento kanál.Používa sa dekódovanie zvuku PAL-I pre tento kanál.Používa sa predvolený jazyk údajov XMLTV.Používajú sa nominálne káblové frekvencie NTSC.Používa sa neznámy jazyk (%s) údajov XMLTV.Spracovanie videaHlasitosÅ¥Dekódovanie XDS zakázané.Dekódovanie XDS povolené.Jazyk XMLTV nastavený na %s (%s)Program tvtime nie je spustený. použitie: %s [VOĽBA]... tvtime-1.0.11/po/es.gmo0000664000175000017500000006402612663351370011574 00000000000000Þ•÷ÔKŒ¸_¹±qËÅ=! 7'EKms¹:-ØhIAK‹D×(AEG‡=Ï1 :? 5z G° Mø CF!MŠ!>Ø!Ö"œî"I‹#FÕ#A$\^$N»& '!''9'a'~'–')°'Ú'ó'ú'((( /(;( R(s(6“(Ê(Ñ( à(ë()) 3)A)Y) p)|))®) Á)Ë)(Ý)*$*,)*V* ]* h*r*x*‘*±*7Ç*ÿ*+@2+2s+.¦+Õ+Ü+ó+,(,&<,c,,v,£,·,Ç,Ý, ò,7-8-R-+k- —-¥-½-:Ô-.".;.C. b.!ƒ.¥.®.$¿.$ä.# / -/:/U/n/‡//£/#»/%ß/0 0 0D0 `0j0s0HŒ0Õ0Ü0ì0ñ0 11.$1+S11‘13§1Û1ß1è1 ü1 2 $212B2 \2}2„2‹2œ2¬2Â2 Ç2Ó2)Ü2!3 (3 I3S32c3–3«3´3Å3Ö3Þ3ô3ü3# 414J4i4‡4£4©4»4À4(ß45!5>5W5w5‘5¥5 ®5 »5Ç5 Î5)Ù5!6(%63N6.‚6±6Ï62è6&7&B7i7‰7§7Ä7Ó7î7 8$#8H8N8^8y8“8 ¨8 ³8À8Ö8è8þ8*9=9Z9n9…9‰9š9·9-Ô9-:,0:&]:%„:+ª:Ö:ç:î:;;:;O;g;mé<ÕW=|->Áª><l?©@!Á@'ãAV BvbB7ÙBßC^ñChPDD¹D(þDG'EIoEF¹EFLH<jHQ§H\ùHDVIP›I@ìIß-J{ K_‰KGéKI1Lc{L_ßN?OUO1mO ŸOÀOÝO*ùO$P>PEPKPPP"`P ƒPP%©P"ÏP;òP.Q5Q DQ"QQtQ‰Q¨Q¸QÕQ ïQýQ&RAR [ReR+wR £RÄR/ËRûRSSSS',STS<lS©S)ÁSIëSI5T<T¼TÃT"áTU!U-:UhU5|U²UÉUÏUëUVCV%WV"}V: VÛV"ìVWK/W {W4…WºWÁW'ÖW.þW -X9X3NX3‚X2¶XéX"ùX Y=Y ]YiYY*œY.ÇYöYýYZMZ aZ kZwZY”ZîZöZ [[-[!?[5a[5—[Í[ß[>ö[5\ =\I\c\v\ ’\ \²\&Ñ\ø\þ\]]*]@] E] S]<a]0ž]-Ï] ý]^:^Y^r^{^^ ^§^¼^Ä^8×^_)_!I_k_‹_ _±_ ¸_6Ù_`'`)A`8k` ¤`Å` Ú`æ`ö`a a(a@a/YaK‰aEÕa-b#Ib?mb­b,Íb%úb. c+Oc{c “c"´c/×c2d:dId!]ddžd½d ÓdÞdõde-e2Beue)e-¹eçeîe f $f7Ef7}f6µf'ìf!g,6gcg{g ƒg¤gÂgàghàÏÚ¤ ó¯Ø‡ÌžÁjÜ€À.=v†>73~¹TôdNÒ ÔÕ_ì׸H24—&±hð¢Ù;SQ< L‰©ÈMáFçEõÓg-«¾ÞK· –ï§‹¨‘”æœÃŒâñ{:îå+əƃ“Ÿb¿kDW1ê$q„ºsi¦²pw‚\A½X¬Uò ¼[¡£'oÝ›÷neÑë#íÄÎVmÂßJxz»yÍ’³@èÇ|u(OÖ…!}^0•tf%9¶ÛŠ*CöZµI"c8é)]®BGlrˆ äÅÊYãš,ËÐ56­`/ ´Rªa?˜¥°ŽP Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to Examples: hw:0,0 disabled -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -X, --display=DISPLAY Use the given X display to connect to. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -d, --device=DEVICE video4linux device (defaults to -f, --frequencies=NAME The frequency table to use for the tuner. (defaults to us-cable). Valid values are: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (first run tvtime-scanner) -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -k, --slave Disables input handling in tvtime (slave mode). -l, --borderless Start tvtime without a window border. -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -p, --alsainputdev=DEV Specifies an ALSA device to read input on Examples: -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. -x, --mixer=| The mixer device and channel to control. The first variant sets the OSS mixer the second one ALSA. (defaults to default/Master) Valid channels for OSS are: vol, bass, treble, synth, pcm, speaker, line, mic, cd, mix, pcm2, rec, igain, ogain, line1, line2, line3, dig1, dig2, dig3, phin, phout, video, radio, monitor -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-seconds %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:1016:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange NTSC cable modeChange default audio standardChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed caption display failed to initialize, disabled. Closed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.Defaulting to PAL-I audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLast ChannelLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsQuitReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.South AfricaStandard (720 pixels)Stop channel scanSwitch audio standardTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using PAL-I audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: tvtime 0.9.14 Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2016-02-24 12:54-0300 Last-Translator: Mauro Carvalho Chehab Language-Team: Spanish Language: es MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.6 Fallo al deponer privilegios de root: %s. tvtime será cerrado para evitar problemas de seguridad. Fallo entrando en el modo UTF-8 usando bind_textdomain_codeset() (devolvió %s.) ¡Esto puede causar que los mensajes sean visualizados incorrectamente! Por favor, informe de este error en %s. Sintonizador no encontrado en entrada %d. Si dispones de alguno, selecciona otro diferente usando --input=. El controlador de tu tarjeta capturadora, %s, no parece soportar framerate completo. Comprueba si está mal configurada, o si has seleccionado una capturadora errónea (%s). El controlador de tu tarjeta capturadora, %s, no provee de suficientes buffers para que tvtime procese el video. Por favor, comprueba en la documentación de tu controlador si es posible incrementar el número de buffers facilitados a las aplicaciones, y repórtalo al tvtime bug tracker en %s Comandos disponibles: tvtime es software libre, está escrito por Billy Biggs, Doug Bell y muchos otros. Para conocer los detalles y las condiciones de copia visite nuestro website en http://tvtime.net/ tvtime Copyright (C) 2001, 2002, 2003 por Billy Biggs, Doug Bell, Alexander S. Belov, y Achim Schneider. -A, --nowidescreen modo 4:3. -F, --configfile=FICHERO Fichero de configuración adicional para cargar ajustes. -I, --inputwidth=MUESTREO Resolución horizontal de entrada (720 pixels por defecto). -M, --window Inicia tvtime en ventana. -p, --alsainputdev=DEV Especifica un dispositivo de salida para leer ALSA Ejemplos: hw:0,0 disabled -R, --priority=PRI Establece la prioridad del proceso con la que se ejecuta tvtime. -S, --saveoptions Guarda las opciones de la línea de comandos al fichero de configuración. -X, --display=DISPLAY Usa el X display dado para conectarse. -a, --widescreen modo 16:9. -b, --vbidevice=DISPOSITIVO dispositivo VBI (/dev/vbi0 por defecto). -c, --channel=CANAL Sintoniza el canal especificado al iniciar. -d, --device=DISPOSITIVO dispositivo video4linux (por defecto -f, --frequencies=NOMBRE La tabla de frecuencias que usará tu sintonizador. (us-cable por defecto). Valores válidos son: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast -g, --geometry=GEOMETRIA Establece el tamaño de la ventada de salida. -h, --help Muestra este mensaje de ayuda. -i, --input=NUMENTRADA número de entrada de video4linux(0 por defecto). -k, --slave Desactiva el procesamiento de señal en tvtime (modo esclavo). -M, --window Inicia tvtime sin un borde en ventana. -l, --xmltvlanguage=LENG Usa XMLTV en el lenguaje dado, si está diponible. -m, --fullscreen Inicia tvtime a pantalla completa. -n, --norm=NORMA La norma que se usará para la entrada. Tvtime soporta: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N o PAL-60 (NTSC, por defecto). -p, --alsainputdev=DEV Especifica un dispositivo de entrada para leer ALSA Ejemplos: -s, --showdrops Imprime información de los cuadros arrojados (para depurarión). -t, --xmltv=FICHERO Lee las listas XMLTV del fichero dado. -v, --verbose Imprime mensajes de depuración por stderr. -x, --mixer= | El dispositivo mezclador y el canal para control El primero variante fiza el mezclador OSS segundo ALSA. (por defecto: default/Master) Canales válidos son: vol, bass, treble, synth, pcm, speaker, line, mic, cd, mix, pcm2, rec, igain, ogain, line1, line2, line3, dig1, dig2, dig3, phin, phout, video, radio, monitor -z, --alsalatency=LATENCIA Specifica latencia de reprodução de audio ALSA en minisegundos %s Actual: %d pixels%s Máximo (%d pixels)%s no es un fichero de configuración de tvtime. %s: Imposible reservar memoria. %s: Imposible abrir %s: %s %s: Comando inválido '%s' %s: Enviando comando %s con argumento %s. %s: Enviando comando %s. 1.85:116:1016:916:9 + OverscanModo de visualización 16:9 activosalida 16:9Inversión "2-3 pulldown"Inversión "2-3 pulldown" desactivadaInversión "2-3 pulldown" activadaInversión "2-3 pulldown" no es posible con tu norma de TV.2.35:14:3 + Overscan4:3 centradoModo de visualización 4:3 activo.Añadir canal actualTodos los canales reactivados.Siempre visibleSiempre visible desactivado.Siempre visible activado.Aplicar matteCuadros por segundo deseadosCuadros por segundo deseados: %.2f fpsAumentar volumen de audioAustraliaAustralia (Optus)Tiempo medio de blit: %.2f ms (%.0f MB/sec)Tiempo medio de render: %5.2f msVolverEspacio de blit: %4.1f/%4.1f ms (want %4.1f ms)AbajoBrilloAntenaCableCable con canales 100+Imposible cambiar el dueño de %s: %s. Imposible crear %s: %s Imposible crear FIFO, control remoto de tvtime desactivado. Imposible abrir %s: %s No puedo abrir dispositivo de captura %s.Imposible ejecutar dos instancias de tvtime con la misma configuración. Imposible actualizar la configuración mientras tvtime está ejecutando. El volumen de la capturadora no será controlado por tvtime.CentroCambiar modo de cable de NTSCCambiar norma de audio por defectoCambiar tabla de frecuenciasCambiar origen de vídeoCanal desactivado en la lista de navegación.Gestión de canalesCanal marcado como activo en la lista de navegación.Comprobando %6.2f MHz:ChinaBlanco y negro desactivado.Blanco y negro activado.Blanco y negroFallo al inicializar subtítulos para sordos, serán desactivados. Subtítulos para sordos desactivados.Subtítulos para sordos activados.Decodificación de color para este canal establecida a %s.Invertir coloresInversión de colores desactivada.Inversión de colores activada.Imposible parsear fichero de configuración. Los ajustes no se guardarán. ContrasteImposible crear un nuevo fichero de configuración. ActualActivar canal actualDescripción del desentrelazador actualPersonalizada (primero ejecuta tvtime-scanner)DecrementarLenguaje por defectoUsando decodificación de audio PAL-GB por defecto.Usando decodificación de audio PAL-DK por defecto.Usando decodificación de audio PAL-I por defecto.DesentrelazadorConfiguración del desentrelazadorDescripción del desentrelazadorDesactivar detección de señalDesactivadoCuadros arrojados: %dActivar detección de señalError al crear fichero de configuración. Error parseando fichero de configuración %s. EuropaSalirSalir del menúFallo en la inicialización UTF-8 para convertir %s: iconv_open falló (%s). FavoritosAjuste finoAjuste fino del canal actualEncontrado un canal en %6.2f MHz (%.2f - %.2f MHz), añadiéndolo a la lista de canales. FranciaTabla de frecuenciasCompletoRitmo completo: %.2f fpsPantalla completaPosición de la pantalla completaRitmo medio, desentrelaza campos inferiores: %.2f fpsRitmo medio, desentrelaza campos superiores: %.2f fpsAlta (768 pixels)Resolución horizontalLa resolución horizontal será de %d pixels cuando reinicies.EnfoqueIncrementarConfiguración de entradaFiltros de entradaEntrada: %s en %dx%d pixelsÚltimo CanalBajo (360 pixels)Ajustes de matte (entrada 4:3)Ajustes de matte (entrada anamórfica)MedioEspejoEspejo desactivado.Espejo activado.Moderado (576 pixels)MudoNueva ZelandaSiguiente: %sNingún dispositivo VBI configurado para decodificación CC.No encontrado ningún elemento raíz XML en %s. Información del programa de TV no disponibleSin señalSin origen de vídeo.Imposible inicializar sobreimpresión, OSD deshabilitado. Configuración de salidaOverscanAjustes de OverscanOverscan: %.1f%%Pausa.Rendimiento estimadoImágenAjustes de imágenLos ajustes de imágen por defecto han sido recuperados.Lenguaje preferido XMLTVProcesando cada campo inferior.Procesando cada campo de entrada.Procesando cada campo superior.BajoCapturas de pantalla silenciosasCerrarLeyendo la configuración de %s Renumerando %d. Introduzca un núevo número de canal.Renumerar canal actualActivar todos los canalesRecargar los valores globales por defectoRedimensionar la ventana para adaptarse a los contenidosReiniciar con los nuevos ajustesReiniciando tvtime. Recuperado.Ejecutando %s. Ejecutando: %sRusiaSaturaciónGuardar ajustes actuales para este canalGuardar ajustes actualesGuardar ajustes actuales para todos los canalesLos ajustes de imágen actuales han sido guardados para todos los canales. Los ajustes de imágen actuales han sido guardados para el canal %d. Guardando opciones de la línea de comandos. Escanear canales en busca de señalEscáner no disponible con la detección de señal desactivada.Escaneando en busca de canales.Escaneando desde %6.2f MHz hasta %6.2f MHz. Escaneando usando la norma de TV %s. Mensajes de capturas de pantalla desactivados.Mensajes de capturas de pantalla activados.Captura de pantalla: %sEstablecer canal actual como PALEstablecer canal actual como SECAMEstablecer la posición de la pantalla completaEstableciendo el volumen de la capturadora a %d%%.Configuración¡Señal detectada!Detección de señal desactivada.Detección de señal activada.Me voy a dormir en %d minutos.¡Ya no tengo sueño!SudáfricaEstándar (720 pixels)Detener escaneo de canalesCambiar norma de televisiónNorma de televisiónLa norma de televisión será %s cuando reinicies.Gracias por usar tvtime. Alternar decodificación XDS (sólo NTSC)Alternar subtítulos para sordos (sólo NTSC)ArribaLenguaje desconocidoUsando frecuencias de cable HRC.Usando frecuencias de cable IRC.Usando decodificación de audio PAL-GB para este canal.Usando decodificación de audio PAL-DK para este canal.Usando decodificación de audio PAL-I para este canal.Usando lenguaje por defecto para XMLTV.Usando frecuencias de cable NTSC.Usando lenguaje desconocido (%s) para XMLTV.Procesamiento de vídeoVolumenDecodificación XDS desactivada.Decodificación XDS activada.Lenguaje de XMLTV es %s (%s).tvtime no está en ejecución. uso: %s [OPTION]... tvtime-1.0.11/po/pt.gmo0000664000175000017500000006474712664122212011612 00000000000000Þ•õÄKl˜_™±ùq«Åã '%KMs™: ØHI!KkD·(üA%Gg=¯1í: 5Z G MØ C&!Mj!>¸!Ö÷!œÎ"Ik#Fµ#Aü#\>$N›&ê&'''A'^'v')'º'Ó'Ú'à'å'õ' (( 2(S(6s(ª(±( À(Ë(ä(ø( )!)9) P)\)p)Ž) ¡)«)(½)æ)*, *6* =* H*R*X*q*‘*7§*ß*ó*@+2S+.†+µ+¼+Ó+ñ+,&,C,,V,ƒ,—,§,½, Ò,7à,-2-+K- w-…--:´-ï-"ø-.#. B.!c.….Ž.$Ÿ.$Ä.#é. //5/N/g/p/ƒ/#›/%¿/å/ì/ ñ/Dû/ @0J0S0Hl0µ0¼0Ì0Ñ0 å0ð0.1+31_1q13‡1»1¿1È1 Ü1ê122 /2P2W2^2o22•2 š2¦2)¯2!Ù2 û2 3&3263i3~3‡3˜3©3±3Ç3Ï3#à344<4Z4v4|4Ž4(­4Ö4ï4 5%5E5_5s5 |5 ‰5•5 œ5)§5!Ñ5(ó536.P6662¶6&é6&777W7u7’7¡7¼7Ù7$ñ788,8G8a8 v8 8Ž8¤8¶8Ì8*à8 9(9<9S9W9h9…9-¢9-Ð9,þ9&+:%R:+x:¤:µ:¼:Ó:é:;;º5;yð<½j=Œ(>Õµ>B‹?Î@ ç@'õAaB}B;ýB»9C\õCcRDJ¶D(EN*EJyEFÄEP F9\I<–I[ÓIY/JF‰JZÐJF+KØrK‚KL_ÎLT.MIƒMÍMfkPÒPèP4Q 5QVQsQ,Q¼QØQßQåQêQ!úQ R(R#?R cR?„RÄRËR ÚR çRS"!SDSSSoS ˆS–S!®SÐS ìS÷S) T(4T]T8dTT£TªT³T¸T%ÍTóT> UKU-dUJ’UMÝU=+ViVpV%ŒV ²VÓV*íVW2*W]WtWƒW£W ÀWGÌW"X7X;WX“X¦XÆX\ãX @Y2JY}Y„Y&¡Y+ÈYôYýY?Z?SZ>“ZÒZ"ãZ[ &[ G[S[k[*‰[0´[å[ì[ ñ[Iþ[ H\ R\]\Ts\È\Ð\ç\í\ ]]2*]1]]]¡]<¸]õ]ù]^^/^J^"]^*€^«^²^º^Ï^á^÷^ü^ _?_+X_,„_ ±_¾_8Ö_`(`1`J` [`e`€`‡`<ž`Û` õ`"a9aYaba$~a7£aÛa&õa%b0Bb#sb—b ²b ¾b ÌbÙb áb9íb2'c6ZcD‘c5Öc( d5d>Pdd)¯d"Ùd+üd((eQefe„e ¤e1Åe÷ef f7fUfnfƒf’f¨fÃfÛf/ïfg73~·TòdNÐ ÒÓ_êÕH24&°hî¡×;SQ< L‰¨ÆMßFåEóÑg-ª¼ÜK¶ –í¦‹§‘”ä›ÁŒàï{:ìã+ǘ㓞b½kDW1è$q„¸si¥±pw‚\A»X«Uð º[ ¢'oÛšõœneÏé#ëÂÌVmÀÝJxz¹yË’²@æÅ|u(OÔ…!}^0•tf%9µÙŠ*CôZ´I"c8ç)]­BGlrˆŸâÃÈYá™,ÉÎ56¬`/ ³R©a?—¤¯ŽP Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to Examples: hw:0,0 disabled -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -X, --display=DISPLAY Use the given X display to connect to. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -d, --device=DEVICE video4linux device (defaults to -f, --frequencies=NAME The frequency table to use for the tuner. (defaults to us-cable). Valid values are: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (first run tvtime-scanner) -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -k, --slave Disables input handling in tvtime (slave mode). -l, --borderless Start tvtime without a window border. -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -p, --alsainputdev=DEV Specifies an ALSA device to read input on Examples: -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. -x, --mixer=| The mixer device and channel to control. The first variant sets the OSS mixer the second one ALSA. (defaults to default/Master) Valid channels for OSS are: vol, bass, treble, synth, pcm, speaker, line, mic, cd, mix, pcm2, rec, igain, ogain, line1, line2, line3, dig1, dig2, dig3, phin, phout, video, radio, monitor -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-seconds %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:1016:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange NTSC cable modeChange default audio standardChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed caption display failed to initialize, disabled. Closed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.Defaulting to PAL-I audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.South AfricaStandard (720 pixels)Stop channel scanSwitch audio standardTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using PAL-I audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: tvtime 1.0.2-5 Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2016-02-26 07:05-0300 Last-Translator: Mauro Carvalho Chehab Language-Team: Portuguese Language: pt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.6 Plural-Forms: nplurals=2; plural=(n != 1); Falha ao abandonar privilégios de root: %s. O tvtime irá terminar agora para evitar problemas de segurança. Falha ao entrar em modo UTF-8 usando bind_textdomain_codeset() (retornou %s.) Isto pode causar uma exibição incorrecta das mensagens! Por favor, reporte este bug em %s. Nenhum sintonizador encontrado na entrada %d. Se tiver um, por favor seleccione outra entrada diferente usando --input=. A driver da sua placa de captura, %s, não parece suportar captura em taxa completa. Por favor, verifique se está mal configurada, ou se você seleccionou um dispositivo de captura errado (%s). A driver da sua placa de captura, %s, não está a providenciar buffers suficientes para o tvtime processar o vídeo. Por favor, verifique na documentação do seu driver para ver se pode aumentar o número de buffers disponibilizados para aplicações, e reporte isto ao bug tracker do tvtime em %s Comandos disponíveis: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen modo 4:3. -F, --configfile=FICHEIRO Ficheiro de configuração adicional de onde carregar definições. -I, --inputwidth=AMOSTRAGEM Resolução horizontal da entrada (predefinição: 720 pixeis). -M, --window Arranca o tvtime numa janela. Especifica um dispositivo ALSA para saída. Exemplos: hw:0,0 disabled -R, --priority=PRIORIDADE Define a prioridade de processo no qual correr o tvtime. -S, --saveoptions Grava as opções da linha de comandos no ficheiro de configuração. -X, --display=DISPLAY Usa o display X fornecido para onde se ligar. -a, --widescreen modo 16:9. -b, --vbidevice=DISPOSITIVO dispositivo VBI (predefinição: /dev/vbi0). -c, --channel=CANAL Sintonizar o canal especificado no arranque. -d, --device=DISPOSITIVO dispositivo video4linux (predefinição: -f, --frequencies=NOME A tabela de frequência a usar para o sintonizador. (predefinição: us-cable). Os valores válidos são: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (primeiro executar o tvtime-scanner) -g, --geometry=GEOMETRIA Define o tamanho da janela. -h, --help Mostra esta mensagem de ajuda. -i, --input=NUMERO_DE_ENTRADA Número de entrada do video4linux (predefinição: 0). -k, --slave Desactiva o tratamento de entrada no tvtime (modo escravo). -M, --window Arranca o tvtime numa janela sem bordas. -l, --xmltvlanguage=LINGUAGEM Usa dados XMLTV na linguagem fornecida, se disponível. -m, --fullscreen Arranca o tvtime em modo de ecrã total. -n, --norm=NORMA A norma a usar para entrada. O tvtime suporta: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N ou PAL-60 (predefinição: NTSC). Especifica um dispositivo ALSA para entrada. Exemplos: -s, --showdrops Escreve estatísticas das imagens abandonadas (para depuração). -t, --xmltv=FICHEIRO Lê as listagens XMLTV a partir do ficheiro fornecido. -v, --verbose Escreve mensagens de depuração no stderr. -x, --mixer=| O dispositivo de mistura e canal para controlo. A primeira variante ajusta o mixer OSS; a segunda ajusta o mixer ALSA (predefinição para /default/Master). Os canais válidos são: vol, bass, treble, synth, pcm, speaker, line, mic, cd, mix, pcm2, rec, igain, ogain, line1, line2, line3, dig1, dig2, dig3, phin, phout, video, radio, monitor -z, --alsalatency=LATÊNCIA Especifica a latência do dispositivo ALSA de loopback em milisegundos %s Actual: %d pixeis%s Máximo (%d pixeis)%s não é um ficheiro de configuração do tvtime. %s: Incapaz de alocar memória. %s: Incapaz de abrir %s: %s %s: Comando inválido '%s' %s: A enviar o comando %s com argumento %s. %s: A enviar o comando %s. 1.85:116:1016:916:9 + OverscanModo de exibição 16:9 activado.Saída 16:9Inversão 2-3 pulldownInversão 2-3 pulldown desactivada.Inversão 2-3 pulldown activada.A inversão 2-3 pulldown não é válida com a sua norma de TV.2.35:14:3 + Overscan4:3 centradoModo de exibição 4:3 activado.Adicionar o canal actualTodos os canais foram reactivados.Sempre no topoSempre-no-topo desactivado.Sempre-no-topo activado.Aplicar matteTaxa de imagens tentadaTaxa de imagens tentada: %.2f fpsAmplificar volume de áudioAustráliaAustrália (Optus)Tempo de blit médio: %.2f ms (%.0f MB/s)Tempo médio de renderização: %5.2f msVoltarEspaçamento de blit: %4.1f/%4.1f ms (pretende %4.1f ms)FundoBrilhoDifusãoCaboCabo com canais 100+Incapaz de alterar o dono de %s: %s. Incapaz de criar %s: %s Incapaz de criar FIFO, controlo remoto do tvtime desactivado. Incapaz de abrir %s: %s Incapaz de abrir o dispositivo de captura %s.Não pode executar duas instâncias do tvtime com a mesma configuração. Não pode actualizar a configuração enquanto o tvtime está em execução. O volume da placa de captura não será ajustado pelo tvtime.CentroAlterar o modo de cabo NTSCAlterar a norma de áudio predefinidaAlterar a tabela de frequênciasAlterar a fonte de vídeoCanal desactivado da lista de navegação.Gestão de canaisCanal marcado como activo na lista de navegação.A verificar %6.2f MHz:China DifusãoRemoção de cores desactivada.Remoção de cores activada.Retirar corExibição de legendas codificadas falhou ao inicializar, desactivada. Legendas codificadas desactivadas.Legendas codificadas activadas.Descodificação de cores para este canal definida para %s.Inversão de coresInversão de cores desactivada.Inversão de cores activada.O ficheiro de configuração não pode ser analisado. As definições não serão gravadas. ContrasteIncapaz de criar novo ficheiro de configuração. ActualCanal actual activo na listaDescrição do desentrelaçador actualPersonalizado (correr tvtime-scanner antes)DiminuirLinguagem predefinidaA regressar a predefinição de codificação de áudio PAL-BG.A regressar a predefinição de codificação de áudio PAL-DK.A regressar a predefinição de codificação de áudio PAL-I.DesentrelaçadorConfiguração do desentrelaçadorDescrição do desentrelaçadorDesactivar a detecção de sinalDesactivadoImagens abandonadas: %dActivar a detecção de sinalErro ao criar ficheiro de configuração. Erro ao analisar ficheiro de configuração %s. EuropaSairSair do menuFalha ao inicializar conversor de UTF-8 para %s: iconv_open falhou (%s). FavoritosAfinaçãoAfinar o canal actualEncontrado um canal em %6.2f MHz (%.2f - %.2f MHz), a adicionar à lista de canais. FrançaTabela de frequênciasTotalTaxa completa: %.2f fpsEcrã totalPosição do ecrã totalMeia taxa, desentrelaça campos do fundo: %.2f fpsMeia taxa, desentrelaça campos do topo: %.2f fpsAlto (768 pixeis)Resolução horizontalA resolução horizontal será de %d pixeis após reiniciar.CorAumentarConfiguração da entradaFiltros de entradaEntrada: %s a %dx%d pixeisBaixo (360 pixeis)Definição do Matte (entrada 4:3)Definição do Matte (entrada Anamórfica)MédioEspelhoEspelho desactivado.Espelho activado.Moderado (576 pixeis)MudoNova ZelândiaPróximo: %sNenhum dispositivo VBI configurado para descodificação de CC.Nenhum elemento raiz XML encontrado em %s. Nenhuma informação do programa disponívelNenhum sinalNenhuma fonte de vídeoO display no ecrã falhou ao inicializar, desactivado. Configuração da saídaOverscanDefinições do OverscanOverscan: %.1f%%Em pausa.Estimativas de performanceImagemDefinições da imagemDefinições de imagem reiniciadas aos valores predefinidos.Linguagem XMLTV preferidaA processar cada campo do fundo.A processar cada campo de entrada.A processar cada campo do topo.DiscretoCapturas de ecrã discretasA ler configuração a partir de %s A re-mapear o canal %d. Insira o novo número do canal.Re-numerar o canal actualReiniciar todos os canais como activosRegressar às predefinições globaisRedimensionar a janela de acordo com o conteúdoReiniciar com as novas definiçõesA reinicializar o tvtime. Continuado.A correr %s. A correr: %sRússiaSaturaçãoGravar definições actuais como predefinição de canaisGravar as definições actuais como predefiniçãoGravar definições actuais como predefinição globalDefinições de imagem actuais gravadas como predefinição global. Definições de imagem actuais gravadas no canal %d. A gravar opções da linha de comandos. Pesquisar canais por sinalSondagem indisponível com verificação de sinal desactivada.A sondar por canais difundidos.A sondar desde %6.2f MHz até %6.2f MHz. A sondar usando a norma de TV %s. Mensagens de captura de ecrã desactivadas.Mensagens de captura de ecrã activadas.Captura de ecrã: %sDefinir canal actual como PALDefinir canal actual como SECAMDefinir posição de ecrã totalA definir o volume da placa de captura para %d%%.ConfiguraçãoSinal detectadoDetecção de sinal desactivada.Detecção de sinal activada.Adormecer em %d minutos.Adormecer desligado.Ãfrica do SulStandard (720 pixeis)Parar a pesquisa de canaisMudar a norma de áudioNorma de televisãoO norma de televisão será %s após reiniciar.Obrigado por usar o tvtime. (Des)Ligar descodificação XDS(Des)Ligar legendas codificadasTopoLinguagem desconhecidaA usar frequências de cabo HRC.A usar frequências de cabo IRC.A usar a descodificação de áudio PAL-BG para este canal.A usar a descodificação de áudio PAL-DK para este canal.A usar a descodificação de áudio PAL-I para este canal.A usar linguagem predefinida para dados XMLTV.A usar frequências de cabo NTSC nominais.A usar linguagem desconhecida (%s) para dados XMLTV.Processamento de vídeoVolumeDescodificação XDS desactivada.Descodificação XDS activada.Linguagem XMLTV definida para %s (%s).O tvtime não está em execução. utilização: %s [OPÇÃO]... tvtime-1.0.11/po/hu.gmo0000664000175000017500000005772612663345675011625 00000000000000Þ•ï”K 8_9±™qKŽƒ¡ ·'ÅKís9:­IèK2D~(ÃAìG.1v:¨5ãGMaM¯>ýÖ< I!F]!A¤!æ!ý!'"="Z"r")Œ"¶"Ï"Ö"Ü"á"ñ" ## .#O#6o#¦#­# ¼#Ç#à#ô# $$5$ L$X$l$Š$ $§$(¹$â$%,%2% 9% D%N%T%m%%7£%Û%ï%@&2O&.‚&±&¸&Ï&í&'&'?',R''“'£'¹' Î'7Ü'(.(+G( s((™(:°(ë("ô()) >)!_))Š)$›)$À)#å) **1*J*c*l**#—*%»*á*è* í*D÷* <+F+O+Hh+±+¸+È+Í+ á+ì+.,+/,[,m,3ƒ,·,»,Ä, Ø,æ,-- +-L-S-Z-k-{-‘- –-¢-)«-!Õ- ÷- .".22.e.z.ƒ.”.¥.­.Ã.Ë.#Ü.//8/V/r/x/Š/(©/Ò/ë/0!0A0[0o0 x0 …0‘0 ˜0)£0!Í0(ï031.L1{1™12²1&å1& 232S2q2Ž22¸2Õ2$í233(3C3]3 r3 }3Š3 3²3È3*Ü34$484O4S4d44-ž4-Ì4,ú4&'5%N5+t5 5±5¸5Ï5å566_16…‘7é8x9z9k‚:î;<&!=BH=t‹=7>A8>sz>Eî>'4?A\?Fž?:å?C C5dCEšCCàC‡$DB¬DÈïDЏEKCFDFÔFëF0G"3G$VG {G0œGÍGéGðGöGûGH "H.H EH%fHBŒHÏHÖH êHøH I$)INIhI$ˆI­I ÀI.áIJ "J.J'BJ$jJJ1–JÈJ ÍJ×J ðJýJ=K"XK;{K ·K0ØKF L8PL:‰L ÄLÎL'éLM,M1CMuM#†MªMÁMÓM"ïMNJ&NqN"N!²NÔNêN$ O[/O ‹O6•O ÌOÖO)òO6P SP]P%tP%šP$ÀPåP!øPQ7QRQ[QrQ4’Q9ÇQR RRF$R kRuR„RbRSS$S#+SOSaS/~S0®SßSñS3T Q+åÙ~²mckâ«jq|Vy;µR¥OêD´Ušœ!iÕ”ï–h‰_Éãaæ¿ÆPgº×rt³sÅŒ¼:àvo"„IÎwX*n`3¯Ó“$=îT®C]2á#W§<Afl‚™Ü½ÂS ÛŸ&{ÃÈ/0¦ZŠ) ­L£[9‘ž©ˆJ Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -X, --display=DISPLAY Use the given X display to connect to. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -f, --frequencies=NAME The frequency table to use for the tuner. (defaults to us-cable). Valid values are: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (first run tvtime-scanner) -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -k, --slave Disables input handling in tvtime (slave mode). -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:1016:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange NTSC cable modeChange default audio standardChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed caption display failed to initialize, disabled. Closed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.Defaulting to PAL-I audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.South AfricaStandard (720 pixels)Stop channel scanSwitch audio standardTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using PAL-I audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: tvtime 0.99 Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2005-11-02 23:07+0100 Last-Translator: GERE Károly Language-Team: GERE Károly Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Nem sikerült eldobni a root jogokat: %s. A tvtime a biztonsági problémák elkerülésének érdekében most leáll. Nem sikerült UTF-8 módba kapcsolni a bind_text_domain_codeset() használatával (visszatérési érték: %s). Emiatt az üzenetek helytelenül jelenhetnek meg. Kérlek, jelents ez a hibát a következÅ‘ címen: %s A(z) %d inputon nem található tuner. Ha van tunered, válassz egy másikat a --input= paraméterrel. A rögzítókártya meghajtója (%s) valószínűleg nem támogatja a teljes képkockasebességű rögzítést. Kérlek, ellenÅ‘rizd, hogy megfelelÅ‘en van-e beállítva, és nézd meg, hogy a megfelelÅ‘ rögzítÅ‘eszközt (%s) választottad-e. A rögzítÅ‘kártya meghajtója (%s) nem szolgáltat elég pufferterületet a videófeldolgozáshoz. Kérlek, ellenÅ‘rizd a meghajtóprogram dokumentációjában, hogy lehetséges-e az alkalmazások számára nyújtott pufferek számának növelése, és küldj errÅ‘l jelentést a tvtime hibakövetÅ‘ rendszerébe a következÅ‘ címre: %s. Lehetséges parancsok: A tvtime szabad szoftver, melyet Billy Biggs, Doug Bell és sokan mások készítettek. A részletek és a másolás feltétele megtalálhatók a honlapunkon: http://tvtime.net/ tvtime Copyright © 2001, 2002, 2003 Billy Biggs, Doug Bell, Alexander S. Belov és Achim Schneider. -A, --nowidescreen 4:3 mód -F, --configfile=FÃJL További konfigurációs állomány -I, --inputwidth=MÉRET Az input vízszintes felbontása. (alapért.: 720 pixel) -M, --window Indítás ablakos módban -R, --priority=PRI A tvtime prioritásának megadása. -S, --saveoptions A parancssori opciók mentése a konfigurációs fájlba -X, --display=DISPLAY Kapcsolódás az adott X képernyÅ‘höz -a, --widescreen 16:9 mód -b, --vbidevice=ESZKÖZ VBI eszköz (alapért.: /dev/vbi0) -c, --channel=CSATORNA Induáskor ugrás a megadott csatornára -f, --frequencies=NÉV A használandó frekvenciatáblázat (alapért.: us-cable) Lehetséges értékek: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (elÅ‘tte futtasd a tvtime-scanner-t) -g, --geometry=GEOMETRIA Az output ablak méretének megadása -h, --help Ezen súgó kiíratása -i, --input=SZÃM video4linux input szám (alapért.: 0) -k, --slave Inputkezelés letiltása (slave-mód) -l, --xmltvlanguage=NYELV Az adott nyelvű XMLTV adatok használata, amennyiben rendelkezésre állnak -m, --fullsreen Indítás teljes képernyÅ‘s módban -n, --norm=NORMA Input norma. Lehetséges értékek: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N és PAL-60 (alapért.: NTSC) -s, --showdrops Eldobott képkockák statisztikájának megjelenítése (hibakeresési céllal) -t, --xmltv=FÃJL XMLTV listák beolvasása az adott fájlból -v, --verbose Debug üzenetek kiírása az stderr-re %s Jelenleg: %d pixel%s maximum (%d pixel)%s nem érvényes tvtime konfigurációs fájl. %s: Sikertelen memóriafoglalás. %s: Nem sikerült megnyitni: %s: %s %s: Érvénytelen parancs: "%s" %s: A(z) %s parancs küldése %s paraméterrel. %s: Parancs küldése: %s. 1,85:116:1016:916:9 + túlnyújtás16:9 mód aktív.16:9 arány2-3 pulldown inversion2-3 pulldown inversion letiltva.2-3 pulldown inversion engedélyezve.A 2-3 pulldown inversion nem alkalmazható ennél a TV normánál.2,35:14:3 + túlnyújtás4:3 középen4:3 mód aktív.Aktuális csatorna hozzáadásaAz összes csatorna újraaktiválva.A tvtime mindig láthatóMindig látható mód letiltva.Mindig látható mód engedélyezve.Maszk alkalmazásaMegkísérelt képkockasebességMegkísérelt képkockasebesség: %.2f kuvaa/sHang erÅ‘sítéseAusztráliaAusztrália (Optus)Ãtlagos blit-idÅ‘: %.2f ms (%.0f MB/s)Ãtlagos renderelési idÅ‘: %5.2f msVisszaBlit-köz: %4.1f/%4.1f ms (szükséges: %4.1f ms)LentFényerÅ‘Antennás műsorszórásKábeltévé100+ csatornás kábeltévéNem sikerült a(z) %s tulajdonosának megváltoztatása: %s. Nem sikerült létrehozni: %s: %s FIFO létrehozása sikertelen, a távirányító letiltva. Nem sikerült megnyitni: %s: %s A rögzítÅ‘eszköz (%s) megnyitása sikertelen.A tvtime két példánya nem futhat ugyanazokkal a beállításokkal. A konfiguráció nem módosítható, míg a tvtime fut. A rögzítÅ‘kártya hangerejét nem a tvtime állítja be.KözépenNTSC kábel mód váltásaAlapértelmezett audió norma váltásaFrekvenciatábla váltásaVideóforrás váltásA csatorna a böngészÅ‘listából eltávolítva.CsatornakezelésA csatorna aktívként megjelölve.Vizsgálat: %6.2f MHz:Kína (antennás)Színeltávolítás tiltva.Színeltávolítás engedélyezve.SzíneltávolításClosed Caption (CC, képfeliratok) inicializásása sikertelen, letiltva. Closed Caption (CC) letiltva.Closed Caption (CC) engedélyezve.A csatorna színdekódolása: %s.Színek invertálásaSzínek invertálása letiltva.Színek invertálása engedélyezve.A konfigurációs fájlt nem sikerült feldolgozni. A beállítások nem lesznek elmentve. KontrasztNem sikerült új konfigurációs fájlt létrehozni. JelenlegiA csatorna aktív a listánAz aktuális vonaleltávolító leírásaEgyéni (elÅ‘ször futtasd a tvtime-scanner programot)CsökkentAlapértelmezett nyelvPAL-BG audió dekódolás aktiválva.PAL-DK audió dekódolás aktiválva.PAL-I audió dekódolás aktiválva.VonaleltávolítóVonaleltávolító beállításokVonaleltávolító leírásaJelérzékelés letiltásaLetiltvaEldobott képkocka: %dJelérzékelés engedélyezéseHiba a konfigurációs fájl létrehozása közben. Hiba a konfigurációs fájl (%s) feldolgozása közben. EurópaKilépésMenü bezárásaAz UTF-8 - %s konverter inicializálása sikertelen: iconv_open (%s). KedvencekFinomhangolásCsatorna finomhangolásaA(z) %6.2f MHz (%.2f - %.2f MHz) frekvencián csatorna található; csatornalistához hozzáadva. FranciaországFrekvenciatáblázatTeljesTeljes képkockasebesség: %.2f fpsTeljes képernyÅ‘Teljes képernyÅ‘s pozícióFél képkockasebesség, alsó mezÅ‘k: %.2f fpsFél képkockasebesség, felsÅ‘ mezÅ‘k: %.2f fpsMagas (768 pixel)Vízszintes felbontásA vízszintes felbontás %d lesz újraindításkor.ÃrnyalatNövelInput beállításokInput szűrÅ‘kInput: %s %dx%d pixeles mérettelAlacsony (360 pixel)Képmaszkbeállítás (4:3 input)Képmaszkbeállítás (anamorf input)KözepesTükrözésTükrözés tiltva.Tükrözés engedélyezve.Mérsékelt (576 pixel)NémaÚj-ZélandKövetkezÅ‘: %sNincs VBI eszköz beállítva a CC dekódoláshoz.Nem található XML gyökérelem a(z) %s fájlban. Nincs elérhetÅ‘ műsorinformációNincs jelNincs videóforrásAz OSD inicializálása nem sikerült, letiltva. Output beállításokTúlnyújtásTúlnyújtási beállításokTúlnyújtás: %.1f%%Szüneteltetve.TeljesítménybecslésKépKépbeállításokKépbeállítások visszaállítása az alapértelmezettre.ElÅ‘nyben részesített XMLTV nyelvCsak az alsó mezÅ‘k feldolgozása.Az összes input mezÅ‘ feldolgozása.Csak a felsÅ‘ mezÅ‘k feldolgozása.AlacsonyKépmentés visszajelzés nélkülKonfiguráció beolvasása: %s Add meg %d. csatorna új számát.Csatorna újraszámozásaAz összes csatorna aktívra állításaGlobális alapbeállítások visszaállításaAblakméret tartalomhoz igazításaÚjraindítás az új beállításokkalA tvtime újraindul. Újraindítva.Futtatás: %s. Futtatás: %sOroszországTelítettségBeállítások mentése a csatorna alapértelmezésekéntBeállítások mentése alapértelmezéskéntBeállítások mentése globális alapértelmezéskéntKépbeállítások mentése globális alapértelmezettként. Képbeállítások elmentve a %d. csatornához. Parancssori opciók mentése. CsatornakeresésA csatornakeresÅ‘ nem működik, ha a jelérzékelés le van tiltva.Csatornák keresése.Keresés a(z) %6.2f - %6.2f MHz tartományban. Keresés a(z) %s norma használatával. Képmentési üzenetek letiltva.Képmentési üzenetek engedélyezve.Kép mentése: %sCsatorna PAL-ra állításaCsatorna SECAM-ra állításaTeljes képernyÅ‘ pozíciójaRögzítÅ‘kártya hangereje: %d%%.BeállításJel érzékelhetÅ‘Jelérzékelés letiltva.Jelérzékelés engedélyezve.Leállítás %d perc múlva.Leállítás kikapcsolva.Dél-AfrikaSzabványos (720 pixel)Csatornakeresés leállításaAudió norma váltásaTV szabványA TV-szabvány %s lesz újraindításkor.Köszönöm, hogy a tvtime-ot használod. XDS dekódolás be/kiClosed Caption (CC) be/kiFentIsmeretlen nyelvHRC kábel frekvenciák használata.IRC kábel frekvenciák használata.PAL-BG audió dekódolás használata ehhez a csatornához.PAL-DK audió dekódolás használata ehhez a csatornához.PAL-I audió dekódolás használata ehhez a csatornához.Alapértelmezett nyelv használata az XMLTV adatokhoz.Névleges NTSC kábel frekvenciák használata.Ismeretlen (%s) nyelv használata az XMLTV adatokhoz.VideófeldolgozásHangerÅ‘XDS dekódolás letiltva.XDS dekódolás engedélyezve.XMLTV nyelv beállítása: %s (%s).A tvtime nem fut. használat: %s [OPCIÓK]... tvtime-1.0.11/po/en@quot.header0000644000175000017500000000226312522224716013234 00000000000000# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # tvtime-1.0.11/po/Rules-quot0000644000175000017500000000323112522224716012446 00000000000000# Special Makefile rules for English message catalogs with quotation marks. DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot .SUFFIXES: .insert-header .po-update-en en@quot.po-update: en@quot.po-update-en en@boldquot.po-update: en@boldquot.po-update-en .insert-header.po-update-en: @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ ll=`echo $$lang | sed -e 's/@.*//'`; \ LC_ALL=C; export LC_ALL; \ cd $(srcdir); \ if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "creation of $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi en@quot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header en@boldquot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header mostlyclean: mostlyclean-quot mostlyclean-quot: rm -f *.insert-header tvtime-1.0.11/po/fi.gmo0000664000175000017500000005733712663345675011605 00000000000000Þ•ï”K 8_9±™qKŽƒ¡ ·'ÅKís9:­IèK2D~(ÃAìG.1v:¨5ãGMaM¯>ýÖ< I!F]!A¤!æ!ý!'"="Z"r")Œ"¶"Ï"Ö"Ü"á"ñ" ## .#O#6o#¦#­# ¼#Ç#à#ô# $$5$ L$X$l$Š$ $§$(¹$â$%,%2% 9% D%N%T%m%%7£%Û%ï%@&2O&.‚&±&¸&Ï&í&'&'?',R''“'£'¹' Î'7Ü'(.(+G( s((™(:°(ë("ô()) >)!_))Š)$›)$À)#å) **1*J*c*l**#—*%»*á*è* í*D÷* <+F+O+Hh+±+¸+È+Í+ á+ì+.,+/,[,m,3ƒ,·,»,Ä, Ø,æ,-- +-L-S-Z-k-{-‘- –-¢-)«-!Õ- ÷- .".22.e.z.ƒ.”.¥.­.Ã.Ë.#Ü.//8/V/r/x/Š/(©/Ò/ë/0!0A0[0o0 x0 …0‘0 ˜0)£0!Í0(ï031.L1{1™12²1&å1& 232S2q2Ž22¸2Õ2$í233(3C3]3 r3 }3Š3 3²3È3*Ü34$484O4S4d44-ž4-Ì4,ú4&'5%N5+t5 5±5¸5Ï5å566_16y‘7Û 8ƒç8Æk9O2:#‚;,¦;,Ó<T=uU=?Ë=B >LN>?›>-Û>? ?OI?O™?FéB20CKcCT¯C~DBƒDØÆDwŸELFDdF©FÇF"æF G$'GLG)iG“G­G´GºG¿GÔGìGûG3H)LH@vH·H¾H ÒHàH÷H%I4I'LI tI•I©I#¿IãI J J0J&MJtJ2zJ ­J¹JÂJ ÛJæJ-K!.K>PK!K ±K?ÒK>L/QL L(‹L´LÒLéL!üLM0MNM fM$‡M¬M ÇMDÕM&NAN)^NˆN*œN ÇN?èN (O&2OYO^OyO%”O ºO ÄO/ÐO/P-0P^PxP#’P%¶PÜPíP"Q!$Q,FQsQ|Q ƒQY‘QëQ ôQ RURdRkRzRR R«R(ÁR)êRS/S7?S wS‚SŠS¢S ¶S×S!òS$T 9TCTKTjTT T ¨T¶T1ÆT2øT+UHUYU=lUªU¼UÎUàU öUVV(V(7V`V#}V"¡V$ÄV éVóV! W.WNW#dWˆWœW±W#ÑW õWXX&X/X!@X&bX&‰X+°X)ÜX"Y)Y4@YuY,Y$½Y*âY Z.Z?ZZZwZ3Z ÁZËZ)ÞZ[([B[Y[h[†[›[ ³[4À[õ[ \4\ R\_\)p\)š\;Ä\;]9<]+v]5¢]7Ø]^!^)3^]^(}^¦^Â^ØÇÒ ë¨ÐÄ—¹dÔz¸(7p€81-x±Nì^HÊ ÌÍYäÏB,. ªbè›Ñ5M‡K6Fƒ¢ÀG@ß?íˬ'¤¶ÖE° ç …¡‹ŽÞ•»†Úéu4Ý%Á’¾}˜\·e>Q+åÙ~²mckâ«jq|Vy;µR¥OêD´Ušœ!iÕ”ï–h‰_Éãaæ¿ÆPgº×rt³sÅŒ¼:àvo"„IÎwX*n`3¯Ó“$=îT®C]2á#W§<Afl‚™Ü½ÂS ÛŸ&{ÃÈ/0¦ZŠ) ­L£[9‘ž©ˆJ Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -X, --display=DISPLAY Use the given X display to connect to. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -f, --frequencies=NAME The frequency table to use for the tuner. (defaults to us-cable). Valid values are: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (first run tvtime-scanner) -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -k, --slave Disables input handling in tvtime (slave mode). -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:1016:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange NTSC cable modeChange default audio standardChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed caption display failed to initialize, disabled. Closed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.Defaulting to PAL-I audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.South AfricaStandard (720 pixels)Stop channel scanSwitch audio standardTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using PAL-I audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: tvtime 0.9.14 Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2005-11-10 05:25+0200 Last-Translator: Tapio Leipälä Language-Team: Tapio Leipälä Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pääkäyttäjäoikeuksien pudottaminen epäonnistui: %s. tvtime lopetetaan tietoturvariskien välttämiseksi. UTF-8 -tilaan siirtyminen epäonnistui kutsussa bind_text_domain_codeset() (kutsu palautti %s). Tämä saattaa estää viestien näkymisen oikein. Ole hyvä ja tee vikailmoitus tästä osoitteessa %s. Ei viritintä löydetty videotulolle %d. Jos viritin on olemassa, valitse jokin toinen tulo valinnalla --input=. Videokaappauskortin ajuri, %s, ei näytä tukevan kaappausta täydellä kuvataajuudella. Tarkista, että ajurilla on oikeat asetukset, ja että valittuna on oikea videolaite (%s). Videokaappauskortin ajuri, %s, ei tarjoa tarpeeksi puskurimuistia, jotta tvtime pystyisi käsittelemään videota. Tarkista ajurin dokumentaation avulla, pystyykö ohjelmille tarkoitettujen puskurien määrää lisäämään, ja tee tästä vikailmoitus tvtimen virheidenseurantajärjestelmään osoitteessa: %s. Käytettävissä olevat komennot: tvtime on vapaa ohjelmisto, jonka ovat kirjoittaneet Billy Biggs, Doug Bell sekä monet muut. Lisätietoja sekä kopiointi- ja levitysehdot löytyvät sivuiltamme osoitteessa: http://tvtime.net/ tvtime on Copyright © 2001, 2002, 2003 Billy Biggs, Doug Bell, Alexander S. Belov ja Achim Schneider. -A, --nowidescreen 4:3-kuvasuhde. -F, --configfile=TIEDOSTO Ylimääräinen asetustiedosto, josta lukea asetukset. -I, --inputwidth=TARKKUUS Videotulon vaakaresoluutio (oletuksena 720 kuvapistettä). -M, --window Käynnistä tvtime ikkunatilassa. -R, --prioritet=PRI Aseta tvtime-prosessin prioriteetti. -S, --saveoptions Tallenna komentorivivalinnat asetustiedostoon. -X, --display=DISPLAY Yhdistä annettuun X-palvelimeen. -a, --widescreen 16:9-kuvasuhde. -b, --vbidevice=LAITE VBI-laite (oletuksena /dev/vbi0). -c, --channel=KANAVA Vaihda määrätylle kanavalle käynnistyksessä. -f, --frequencies=NIMI Käytettävä virittimen taajuus- ja kanavataulukko (oletuksena us-cable). Hyväksytyt vaihtoehdot: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (oma taulukko; aja tvtime-scanner ensin) -g, --geometry=GEOMETRIA Asettaa videoikkunan mitat ja sijainnin. -h, --help Näytä tämä ohje. -i, --input=NUMERO video4linux-videotulon numero (oletuksena 0). -k, --slave Estää komentojen käsittelyn tvtimessa (slave-tila). -l, --xmltvlanguage=KIELI Käytä valitun kielisiä XMLTV-ohjelmatietoja, mikäli saatavilla. -m, --fullsreen Käynnistä tvtime kokoruututilassa. -n, --norm=STANDARDI Käytettävä TV-standardi. tvtime tukee seuraavia: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N ja PAL-60 (oletuksena NTSC). -s, --showdrops Tulosta tilastot hukatuista kuvista (vianetsintää varten). -t, --xmltv=TIEDOSTO Lue XMLTV-ohjelmatiedot annetusta tiedostosta. -v, --verbose Tulosta vianetsintätiedot stderr:iin. %s Valittu: %d kuvapistettä%s Maksimi (%d kuvapistettä)%s ei ole tvtimen asetustiedosto. %s: Ei voitu varata muistia. %s: Ei voitu avata tiedostoa %s: %s %s: Komento "%s" ei kelpaa. %s: Annetaan komento %s parametrilla %s. %s: Annetaan komento %s. 1,85:116:1016:916:9 + ylipyyhkäisy16:9-kuvasuhde valittu.16:9-kuvasuhdeKäänteinen 2:3-filmisiirtoKäänteinen 2:3-filmisiirto poistettu käytöstä.Käänteinen 2:3-filmisiirto käytössä.Käänteinen 2:3-filmisiirto ei mahdollista tällä TV-normilla.2,35:14:3 + ylipyyhkäisy4:3 keskellä4:3-kuvasuhde valittu.Lisää valittu kanavaKaikki kanavat merkitty aktiivisiksi.Aina päällimmäisenäAina päällimmäisenä pois päältä.Aina päällimmäisenä valittu.Peitä kuvamaskillaKuvataajuuden valintaKuvataajuuden valinta: %.2f kuvaa/sÄänenvoimakkuuden korostusAustraliaAustralia (Optus)Keskimääräinen blit-aika: %.2f ms (%.0f MB/s)Keskimääräinen piirtoaika: %5.2f msPaluuBlit-aikaväli: %4.1f/%4.1f ms (halutaan %4.1f ms)AlareunassaKirkkausMaanpäällinen lähetysKaapeli-TVKaapeli-TV:n kanavat 100+Ei voitu vaihtaa tiedoston %s omistajaa: %s. Ei voitu luoda hakemistoa %s: %s Ei voitu luoda FIFO:a, tvtimen etähallinta pois käytöstä. Ei voitu avata hakemistoa %s: %s Ei voitu avata videolaitetta %s.Ei voida ajaa useaa tvtimen ilmentymää samoilla asetuksilla. Ei voida muuttaa asetustiedostoa tvtimen ollessa käynnissä. Kaappauskortin äänilähdön tasoa ei muuteta.KeskelläVaihda NTSC CATV -taajuusjärjestelmääValitse oletusäänistandardiVaihda kanavataulukkoaVaihda videolähdeKanava merkitty pois käytöstä.Kanavien hallintaKanava merkitty aktiiviseksi.Tarkistetaan %6.2f MHz:Kiina (maanpäällinen lähetys)Värienpoisto poistettu käytöstä.Värienpoisto käytössä.VärienpoistoClosed caption -näytön valmistelu epäonnistui; pois käytöstä. Closed captions poistettu käytöstä.Closed captions käytössä.Kanavan värijärjestelmäksi valittu %s.Käänteiset väritKäänteiset värit poistettu käytöstä.Käänteiset värit käytössä.Asetustiedostoa ei voitu jäsentää. Asetuksia ei tallenneta. KontrastiEi voitu luoda uutta asetustiedostoa. ArvoValittu kanava aktiivisenaValitun suodattimen kuvausMukautettu (aja tvtime-scanner ensin)VähennäOletuskieliPAL B/G -äänikanavapurku valittu oletukseksi.PAL D/K -äänikanavapurku valittu oletukseksi.PAL I -äänikanavapurku valittu oletukseksi.Lomituksen poistosuodatinLomituksen poistosuodatinLomituksen poistosuodattimen kuvausPoista signaalintunnistus käytöstäPois käytöstäHukattuja kuvia: %dOta signaalintunnistus käyttöönVirhe asetustiedostoa luotaessa. Virhe jäsennettäessä asetustiedostoa %s. EurooppaLopetaSulje valikkoUTF-8 - %s -merkistömuunnoksen valmistelu epäonnistui: Virhe kutsussa iconv_open (%s). SuosikitHienoviritysHienoviritysKanava löydetty taajuudelta %6.2f MHz (%.2f - %.2f MHz); lisätään kanavalistaan. RanskaKanavataulukkoTäysiTäysi kuvataajuus: %.2f HzKokoruututilaSijainti kokoruudussaKäsittele vain alemmat kentät: %.2f HzKäsittele vain ylemmät kentät: %.2f HzKorkea (768 kuvapistettä)VaakaresoluutioVaakaresoluutio on %d uudelleenkäynnistyksen jälkeen.VärisävyLisääSignaalitulon asetuksetSignaalinkäsittelyVideotulo: %s tarkkuudella %dx%dMatala (360 kuvapistettä)Kuvamaskin asetus (4:3-kuvakehys)Kuvamaskin asetus (anamorfinen kuva)KeskitasoPeilausPeilaus poistettu käytöstä.Peilaus käytössä.Keskitaso (576 kuvapistettä)ÄänetönUusi SeelantiSeuraavaksi: %sEi VBI-laitetta määriteltynä CC-purkua varten.Ei XML-juurielementtiä löydetty tiedostosta %s. Ei ohjelmatietoja saatavillaEi kuvasignaaliaEi videolähdettäKuvaruutunäytön valmistelu epäonnistui; pois käytöstä. NäyttöasetuksetYlipyyhkäisyalueYlipyyhkäisyalueYlipyyhkäisy: %.1f%%Pysäytetty.Arvioitu suorituskykyVärisäädötVärisäädötVärisäätöjen oletusarvot palautettu.Haluttu XMLTV-tietojen kieliKäsitellään alemmat kuvakentät.Käsitellään kaikki kuvakentät.Käsitellään ylemmät kuvakentät.HiljainenEi kuvakaappausviestejäLuetaan asetukset tiedostosta %s Syötä kanavan %d uusi numero.Vaihda kanavan numeroPalauta kaikki kanavat aktiivisiksiPalauta oletusarvotSovita ikkuna kuvaanKäynnistä uusilla asetuksillaKäynnistetään tvtime uudelleen. Jatketaan.Käynnistetään %s. Käynnissä: %sVenäjäVärikylläisyysTallenna värisäädöt kanavalleTallenna värisäädöt oletusarvoiksiTallenna värisäädöt oletusarvoiksiVärisäädöt tallennettu oletusarvoiksi. Värisäädöt tallennettu kanavalle %d. Tallennetaan komentorivivalinnat. Käynnistä kanavahakuKanavahaku vaatii signaalintunnistuksen toimiakseen.Kanavien haku käynnissä.Haetaan kanavia alueelta %6.2f - %6.2f MHz. Haetaan kanavia TV-standardilla %s. Kuvakaappausviestit poistettu käytöstä.Kuvakaappausviestit käytössä.Kuvakaappaus: %sAseta kanavan normiksi PALAseta kanavan normiksi SECAMSijainti kokoruudussaKaappauskortin äänilähtö asetettu tasolle %d%%.AsetuksetSignaali löydettySignaalintunnistus poistettu käytöstä.Signaalintunnistus käytössä.Uniajastin: %d minuuttia.Uniajastin sammutettu.Etelä-AfrikkaStandardi (720 kuvapistettä)Pysäytä kanavahakuVaihda äänistandardiaTV-standardiTV-standardi on %s uudelleenkäynnistyksen jälkeen.Kiitos ohjelman käytöstä. XDS-tietojen purku päälle/poisClosed captions päälle/poisYläreunassaTuntematon kieliKäytetään HRC-kaapeli-TV:n taajuuksia.Käytetään IRC-kaapeli-TV:n taajuuksia.Käytetään PAL B/G -äänikanavapurkua tällä kanavalla.Käytetään PAL D/K -äänikanavapurkua tällä kanavalla.Käytetään PAL I -äänikanavapurkua tällä kanavalla.Käytetään oletuskieltä XMLTV-tiedoille.Käytetään virallisia NTSC-kaapeli-TV:n taajuuksia.Käytetään tuntematonta kieltä (%s) XMLTV-tiedoille.VideonkäsittelyÄänenvoimakkuusXDS-tietojen purku poistettu käytöstä.XDS-tietojen purku käytössä.XMLTV-tietojen kieleksi valittu %s (%s).tvtime ei ole käynnissä. Käyttö: %s [VALITSIN]... tvtime-1.0.11/po/fi.po0000664000175000017500000011214712663345675011430 00000000000000# Finnish message catalog for tvtime # Copyright (C) 2003 Billy Biggs # This file is distributed under the same license as the tvtime package. # Tapio Leipälä , 2003 msgid "" msgstr "" "Project-Id-Version: tvtime 0.9.14\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2005-11-10 05:25+0200\n" "Last-Translator: Tapio Leipälä \n" "Language-Team: Tapio Leipälä \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "Lomituksen poistosuodatin" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "Paluu" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "Täysi kuvataajuus: %.2f Hz" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "Käsittele vain ylemmät kentät: %.2f Hz" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "Käsittele vain alemmat kentät: %.2f Hz" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "Ylipyyhkäisyalue" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "Peitä kuvamaskilla" #: src/tvtime.c:909 msgid "16:9 output" msgstr "16:9-kuvasuhde" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "Sovita ikkuna kuvaan" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "Kokoruututila" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "Sijainti kokoruudussa" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "Aina päällimmäisenä" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Ei kuvakaappausviestejä" #: src/tvtime.c:968 msgid "Centre" msgstr "Keskellä" #: src/tvtime.c:975 msgid "Top" msgstr "Yläreunassa" #: src/tvtime.c:981 msgid "Bottom" msgstr "Alareunassa" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "Kuvataajuuden valinta" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "Arvioitu suorituskyky" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "Lomituksen poistosuodatin" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "Videotulo: %s tarkkuudella %dx%d" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "Kuvataajuuden valinta: %.2f kuvaa/s" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "Keskimääräinen blit-aika: %.2f ms (%.0f MB/s)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "Keskimääräinen piirtoaika: %5.2f ms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Hukattuja kuvia: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Blit-aikaväli: %4.1f/%4.1f ms (halutaan %4.1f ms)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + ylipyyhkäisy" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1,85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2,35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 keskellä" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "16:10" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + ylipyyhkäisy" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "Kuvamaskin asetus (anamorfinen kuva)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "Kuvamaskin asetus (4:3-kuvakehys)" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: Ei voitu varata muistia.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "Ei voitu avata videolaitetta %s." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " Videokaappauskortin ajuri, %s, ei näytä\n" " tukevan kaappausta täydellä kuvataajuudella. Tarkista, että ajurilla\n" " on oikeat asetukset, ja että valittuna on oikea\n" " videolaite (%s).\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " Videokaappauskortin ajuri, %s, ei tarjoa tarpeeksi\n" " puskurimuistia, jotta tvtime pystyisi käsittelemään videota. Tarkista\n" " ajurin dokumentaation avulla, pystyykö ohjelmille tarkoitettujen\n" " puskurien määrää lisäämään, ja tee tästä vikailmoitus tvtimen\n" " virheidenseurantajärjestelmään osoitteessa: %s.\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "Kuvaruutunäytön valmistelu epäonnistui; pois käytöstä.\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "Ei videolähdettä" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "Ei voitu luoda FIFO:a, tvtimen etähallinta pois käytöstä.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "Closed caption -näytön valmistelu epäonnistui; pois käytöstä.\n" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "Aina päällimmäisenä valittu." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "Aina päällimmäisenä pois päältä." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "16:9-kuvasuhde valittu." #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "4:3-kuvasuhde valittu." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "Kuvakaappausviestit poistettu käytöstä." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "Kuvakaappausviestit käytössä." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "Käänteinen 2:3-filmisiirto poistettu käytöstä." #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "Käänteinen 2:3-filmisiirto käytössä." #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "Käänteinen 2:3-filmisiirto ei mahdollista tällä TV-normilla." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Kuvakaappaus: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "Käynnistetään tvtime uudelleen.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "Kiitos ohjelman käytöstä.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " Pääkäyttäjäoikeuksien pudottaminen epäonnistui: %s.\n" " tvtime lopetetaan tietoturvariskien välttämiseksi.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "Käynnistetään %s.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "Arvo" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "Ei ohjelmatietoja saatavilla" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "Seuraavaksi: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "Vaihda kanavan numero" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "Valittu kanava aktiivisena" #: src/commands.c:346 msgid "Stop channel scan" msgstr "Pysäytä kanavahaku" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "Käynnistä kanavahaku" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "Palauta kaikki kanavat aktiivisiksi" #: src/commands.c:364 msgid "Finetune current channel" msgstr "Hienoviritys" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "Vaihda NTSC CATV -taajuusjärjestelmää" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "Aseta kanavan normiksi SECAM" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "Aseta kanavan normiksi PAL" #: src/commands.c:393 msgid "Switch audio standard" msgstr "Vaihda äänistandardia" #: src/commands.c:400 msgid "Change frequency table" msgstr "Vaihda kanavataulukkoa" #: src/commands.c:406 msgid "Disable signal detection" msgstr "Poista signaalintunnistus käytöstä" #: src/commands.c:407 msgid "Enable signal detection" msgstr "Ota signaalintunnistus käyttöön" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "Oletuskieli" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "Tuntematon kieli" #: src/commands.c:623 msgid "Change default audio standard" msgstr "Valitse oletusäänistandardi" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "Äänenvoimakkuuden korostus" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "TV-standardi" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "Vaakaresoluutio" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Kaapeli-TV" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Maanpäällinen lähetys" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Kaapeli-TV:n kanavat 100+" #: src/commands.c:709 msgid "Europe" msgstr "Eurooppa" #: src/commands.c:717 msgid "Russia" msgstr "Venäjä" #: src/commands.c:724 msgid "France" msgstr "Ranska" #: src/commands.c:731 msgid "Australia" msgstr "Australia" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "Australia (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "Uusi Seelanti" #: src/commands.c:752 msgid "China Broadcast" msgstr "Kiina (maanpäällinen lähetys)" #: src/commands.c:759 msgid "South Africa" msgstr "Etelä-Afrikka" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "Mukautettu (aja tvtime-scanner ensin)" #: src/commands.c:783 msgid "Disabled" msgstr "Pois käytöstä" #: src/commands.c:789 msgid "Quiet" msgstr "Hiljainen" #: src/commands.c:795 msgid "Medium" msgstr "Keskitaso" #: src/commands.c:801 msgid "Full" msgstr "Täysi" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s Valittu: %d kuvapistettä" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "Matala (360 kuvapistettä)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "Keskitaso (576 kuvapistettä)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Standardi (720 kuvapistettä)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Korkea (768 kuvapistettä)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s Maksimi (%d kuvapistettä)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "Käynnistä uusilla asetuksilla" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "Lisää" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "Vähennä" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "Käänteinen 2:3-filmisiirto" #: src/commands.c:962 msgid "Colour invert" msgstr "Käänteiset värit" #: src/commands.c:970 msgid "Mirror" msgstr "Peilaus" #: src/commands.c:978 msgid "Chroma killer" msgstr "Värienpoisto" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "Asetukset" #: src/commands.c:1131 msgid "Last Channel" msgstr "" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "Kanavien hallinta" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "Signaalitulon asetukset" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "Värisäädöt" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Videonkäsittely" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Näyttöasetukset" #: src/commands.c:1161 msgid "Quit" msgstr "" #: src/commands.c:1192 msgid "Exit menu" msgstr "Sulje valikko" #: src/commands.c:1221 msgid "Frequency table" msgstr "Kanavataulukko" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "Hienoviritys" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "Vaihda videolähde" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "Closed captions päälle/pois" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "XDS-tietojen purku päälle/pois" #: src/commands.c:1392 msgid "Overscan" msgstr "Ylipyyhkäisyalue" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Sijainti kokoruudussa" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "Valitun suodattimen kuvaus" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Signaalinkäsittely" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "Lomituksen poistosuodattimen kuvaus" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Värisäädöt" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "Kirkkaus" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "Kontrasti" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "Värikylläisyys" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Värisävy" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "Tallenna värisäädöt oletusarvoiksi" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "Palauta oletusarvot" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "Tallenna värisäädöt oletusarvoiksi" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "Tallenna värisäädöt kanavalle" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "Haluttu XMLTV-tietojen kieli" #: src/commands.c:1825 msgid "Favorites" msgstr "Suosikit" #: src/commands.c:1832 msgid "Add current channel" msgstr "Lisää valittu kanava" #: src/commands.c:1834 msgid "Exit" msgstr "Lopeta" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Uniajastin: %d minuuttia." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "Uniajastin sammutettu." #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "Käytetään PAL I -äänikanavapurkua tällä kanavalla." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "Käytetään PAL D/K -äänikanavapurkua tällä kanavalla." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "Käytetään PAL B/G -äänikanavapurkua tällä kanavalla." #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "PAL I -äänikanavapurku valittu oletukseksi." #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "PAL D/K -äänikanavapurku valittu oletukseksi." #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "PAL B/G -äänikanavapurku valittu oletukseksi." #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "Kanava merkitty aktiiviseksi." #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "Kanava merkitty pois käytöstä." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "Kaappauskortin äänilähdön tasoa ei muuteta." #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "Kaappauskortin äänilähtö asetettu tasolle %d%%." #: src/commands.c:2380 msgid "Processing every input field." msgstr "Käsitellään kaikki kuvakentät." #: src/commands.c:2383 msgid "Processing every top field." msgstr "Käsitellään ylemmät kuvakentät." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "Käsitellään alemmat kuvakentät." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "Vaakaresoluutio on %d uudelleenkäynnistyksen jälkeen." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "TV-standardi on %s uudelleenkäynnistyksen jälkeen." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "Käytetään oletuskieltä XMLTV-tiedoille." #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "Käytetään tuntematonta kieltä (%s) XMLTV-tiedoille." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "XMLTV-tietojen kieleksi valittu %s (%s)." #: src/commands.c:2527 msgid "All channels re-activated." msgstr "Kaikki kanavat merkitty aktiivisiksi." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "Syötä kanavan %d uusi numero." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "Kanavahaku vaatii signaalintunnistuksen toimiakseen." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "Kanavien haku käynnissä." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "Closed captions poistettu käytöstä." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "Closed captions käytössä." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "Ei VBI-laitetta määriteltynä CC-purkua varten." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "Kanavan värijärjestelmäksi valittu %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "Käynnissä: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "Signaalintunnistus käytössä." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "Signaalintunnistus poistettu käytöstä." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "XDS-tietojen purku käytössä." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "XDS-tietojen purku poistettu käytöstä." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "Käänteiset värit käytössä." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "Käänteiset värit poistettu käytöstä." #: src/commands.c:2822 msgid "Mirror enabled." msgstr "Peilaus käytössä." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "Peilaus poistettu käytöstä." #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "Värienpoisto käytössä." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "Värienpoisto poistettu käytöstä." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "Ylipyyhkäisy: %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "Värisäätöjen oletusarvot palautettu." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "Käytetään virallisia NTSC-kaapeli-TV:n taajuuksia." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "Käytetään IRC-kaapeli-TV:n taajuuksia." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "Käytetään HRC-kaapeli-TV:n taajuuksia." #: src/commands.c:3029 msgid "Volume" msgstr "Äänenvoimakkuus" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "Värisäädöt tallennettu oletusarvoiksi.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "Värisäädöt tallennettu kanavalle %d.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Pysäytetty." #: src/commands.c:3310 msgid "Resumed." msgstr "Jatketaan." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "Virhe jäsennettäessä asetustiedostoa %s.\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "Ei XML-juurielementtiä löydetty tiedostosta %s.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s ei ole tvtimen asetustiedosto.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "Asetustiedostoa ei voitu jäsentää. Asetuksia ei tallenneta.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "Ei voitu luoda uutta asetustiedostoa.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "Virhe asetustiedostoa luotaessa.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "Ei voitu vaihtaa tiedoston %s omistajaa: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "tvtime on vapaa ohjelmisto, jonka ovat kirjoittaneet Billy Biggs,\n" "Doug Bell sekä monet muut. Lisätietoja sekä kopiointi- ja levitysehdot\n" "löytyvät sivuiltamme osoitteessa: http://tvtime.net/\n" "\n" "tvtime on Copyright © 2001, 2002, 2003 Billy Biggs, Doug Bell,\n" "Alexander S. Belov ja Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "Käyttö: %s [VALITSIN]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen 16:9-kuvasuhde.\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen 4:3-kuvasuhde.\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr " -b, --vbidevice=LAITE VBI-laite (oletuksena /dev/vbi0).\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr "" " -c, --channel=KANAVA Vaihda määrätylle kanavalle käynnistyksessä.\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 #, fuzzy msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr "" " -d, --device=LAITE video4linux-laite (oletuksena /dev/video0).\n" #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=NIMI Käytettävä virittimen taajuus- ja\n" " kanavataulukko (oletuksena us-cable).\n" "\n" " Hyväksytyt vaihtoehdot:\n" " us-cable \n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (oma taulukko; aja tvtime-scanner " "ensin)\n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" " -F, --configfile=TIEDOSTO Ylimääräinen asetustiedosto, josta lukea " "asetukset.\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help Näytä tämä ohje.\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr "" " -g, --geometry=GEOMETRIA Asettaa videoikkunan mitat ja sijainnin.\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr "" " -i, --input=NUMERO video4linux-videotulon numero (oletuksena 0).\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=TARKKUUS Videotulon vaakaresoluutio\n" " (oletuksena 720 kuvapistettä).\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" " -k, --slave Estää komentojen käsittelyn tvtimessa (slave-" "tila).\n" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr " -m, --fullsreen Käynnistä tvtime kokoruututilassa.\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 #, fuzzy msgid " -l, --borderless Start tvtime without a window border.\n" msgstr " -M, --window Käynnistä tvtime ikkunatilassa.\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window Käynnistä tvtime ikkunatilassa.\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=STANDARDI Käytettävä TV-standardi. tvtime tukee " "seuraavia:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N ja PAL-60 (oletuksena NTSC).\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops Tulosta tilastot hukatuista kuvista\n" " (vianetsintää varten).\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" " -S, --saveoptions Tallenna komentorivivalinnat asetustiedostoon.\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" " -t, --xmltv=TIEDOSTO Lue XMLTV-ohjelmatiedot annetusta tiedostosta.\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=KIELI Käytä valitun kielisiä XMLTV-ohjelmatietoja,\n" " mikäli saatavilla.\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr " -v, --verbose Tulosta vianetsintätiedot stderr:iin.\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr " -X, --display=DISPLAY Yhdistä annettuun X-palvelimeen.\n" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 #, fuzzy msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer=LAITE[:KANAVA] Ohjattava mikserilaite ja äänikanava\n" " (oletuksena /dev/mixer:line).\n" "\n" " Hyväksytyt kanavavaihtoehdot:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr " -R, --prioritet=PRI Aseta tvtime-prosessin prioriteetti.\n" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "Luetaan asetukset tiedostosta %s\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "Ei voida ajaa useaa tvtimen ilmentymää samoilla asetuksilla.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "Tallennetaan komentorivivalinnat.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "Ei voida muuttaa asetustiedostoa tvtimen ollessa käynnissä.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "Ei kuvasignaalia" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "Äänetön" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "Ei voitu luoda hakemistoa %s: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "Ei voitu avata hakemistoa %s: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" "UTF-8 - %s -merkistömuunnoksen valmistelu epäonnistui:\n" "Virhe kutsussa iconv_open (%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " UTF-8 -tilaan siirtyminen epäonnistui kutsussa " "bind_text_domain_codeset()\n" " (kutsu palautti %s). Tämä saattaa estää\n" " viestien näkymisen oikein. Ole hyvä ja tee vikailmoitus tästä\n" " osoitteessa %s.\n" "\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "Käytettävissä olevat komennot:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "tvtime ei ole käynnissä.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: Ei voitu avata tiedostoa %s: %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: Komento \"%s\" ei kelpaa.\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: Annetaan komento %s parametrilla %s.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: Annetaan komento %s.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "Haetaan kanavia TV-standardilla %s.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " Ei viritintä löydetty videotulolle %d. Jos viritin on\n" " olemassa, valitse jokin toinen tulo valinnalla --input=.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "Haetaan kanavia alueelta %6.2f - %6.2f MHz.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "Tarkistetaan %6.2f MHz:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "Signaali löydetty" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "Kanava löydetty taajuudelta %6.2f MHz (%.2f - %.2f MHz);\n" "lisätään kanavalistaan.\n" #~ msgid "Preferred audio mode" #~ msgstr "Äänitilan valinta" #~ msgid "Mono" #~ msgstr "Mono" #~ msgid "Stereo" #~ msgstr "Stereo" #~ msgid "SAP" #~ msgstr "SAP" #~ msgid "Primary Language" #~ msgstr "Ensisijainen kieli" #~ msgid "Secondary Language" #~ msgstr "Toissijainen kieli" #~ msgid "" #~ "\n" #~ " You are using the bttv driver, but have not configured enough\n" #~ " buffers for tvtime to process the video optimally. This is\n" #~ " true by default with bttv in kernels before 2.4.21. Please\n" #~ " set the option gbuffers=4 when loading bttv. For more\n" #~ " information see our support page at %s\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Käytössä on bttv-ajuri, mutta sille ei ole asetettu riittävää\n" #~ " puskurien määrää, jotta tvtimen videonkäsittely toimisi " #~ "optimaalisesti.\n" #~ " Tämä on tavallista bttv:lle kerneleissä ennen versiota 2.4.21.\n" #~ " Lisää bttv-moduulille sen latausvaiheessa parametri \"gbuffers=4\"\n" #~ " ongelmien välttämiseksi. Lisätietoja saa tukisivultamme osoitteessa:\n" #~ " %s\n" #~ "\n" tvtime-1.0.11/po/de.gmo0000664000175000017500000005632712663345675011575 00000000000000Þ•ï”K 8_9±™qKŽƒ¡ ·'ÅKís9:­IèK2D~(ÃAìG.1v:¨5ãGMaM¯>ýÖ< I!F]!A¤!æ!ý!'"="Z"r")Œ"¶"Ï"Ö"Ü"á"ñ" ## .#O#6o#¦#­# ¼#Ç#à#ô# $$5$ L$X$l$Š$ $§$(¹$â$%,%2% 9% D%N%T%m%%7£%Û%ï%@&2O&.‚&±&¸&Ï&í&'&'?',R''“'£'¹' Î'7Ü'(.(+G( s((™(:°(ë("ô()) >)!_))Š)$›)$À)#å) **1*J*c*l**#—*%»*á*è* í*D÷* <+F+O+Hh+±+¸+È+Í+ á+ì+.,+/,[,m,3ƒ,·,»,Ä, Ø,æ,-- +-L-S-Z-k-{-‘- –-¢-)«-!Õ- ÷- .".22.e.z.ƒ.”.¥.­.Ã.Ë.#Ü.//8/V/r/x/Š/(©/Ò/ë/0!0A0[0o0 x0 …0‘0 ˜0)£0!Í0(ï031.L1{1™12²1&å1& 232S2q2Ž22¸2Õ2$í233(3C3]3 r3 }3Š3 3²3È3*Ü34$484O4S4d44-ž4-Ì4,ú4&'5%N5+t5 5±5¸5Ï5å566€16p²7Æ#8xê8ßc9C:Z;0s;(¤<HÍ<s=1Š=H¼=t>Cz>)¾>?è>E(?'n?4–B8ËBECsJCG¾C7DÍ>DM EnZEBÉE F(F)DF(nF—F¶F'ÖFþFGG#G(G8GHGXG#oG!“GAµG÷GþG HH*HCH]H!rH”H´HÊH'ãH I I+I+>I#jIŽI/–IÆI ÌI×IßIåI+J/J4JJJ$šJT¿JIK9^K˜KŸK¯KÎKíK#L%L%>LdLvL‹L§LÁL.ÑLMM&.MUMfM„MJ MëM)ôMN'N'BN5jN  N«N.»N.êN-OGOVOrO’O ®OºOÔO.îO/PMP TP^PNnP ½PÇP×PMçP 5Q@QPQUQsQ|Q/ŽQ.¾QíQR;RVR^RgR vR ƒR¤R½RÕRôRûRS#S@SXS ^S iS9tS'®S&ÖS ýS T4TTTdTTšT¹TÀTÛTàT.òT#!U EUfUU¡U §UÈU(ãU! V.V/FVvV"ŽV±V ÅV ÑV ÝVèV ñV(üV.%WTW5tW-ªW!ØWúW. XQ+åÙ~²mckâ«jq|Vy;µR¥OêD´Ušœ!iÕ”ï–h‰_Éãaæ¿ÆPgº×rt³sÅŒ¼:àvo"„IÎwX*n`3¯Ó“$=îT®C]2á#W§<Afl‚™Ü½ÂS ÛŸ&{ÃÈ/0¦ZŠ) ­L£[9‘ž©ˆJ Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -X, --display=DISPLAY Use the given X display to connect to. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -f, --frequencies=NAME The frequency table to use for the tuner. (defaults to us-cable). Valid values are: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (first run tvtime-scanner) -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -k, --slave Disables input handling in tvtime (slave mode). -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:1016:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange NTSC cable modeChange default audio standardChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed caption display failed to initialize, disabled. Closed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.Defaulting to PAL-I audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.South AfricaStandard (720 pixels)Stop channel scanSwitch audio standardTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using PAL-I audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: tvtime 0.9.14 Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2015-10-17 12:15-0300 Last-Translator: Mauro Carvalho Chehab Language-Team: German Language: de MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.5 Ablegen der root-Rechte fehlgeschlagen: %s. tvtime wird beendet, um Sicherheitsprobleme zu vermeiden. Fehler beim Wechsel in den UTF-8-Modus durch bind_textdomain_codeset() (Grund: %s). Hierdurch können Meldungen verkehrt dargestellt werden! Bitten melden Sie diesen Fehler an %s. Kein Tuner bei Signalquelle %d gefunden. Bitte verwenden Sie eine andere Signalquelle über --input=. Ihr TV-Kartentreiber (%s) unterstützt kein Auslesen des TV-Signals mit voller Bildfrequenz. Bitte überprüfen Sie, ob der Treiber falsch konfiguriert ist oder Sie das falsche Gerät gewählt haben (%s). Ihr TV-Kartentreiber (%s) stellt nicht ausreichend Pufferspeicher für tvtime zur Verfügung. Bitte sehen Sie in der Dokumentation Ihrer Treiber nach, ob Sie die Anzahl der Puffer- speicher erhöhen können und melden Sie dies dem tvtime-Bugtracker auf %s Verfügbare Kommandos: tvtime ist freie Software, geschrieben von Billy Biggs, Doug Bell und vielen anderen. Genauere Angaben und Bedingungen für die Weitergabe finden Sie auf http://tvtime.net/. Copyright (C) 2001, 2002, 2003: Billy Biggs, Doug Bell, Alexander S. Belov und Achim Schneider. -A, --nowidescreen 4:3-Modus. -F, --configfile=FILE Zusätzliche Konfigurationsdatei einlesen. -I, --inputwidth=BREITE Horizontale Signalauflösung (Standard: 720 Bildpunkte). -M, --window Im Fenster starten. -R, --priority=PRI Priorität für den tvtime-Prozeß setzen. -S, --saveoptions Kommandozeilenparameter in Konfigurationsdatei speichern. -X, --display=DISPLAY Auf angegebenem X-Display darstellen. -a, --widescreen 16:9-Modus. -b, --vbidevice=DEVICE VBI-Gerät (Standard: /dev/vbi0). -c, --channel=KANAL Gewählten Kanal beim Start aktivieren. -f, --frequencies=NAME Frequenztabelle für TV-Tuner. (Standard: us-cable). Zulässige Werte: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (erst tvtime-scanner starten) -g, --geometry=GEOMETRY Fenstergröße setzen. -h, --help Diesen Hilfetext anzeigen. -i, --input=NUMMER video4linux-Signalnummer (Standard: 0). -k, --slave Signalverarbeitung in tvtime deaktivieren (Slave-Modus). -l, --xmltvlanguage=LANG XMLTV-Daten in dieser Sprache bevorzugen. -m, --fullscreen Im Vollbildmodus starten. -n, --norm=NORM Fernsehnorm festlegen. Zugelassene Werte: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (Standard: NTSC). -s, --showdrops Statistik über übersprungene Bilder anzeigen. -t, --xmltv=DATEI XMLTV-Programminformationen aus dieser Datei lesen. -v, --verbose Debug-Meldungen auf stderr ausgeben. %s Momentan: %d Bildpunkte%s Maximal (%d Bildpunkte)%s ist keine tvtime-Konfigurationsdatei. %s: Speicheranforderung fehlgeschlagen. %s: Kann %s nicht öffnen: %s %s: Ungültiges Kommandos '%s' %s: Sende Kommando %s mit Argument %s. %s: Sende Kommando %s. 1.85:116:1016:916:9 + OverscanBildformat 16:9Bildformat 16:92-3 pulldown inversion2-3 pulldown inversion deaktiviert.2-3 pulldown inversion aktiviert.2-3 pulldown inversion ist bei dieser Fernsehnorm nicht möglich.2.35:14:3 + Overscan4:3 zentriertBildformat 4:3Diesen Kanal hinzufügenAlle Kanäle reaktiviert.Immer im VordergrundImmer im Vordergrund deaktiviert.Immer im Vordergrund aktiviert.Bildränder abblendenAngestrebte BildfrequenzAngestrebte Bildfrequenz: %.2f Bilder/sLautstärke steigernAustralienAustralien (Optus)Mittlere Darstelldauer: %.2f ms (%.0f MB/s)Mittlere Berechnungsdauer: %5.2f msZurückBildintervall: %4.1f/%4.1f ms (ideal: %4.1f ms)UntenHelligkeitAntenneKabelKabel inkl. Kanäle über 100Kann Eigentümer von %s nicht ändern: %s. Kann %s nicht anlegen: %s Kann FIFO nicht öffnen, Fernsteuerung deaktiviert. Kann %s nicht öffnen: %s Kann Signalquelle nicht öffnen: %s.Es ist nicht möglich, zwei tvtime-Instanzen mit gleicher Konfiguration zu starten. Schreiben der Konfigurationsdatei nicht möglich, solange tvtime läuft. Lautstärke der TV-Karte wird nicht durch tvtime gesetzt.MittigNTSC-KabelmodusVoreingestellter AudiostandardAndere Frequenztabelle wählenVideoquelle wählenAus Liste aktiver Kanäle entfernt.Senderplätze einstellenIn Liste aktiver Kanäle aufgenommen.Prüfe %6.2f MHz:Chinesicher RundfunkFarbentfernung deaktiviert.Farbentfernung aktiviert.Farbe entfernenInitialisieren der Untertitel fehlgeschlagen. Untertitel deaktiviert.Untertitel aktiviert.Farbdekodierung für diesen Kanal: %s.FarbinvertierungFarbinvertierung deaktiviert.Farbinvertierung aktiviert.Konfigurationsdatei nicht lesbar, Einstellungen werden nicht gespeichert. KontrastKann Konfigurationsdatei nicht erzeugen. MomentanIn Liste aktiver ProgrammeBeschreibung des aktiven De-InterlacersBenutzerdefiniert (Starten Sie vorher tvtime-scanner)VerringernStandardsprachePAL-BG Audiodekodierung als Standard gewählt.PAL-DK Audiodekodierung als Standard gewählt.PAL-I Audiodekodierung als Standard gewählt.De-InterlacingDe-Interlacer konfigurierenBeschreibung des De-InterlacersSignalprüfung deaktivierenDeaktiviertÜbersprungene Bilder: %dSignalprüfung aktivierenFehler beim Erzeugen der Konfigurationsdatei. Fehler beim Lesen der Konfigurationsdatei: %s. EuropaVerlassenMenü verlassenKann UTF-8-%s-Konverter nicht initialisieren: iconv_open fehlgeschlagen (%s). FavoritenFeineinstellungFeineinstellungKanal auf %6.2f MHz (%.2f - %.2f MHz) gefunden, zur Kanalliste hinzugefügt. FrankreichFrequenztabelleVollVolle Bildrate: %.2f Bilder/sVollbildVollbild-PositionHalbe Bildrate, unteres Halbbild: %.2f Bilder/sHalbe Bildrate, oberes Halbbild: %.2f Bilder/sHoch (768 Bildpunkte)Horizontale AuflösungHorizontale Auflösung beim nächsten Start: %d Bildpunkte.FarbtonErhöhenEingangssignalSignalfilterSignal: %s mit %dx%d BildpunktenNiedrig (360 Bildpunkte)Bildblende (4:3 Signal)Bildblende (anamorphes Signal)MittelSpiegelnGespiegeltes Bild deaktiviert.Gespiegeltes Bild aktiviert.Mittel (576 Bildpunkte)StummNeuseelandDanach: %sKein VBI-Gerät für Untertitel-Dekodierung konfiguriert.Kein XML-Wurzelelement in %s gefunden. Keine Programminformationen verfügbarKein SignalKeine TV-SignalquelleInitialisieren des Bildschirmmenüs fehlgeschlagen. BilddarstellungÜberstehender BildbereichÜberstehender BildbereichÜberstehender Bereich: %.1f%%Pause.Geschätzte LeistungsdatenBildBildeinstellungenBildeinstellungen auf Standard zurückgesetzt.Bevorzugte Sprache für XMLTV-DatenNur untere Halbbilder verwenden.Alle Halbbilder verwenden.Nur obere Halbbilder verwenden.RuhigKeine Meldung bei BildschirmfotoLese Konfiguration aus %s Neuen Senderplatz für Kanal %d wählen.Auf neuen Senderplatz verschiebenAlle Kanäle aktivierenAuf globale Standardeinstellungen zurücksetzenFenstergröße anpassenMit dieser Einstellung neu startenStarte tvtime neu. Fortsetzen.Starte %s. Starte: %sRusslandSättigungAls Standard für diesen Kanal speichernMomentane Einstellungen als Standard speichernAls globalen Standard speichernBildeinstellungen als globalen Standard gespeichert. Bildeinstellungen für Kanal %d gespeichert. Schreibe Kommandozeilenoptionen. Kanalsuche startenKanalsuche ohne Signalprüfung nicht möglich.Suche nach aktiven Kanälen.Kanalsuche von %6.2f MHz bis %6.2fMHz. Kanalsuche mit %s-Fernsehnorm. Meldung bei Bildschirmfoto deaktiviert.Meldung bei Bildschirmfoto aktiviert.Bildschirmfoto: %sAuf PAL umstellenAuf SECAM umstellenVollbild-PositionLautstärke der TV-Karte auf %d%% eingestellt.EinstellungenSignal vorhandenSignalprüfung deaktiviert.Signalprüfung aktiviert.Schlafmodus in %d Minuten.Schlafmodus deaktiviert.SüdafrikaStandard (720 Bildpunkte)Kanalsuche abbrechenAudiostandard wechselnFernsehnormFernsehnorm beim nächsten Start: %s.Danke, daß Sie tvtime gewählt haben. XDS-Dekodierung ein/ausUntertitel ein/ausObenUnbekannte SpracheVerwende HRC-Kabelfrequenzen.Verwende IRC-Kabelfrequenzen.PAL-BG Audiodekodierung für diesen Kanal gewählt.PAL-DK Audiodekodierung für diesen Kanal gewählt.PAL-I Audiodekodierung für diesen Kanal gewählt.Verwende XMLTV-Daten in Standardsprache.Verwende NTSC-Kabelfrequenzen.Verwende XMLTV-Daten in unbekannter Sprace (%s).BildverarbeitungLautstärkeXDS-Dekodierung deaktiviert.XDS-Dekodierung aktiviert.Sprache für XMLTV-Daten: %s (%s).tvtime läuft nicht. Aufruf: %s [OPTION]... tvtime-1.0.11/po/remove-potcdate.sin0000664000175000017500000000066012354244126014261 00000000000000# Sed script that remove the POT-Creation-Date line in the header entry # from a POT file. # # The distinction between the first and the following occurrences of the # pattern is achieved by looking at the hold space. /^"POT-Creation-Date: .*"$/{ x # Test if the hold space is empty. s/P/P/ ta # Yes it was empty. First occurrence. Remove the line. g d bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } tvtime-1.0.11/po/ko.po0000664000175000017500000010402412663345675011436 00000000000000# TVTIME Korean Translation. # Copyright (C) 1999-2000 Free Software Foundation, Inc. # Michael Kim , 2004. # msgid "" msgstr "" "Project-Id-Version: tvtime\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2004-08-22 04:21 +0900\n" "Last-Translator: Michael Kim \n" "Language-Team: Korean Translation Team \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "Deinterlacer 설정" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "뒤로" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "최대 ì†ë„: %.2f fps" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "절반 ì†ë„, deinterlace top fields: %.2f fps" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "절반 ì†ë„, deinterlace bottom fields: %.2f fps" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "주사율 초과 설정" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "화면 비율" #: src/tvtime.c:909 msgid "16:9 output" msgstr "16:9 출력" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "전체화면" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "전체화면 위치 설정" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "í•­ìƒ ë§¨ 위ì—" # Missing String. #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "화면잡기 메세지 설정" #: src/tvtime.c:968 msgid "Centre" msgstr "가운ë°" #: src/tvtime.c:975 msgid "Top" msgstr "위" #: src/tvtime.c:981 msgid "Bottom" msgstr "아래" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "시ë„í•  프레임 ì†ë„" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "성능 í‰ê°€" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "ìž…ë ¥: %s %dx%d 픽셀" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "ì ìš©í•  프레임 ì†ë„: %.2f fps" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "í‰ê·  blit 시간: %.2f ms (%.0f MB/sec)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "í‰ê·  ë Œë”ë§ ì‹œê°„: %5.2f ms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "무시한 프레임: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Blit 공간: %4.1f/%4.1f ms (want %4.1f ms)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + 초과주사" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 가운ë°" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + 초과주사" #: src/tvtime.c:1099 msgid "16:9" msgstr "" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "비율 설정 (ì¼ê·¸ëŸ¬ì§„ ìž…ë ¥)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "비율 설정 (4:3 ìž…ë ¥)" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: 메모리를 할당 í•  수 ì—†ìŒ.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "%s 장치를 ì—´ 수 ì—†ìŒ." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " ë‹¹ì‹ ì˜ ë“œë¼ì´ë²„ì¸ %s(ì€)는 최대 프레임 í¬ì°© ê¸°ëŠ¥ì„ ì§€ì› í•˜ì§€\n" " 않습니다. 만약 잘못 설정ë˜ì–´ 있거나, ìž˜ëª»ëœ ìž¥ì¹˜ë¥¼ ì„ íƒ í–ˆë‹¤ë©´,\n" " 설정 í™”ì¼ì„ 수정 í•´ 주십시오.\n" " 현재 ì„¤ì •ëœ ìž¥ì¹˜ëŠ” %s 입니다.\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " ë‹¹ì‹ ì˜ ë“œë¼ì´ë²„ì¸ %s(ì€)는, tvtimeì´ ìµœì í™” 할만한\n" " 메모리를 할당하지 않았습니다. ë‹¹ì‹ ì˜ ë“œë¼ì´ë²„ì— ê´€í•œ\n" " 문서를 보시고 ì‘용프로그램ì—서 사용할 메모리를 설정 í•´ 주시고,\n" " ì´ê²ƒì„ tvtime 벌레 ìž¡ê¸°ì¸ %s ì— ì•Œë ¤ 주십시오.\n" "\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "OSD 초기화 실패, 사용하지 않습니다.\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "비디오 ìž…ë ¥ì´ ì—†ìŠµë‹ˆë‹¤." #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "" "ìž…ì¶œë ¥ì„ ìƒì„±í•  수 없으므로, tvtimeì˜ ì›ê²© ì¡°ì •ì€ ë¹„í™œì„±í™”ë˜ì—ˆìŠµë‹ˆë‹¤.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "í•­ìƒ ì œì¼ ìœ„ì— ìœ„ì¹˜í•©ë‹ˆë‹¤." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "최ìƒìœ„ 위치를 í•´ì œ 합니다." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "16:9 ì¶œë ¥ì´ í™œì„±í™” ë˜ì—ˆìŠµë‹ˆë‹¤." #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "4:3 ì¶œë ¥ì´ í™œì„±í™” ë˜ì—ˆìŠµë‹ˆë‹¤." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "화면잡게 메세지 표시안함." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "화면잡게 메세지 표시." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "" #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "" #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "" #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "화면저장: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "tvtimeì„ ìž¬ì‹œìž‘ 합니다.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "tvtimeì„ ì´ìš©í•´ 주셔서 ê°ì‚¬í•©ë‹ˆë‹¤.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " root 권한ì—서 전환 실패: %s.\n" " tvtimeì€ ë³´ì•ˆë¬¸ì œë¡œ ì¸í•´ 지금 ì¢…ë£Œë  ê²ƒìž…ë‹ˆë‹¤.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "%s(ì„)를 실행합니다.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "현재" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "사용가능한 프로그램 ì •ë³´ê°€ 없습니다." #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "다ìŒ: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "현재 채ë„ì„ ë‹¤ì‹œ 지정" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "현재 채ë„ì„ í™œì„±ëª©ë¡ì— 추가" #: src/commands.c:346 msgid "Stop channel scan" msgstr "ì±„ë„ ê²€ìƒ‰ì„ ì¤‘ì§€" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "신호로서 ì±„ë„ ê²€ìƒ‰" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "모든 í™œì„±í™”ëœ ì±„ë„ì„ ì§€ì›€" #: src/commands.c:364 msgid "Finetune current channel" msgstr "현재 ì±„ë„ ë¯¸ì„¸ ì¡°ì •" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "NTSC ì¼€ì´ë¸”로 전환" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "현재 ì²´ë„ì„ SECAM으로 전환" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "현재 채ë„ì„ PAL로 전환" #: src/commands.c:393 #, fuzzy msgid "Switch audio standard" msgstr "TV 표준" #: src/commands.c:400 msgid "Change frequency table" msgstr "주파수 í…Œì´ë¸” 변경" #: src/commands.c:406 msgid "Disable signal detection" msgstr "신호 ê²€ì¶œì„ ë¹„í™œì„±" #: src/commands.c:407 msgid "Enable signal detection" msgstr "신호 검출 활성" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "" #: src/commands.c:623 msgid "Change default audio standard" msgstr "" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "소리 ì¦í­" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "TV 표준" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "ìˆ˜í‰ í•´ìƒë„" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "ì¼€ì´ë¸”" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "공중파" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "100ê°œ ì´ìƒì˜ 채ë„ì„ ê°€ì§„ ì¼€ì´ë¸”" #: src/commands.c:709 msgid "Europe" msgstr "유럽" #: src/commands.c:717 msgid "Russia" msgstr "러시아" #: src/commands.c:724 msgid "France" msgstr "프랑스" #: src/commands.c:731 msgid "Australia" msgstr "호주" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "호주 (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "뉴질랜드" #: src/commands.c:752 msgid "China Broadcast" msgstr "중국 공중파" #: src/commands.c:759 msgid "South Africa" msgstr "" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "ì‚¬ìš©ìž (먼저 tvtime-scaner를 실행)" #: src/commands.c:783 msgid "Disabled" msgstr "사용안함" #: src/commands.c:789 msgid "Quiet" msgstr "조용히" #: src/commands.c:795 msgid "Medium" msgstr "보통" #: src/commands.c:801 msgid "Full" msgstr "최대" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s 현재: %d 픽셀" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "저화질 (360 픽셀)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "중간화질 (576 픽셀)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "표준화질 (720 픽셀)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "고화질 (768 픽셀)" #: src/commands.c:848 #, fuzzy, c-format msgid "%s Maximum (%d pixels)" msgstr "%s 현재: %d 픽셀" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "새로운 설정으로 재 시작" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "ì¦ê°€" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "ê°ì†Œ" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "" #: src/commands.c:962 msgid "Colour invert" msgstr "ìŒì˜" #: src/commands.c:970 msgid "Mirror" msgstr "거울효과" #: src/commands.c:978 msgid "Chroma killer" msgstr "í‘ë°±" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "설정" #: src/commands.c:1131 msgid "Last Channel" msgstr "" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "ì±„ë„ ê´€ë¦¬" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "ìž…ë ¥ 설정" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "화면 설정" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "화면 처리" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "출력 설정" #: src/commands.c:1161 msgid "Quit" msgstr "" #: src/commands.c:1192 msgid "Exit menu" msgstr "메뉴 나가기" #: src/commands.c:1221 msgid "Frequency table" msgstr "주파수 í…Œì´ë¸”" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "미세조정" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "비디오 소스 변경" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "ìžë§‰ 설정" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "XDS 디코딩 설정" #: src/commands.c:1392 msgid "Overscan" msgstr "초과주사율" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "전체화면 위치" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "현재 deinterlacer ì •ë³´" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "ìž…ë ¥ 여과기" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "Deinterlacer ì •ë³´" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "화면" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "ë°ê¸°" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "명암" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 #, fuzzy msgid "Saturation" msgstr "색ìƒ" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "현재 ì„¤ì •ì„ ê¸°ë³¸ê°’ìœ¼ë¡œ" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "기본 설정으로 ë˜ëŒë¦¼" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "현재 ì„¤ì •ì„ ê¸°ë³¸ 설정값으로 저장" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "현재 ì„¤ì •ê°’ì„ ì±„ë„ ê¸°ë³¸ê°’ìœ¼ë¡œ 저장" #: src/commands.c:1730 src/commands.c:1993 #, fuzzy msgid "Preferred XMLTV language" msgstr "기본 언어" #: src/commands.c:1825 msgid "Favorites" msgstr "ì¦ê²¨ë³´ê¸°" #: src/commands.c:1832 msgid "Add current channel" msgstr "현재 ì±„ë„ ì¶”ê°€" #: src/commands.c:1834 msgid "Exit" msgstr "종료" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "%dë¶„ ë’¤ì— ìžë™ 종료." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "ìžë™ 종료기능 사용안함." #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "" #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "" #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "" #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "" #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "" #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "" #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "íƒìƒ‰ëª©ë¡ì—서 채ë„표시." #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "íƒìƒ‰ëª©ë¡ì—서 ì±„ë„ í‘œì‹œì•ˆí•¨." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "" #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "" #: src/commands.c:2380 msgid "Processing every input field." msgstr "모든 ìž…ë ¥ 필드를 처리." #: src/commands.c:2383 msgid "Processing every top field." msgstr "모든 윗쪽 필드를 처리." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "모든 아래 필드를 처리." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "수í‰í•´ìƒë„는 재시작시 %d 픽셀로 ì ìš©ë©ë‹ˆë‹¤." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "TV í‘œì¤€ì€ ìž¬ì‹œìž‘ì‹œì— %s 로 ì ìš© ë©ë‹ˆë‹¤." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "" #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "" #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "" #: src/commands.c:2527 msgid "All channels re-activated." msgstr "모든 채ë„ì„ ë‹¤ì‹œ 활성화함." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "" #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "신호 ê²€ì¶œì„ ì‚¬ìš©ì•ˆí•œ ìƒíƒœì—서 검색할 수 없습니다." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "공중파 ì±„ë„ ê²€ì¶œ." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "ìžë§‰ 사용안함." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "ìžë§‰ 사용." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "" #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "" #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "실행: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "신호 검출 사용." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "신호 검출 사용안함." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "XDS 디코딩 사용." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "XDS 디코딩 사용안함." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "ìƒ‰ìƒ ë’¤ì§‘ê¸° 사용." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "ìƒ‰ìƒ ë’¤ì§‘ê¸° 사용안함." #: src/commands.c:2822 msgid "Mirror enabled." msgstr "거울효과 사용." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "거울효과 사용안함." #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "í‘백기능 사용." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "í‘백기능 사용 안함." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "초과주사: %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "화면 ì„¤ì •ì„ ê¸°ë³¸ê°’ìœ¼ë¡œ 초기화." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "ì¼ë°˜ì ì¸ NTSC ì¼€ì´ë¸” 주파수 사용." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "IRC ì¼€ì´ë¸” 주파수 사용." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "HRC ì¼€ì´ë¸” 주사푸 사용." #: src/commands.c:3029 msgid "Volume" msgstr "소리" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "현재 í™”ë©´ì„¤ì •ì„ ê¸°ë³¸ê°’ìœ¼ë¡œ 저장.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "현재 화면 ì„¤ì •ì„ ì±„ë„ %dì— ì €ìž¥.\n" #: src/commands.c:3310 msgid "Paused." msgstr "ì¼ì‹œì¤‘ì§€" #: src/commands.c:3310 msgid "Resumed." msgstr "시작ë¨." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "ì„¤ì •í™”ì¼ %s 변환 오류\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "%s ì—서 XML rootê°€ 없습니다.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s 는 tvtime 설정화ì¼ì´ 아닙니다.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "설정 í™”ì¼ì„ 만들지 못했습니다. ì„¤ì •ì´ ì €ìž¥ë˜ì§€ 않았습니다.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "새 설정화ì¼ì„ ìƒì„± í•  수 없습니다.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "설정화ì¼ì„ ìƒì„± í•  수 없습니다.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "%sì˜ ì†Œìœ ìžë¥¼ 변경할 수 ì—†ìŒ: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "tvtime ì€ ìžìœ  소프트웨어 ì´ë©°, Billy Biggs 와 Doug Bell 그리고 ë§Žì€ ê°œë°œìžë“¤" "ì—\n" "ì˜í•´ 작성ë˜ì—ˆìŠµë‹ˆë‹¤. ì €ìž‘ê¶Œì— ëŒ€í•œ ìžì„¸í•œ ë‚´ìš©ì„ ë³´ì‹œë ¤ë©´, ìš°ë¦¬ì˜ ì›¹ì‚¬ì´íЏ " "ì¸\n" "http://tvtime.net/ ì—서 ë³¼ 수 있습니다.\n" "\n" "tvtime ì˜ ì €ìž‘ê¶Œ Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "사용법: %s [OPTION]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr "" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr "" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr "" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr "" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr "" #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr "" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr "" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr "" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr "" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 msgid " -l, --borderless Start tvtime without a window border.\n" msgstr "" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr "" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr "" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr "" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr "" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "%s로 부터 설정 ì½ìŒ\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "명령줄 설정 저장.\n" #: src/tvtimeconf.c:1250 #, fuzzy msgid "Cannot update configuration while tvtime running.\n" msgstr "%s 는 tvtime 설정화ì¼ì´ 아닙니다.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "신호 ì—†ìŒ" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "ìŒì†Œê±°" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "%s(ì„)를 ìƒì„±í•  수 ì—†ìŒ: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "%s(ì„)를 ì—´ 수 ì—†ìŒ: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "UTF-8 애서 %s 로 변환 초기화 실패: iconv_open 실패 (%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " bind_textdomain_codeset()ì„ ì´ìš©í•œ 유니코드(UTF-8) 사용 실패\n" " (반환값 %s.) ì´ê²ƒì€ 메세지가 제대로 출력 ë˜ì§€ ì•Šì„ ìˆ˜ ë„\n" " 있습니다! ì´ ì˜¤ë¥˜ë¥¼ %s 로 제출해 주시기 ë°”ëžë‹ˆë‹¤.\n" "\n" "\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "사용 가능한 명령:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "tvtimeì´ ì‹¤í–‰ë˜ê³  있지 않습니다.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: %s(ì„)를 ì—´ 수 ì—†ìŒ: %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: 유효하지 ì•Šì€ ëª…ë ¹ '%s'\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: 명령 %s와 ì¸ìˆ˜ %s를 보냄.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: 명령 %s 보냄.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "TV 표준 %s 으로 검색.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " %d ì—서 튜너를 ì°¾ì„ ìˆ˜ 없습니다. 만약 튜너가 있다면, \n" " --input=<번호> 를 사용하여 다른 입력장치를 ì„ íƒí•˜ì‹­ì‹œì˜¤.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "%6.2f MHz ì—서 %6.2f MHz 까지 검색.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "%6.2f Mhz 검색:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "신호 검출" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "주파수 %6.2f MHz ì—서 ì±„ë„ ì°¾ìŒ(%.2f - %.2f MHz), ì±„ë„ ëª©ë¡ì— 추가합니다.\n" #~ msgid "Preferred audio mode" #~ msgstr "ìŒí–¥ 설정" #~ msgid "Primary Language" #~ msgstr "기본 언어" #~ msgid "Secondary Language" #~ msgstr "추가 ì„ íƒ ì–¸ì–´" #~ msgid "" #~ "\n" #~ " You are using the bttv driver, but have not configured enough\n" #~ " buffers for tvtime to process the video optimally. This is\n" #~ " true by default with bttv in kernels before 2.4.21. Please\n" #~ " set the option gbuffers=4 when loading bttv. For more\n" #~ " information see our support page at %s\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " ë‹¹ì‹ ì€ bttv 드ë¼ì´ë²„를 사용합니다만, tvtimeì´ ìµœì í™” 할만한\n" #~ " 메모리를 할당하지 않았습니다. ì´ê²ƒì€ ì»¤ë„ 2.4.21 ì´ì „버전\n" #~ " ì—서 bttv ì»¤ë„ ëª¨ë“ˆì„ ì½ì—ˆë‹¤ë©´, bttv ëª¨ë“ˆì„ ì½ì„때 \n" #~ " gbuffers=4 로 설정하십시오. ë” ë§Žì€ ì •ë³´ë¥¼ 얻으시려면\n" #~ " ìš°ë¦¬ì˜ ì§€ì› íŽ˜ì´ì§€ë¥¼(%s) ìž ì´ˆ 하십시오.\n" #~ "\n" #~ msgid "" #~ "\n" #~ " Enhanced Real Time Clock support in your kernel is necessary for\n" #~ " smooth video. We strongly recommend that you load the 'rtc' kernel\n" #~ " module before starting tvtime, and make sure that your user has\n" #~ " access to the device file (/dev/rtc or /dev/misc/rtc). See our\n" #~ " support page at %s for more information.\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " 부드러운 í™”ìƒì¶œë ¥ì„ 위한 í–¥ìƒëœ Real Time Clock ê¸°ëŠ¥ì„ ë‹¹ì‹ ì˜ ì»¤ë„ì—" #~ "서\n" #~ " ì§€ì›í•˜ì§€ 않습니다. 우리는 ë‹¹ì‹ ì´ tvtimeì„ ì‹¤í–‰í•˜ê¸°ì „ì— 'rtc' ì»¤ë„ ëª¨" #~ "듈ì„\n" #~ " ì½ì–´ì„œ, ë‹¹ì‹ ì˜ ì‚¬ìš©ìžê°€ 장치화ì¼(/dev/rtc í˜¹ì€ /dev/misc/rtc)ì—\n" #~ " 접근할 수 있ë„ë¡ í• ê²ƒì„ ê°•ë ¥ížˆ 권장합니다. ìžì„¸í•œ ë‚´ìš©ì€ ìš°ë¦¬ì˜ ì§€ì› " #~ "페ì´ì§€\n" #~ " %s 를 보십시오.\n" #~ "\n" #~ msgid "Colour" #~ msgstr "색ìƒ" #~ msgid "Cannot open MPEG file %s." #~ msgstr "%s MPEG í™”ì¼ì„ ì—´ 수 ì—†ìŒ." #~ msgid "Cannot open RVR file %s." #~ msgstr "%s RVRí™”ì¼ì„ ì—´ 수 ì—†ìŒ." #~ msgid "Television" #~ msgstr "텔레비전" #~ msgid "Composite1" #~ msgstr "외부입력1" #~ msgid "Composite2" #~ msgstr "외부입력2" #~ msgid "Composite3" #~ msgstr "외부입력3" #~ msgid "Television: Full resolution" #~ msgstr "텔레비전: 최대 í•´ìƒë„" #~ msgid "Television: Half resolution" #~ msgstr "텔레비전: 중간 í•´ìƒë„" tvtime-1.0.11/po/pl.po0000664000175000017500000010755712663345675011456 00000000000000msgid "" msgstr "" "Project-Id-Version: tvtime 0.99\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2015-10-17 12:16-0300\n" "Last-Translator: Mauro Carvalho Chehab \n" "Language-Team: Kamil 'Ci' Grzebien \n" "Language: pl_PL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Basepath: /home/limak/po\n" "X-Poedit-Bookmarks: 5,-1,-1,-1,-1,-1,-1,-1,-1,-1\n" "X-Generator: Poedit 1.8.5\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "Konfiguracja przeplotu" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "W tyÅ‚" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "Max odÅ›wieżanie: %.2f fps" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "OdÅ›wieżanie górnych pól: %.2f fps" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "OdÅ›wieżanie dolnych pól: %.2f fps" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "Ustawienia przybliżenia" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "" #: src/tvtime.c:909 msgid "16:9 output" msgstr "Obraz 16:9" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "Dopasuj wielkość okna" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "PeÅ‚ny ekran" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "Ustaw pozycje obrazu(PeÅ‚ny ekran)" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "Zawsze na wierzchu" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Ciche zrzuty ekranu" #: src/tvtime.c:968 msgid "Centre" msgstr "Åšrodek" #: src/tvtime.c:975 msgid "Top" msgstr "Góra" #: src/tvtime.c:981 msgid "Bottom" msgstr "Dół" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "Wybór czÄ™stotliwośći odÅ›wieżania" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "Informacje o obrazie" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "Przeplot" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "Ustawione odÅ›wieżanie: %.2f fps" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "Åšredni czas przełączenia klatki: %.2f ms (%.0f MB/sek)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "Åšredni czas renderowania klatki: %5.2f ms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Zgubione klatki: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Czasy przełączeÅ„: %4.1f/%4.1f ms (potrzebne %4.1f ms)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1.85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2.35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 wyÅ›rodkowany" #: src/tvtime.c:1088 src/tvtime.c:1104 #, fuzzy msgid "16:10" msgstr "16:9" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: Nie można przydzielić pamiÄ™ci.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "Nie można otworzyć urzÄ…dzenia %s." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " Twój sterownik tunera, %s, nie obsÅ‚uguje\n" " funkcji peÅ‚nego odÅ›wieżania. Sprawdź czy dobrze je\n" " skonfigurowaÅ‚eÅ› i wybraÅ‚eÅ› odpowiednie urzÄ…dzenie\n" " przechwytujÄ…ce (%s).\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " Twoje sterowniki tunera, %s, nie dostarczajÄ…\n" " wystarczajÄ…cych buforów do obsÅ‚ugi obrazu w tvtime. ProszÄ™ sprawdzić\n" " dokumentacjÄ™ swoich sterowników w celu zwiÄ™kszenia iloÅ›ci\n" " buforów potrzebnych dla aplikacji oraz powiadom nas o tym na\n" " %s\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "" #: src/tvtime.c:1440 msgid "No video source" msgstr "Brak źródÅ‚a obrazu" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "Nie można utorzyć kolejki FIFO, zdalne sterowanie wyłączone.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "Zawsze na wierzchu włączone." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "Zawsze na wierzchu wyłączone." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "Tryb 16:9 aktywny." #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "Tryb 4:3 aktywny." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "Informacja o zrzutach ekranu wyłączona." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "Informacja o zrzutach ekranu włączona." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "Inwersja Å›ciÄ…gania 2-3 wyłączona." #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "Inwersja Å›ciÄ…gania 2-3 włączona." #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "Inwersja Å›ciÄ…gania 2-3 nie jest dostÄ™pna." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Zrzut ekranu: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "Ponowne uruchomienie tvtime.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "Dziekujemy za używanie tvtime.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "Uruchomione %s.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "Bieżący" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "Brak dostÄ™pnych informacji o programie" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "NastÄ™pny: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "ZmieÅ„ numer bieżącego kanaÅ‚u" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "Bieżący kanaÅ‚ aktywny na liÅ›cie" #: src/commands.c:346 msgid "Stop channel scan" msgstr "Zatrzymaj przeszukiwanie kanałów" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "Przeszukaj kanaÅ‚y " #: src/commands.c:358 msgid "Reset all channels as active" msgstr "Ustaw wszystkie kanaÅ‚y jako aktywne" #: src/commands.c:364 msgid "Finetune current channel" msgstr "Dostrajanie bieżącego kanaÅ‚u" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "Ustaw bieżący kanaÅ‚ w systemie SECAM" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "Ustaw bieżący kanaÅ‚ w systemie PAL" #: src/commands.c:393 #, fuzzy msgid "Switch audio standard" msgstr "Standardy telewizyjne" #: src/commands.c:400 msgid "Change frequency table" msgstr "ZmieÅ„ tablicÄ™ czÄ™stotliwoÅ›ci" #: src/commands.c:406 msgid "Disable signal detection" msgstr "Wyłącz detekcjÄ™ sygnaÅ‚u" #: src/commands.c:407 msgid "Enable signal detection" msgstr "Włącz detekcjÄ™ sygnaÅ‚u" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "DomyÅ›lny jÄ™zyk" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "Nieznany jÄ™zyk" #: src/commands.c:623 msgid "Change default audio standard" msgstr "" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "Wzmocnienie sygnaÅ‚u audio" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "Standardy telewizyjne" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "Rozdzielczość pozioma" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Kabłówka" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Antena" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Kablówka z kanaÅ‚ami 100+" #: src/commands.c:709 msgid "Europe" msgstr "Europa" #: src/commands.c:717 msgid "Russia" msgstr "Rosja" #: src/commands.c:724 msgid "France" msgstr "Francja" #: src/commands.c:731 msgid "Australia" msgstr "Australia" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "" #: src/commands.c:745 msgid "New Zealand" msgstr "Nowa Zelandia" #: src/commands.c:752 msgid "China Broadcast" msgstr "Chiny Antena" #: src/commands.c:759 msgid "South Africa" msgstr "" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "Ustawienia użytkownika(najpierw uruchom tvtime-scanner)" #: src/commands.c:783 msgid "Disabled" msgstr "Wyłączony" #: src/commands.c:789 msgid "Quiet" msgstr "Cicho" #: src/commands.c:795 msgid "Medium" msgstr "Åšrednio" #: src/commands.c:801 msgid "Full" msgstr "GÅ‚oÅ›ny" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s Bieżący: %d pikseli" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "Niski (360 pikseli)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "Åšredni (576 pikseli)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Standardowy (720 pikseli)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Wysoki (768 pikseli)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s Maksymalny (%d pikseli)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "Uruchom z nowymi ustawieniami" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "ZwiÄ™ksz" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "Zmniejsz" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "Inwersja Å›ciÄ…gania 2-3" #: src/commands.c:962 msgid "Colour invert" msgstr "Odwróć kolory" #: src/commands.c:970 msgid "Mirror" msgstr "Odbicie lustrzane" #: src/commands.c:978 msgid "Chroma killer" msgstr "Obraz czarno-biaÅ‚y" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "Opcje" #: src/commands.c:1131 msgid "Last Channel" msgstr "" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "Ustawienia kanałów" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "Ustawienia wejÅ›cia" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "Ustawienia obrazu" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Przetwarzanie obrazu" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Ustawienia wyjÅ›cia" #: src/commands.c:1161 msgid "Quit" msgstr "" #: src/commands.c:1192 msgid "Exit menu" msgstr "WyjÅ›cie z menu" #: src/commands.c:1221 msgid "Frequency table" msgstr "Tablica czÄ™stotliwoÅ›ci" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "Dostrajanie" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "ZmieÅ„ źródÅ‚o obrazu" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "ZmieÅ„ dekodowanie XDS" #: src/commands.c:1392 msgid "Overscan" msgstr "" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Pozycja w trybie peÅ‚ny ekran" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "Opis bieżącego przeplotu" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Filtry wejÅ›ciowe" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "Opis przeplotu" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Obraz" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "Jasność" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "Kontrast" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "Nasycenie" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Kolor" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "Zapisz bieżące ustawienia jako domyÅ›lne" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "Zresetuj do ustawieÅ„ globalnych" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "Zapisz bieżące ustawienia jako domyÅ›lne globalne" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "Zapisz bieżące ustawienia jako domyÅ›lne kanaÅ‚u" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "Preferowany jÄ™zyk XMLTV" #: src/commands.c:1825 msgid "Favorites" msgstr "Ulubione" #: src/commands.c:1832 msgid "Add current channel" msgstr "Dodaj bieżący kanaÅ‚" #: src/commands.c:1834 msgid "Exit" msgstr "WyjÅ›cie" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Funkcja Sleep za %d minut." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "Funkcja Sleep wyłączona." #: src/commands.c:2238 #, fuzzy, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "Użycie systemu audio PAL-BG dla tego kanaÅ‚u." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "Użycie systemu audio PAL-DK dla tego kanaÅ‚u." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "Użycie systemu audio PAL-BG dla tego kanaÅ‚u." #: src/commands.c:2275 #, fuzzy, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "Ustaw domyÅ›lnie system audio PAL-BG" #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "Ustaw domyÅ›lnie system audio PAL-DK" #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "Ustaw domyÅ›lnie system audio PAL-BG" #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "Zaznacz kanaÅ‚ jako aktywny w liÅ›cie przeglÄ…dania." #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "KanaÅ‚ wyłączony z listy przeglÄ…dania." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "GÅ‚oÅ›ność tunera nie zostanie ustawiona przez tvtime." #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "Ustawienie gÅ‚oÅ›noÅ›ci tunera na wartość %d%%." #: src/commands.c:2380 msgid "Processing every input field." msgstr "Przetwarzanie każdego pola wejÅ›ciowego." #: src/commands.c:2383 msgid "Processing every top field." msgstr "Przetwarzanie każdego górnego pola." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "Przetwarzanie każdego dolnego pola." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "Rozdzielczość pozioma zostanie ustawiona na %d po restarcie." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "Standard telewizyjny zostanie ustawiony ma %s po restarcie." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "Używanie domyÅ›lnego jÄ™zyka dla danych XMLTV." #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "Używanie nieznanego jÄ™zyka(%s) dla danych XMLTV." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "JÄ™zyk XMLTV ustawiony na %s (%s)." #: src/commands.c:2527 msgid "All channels re-activated." msgstr "Wszystkie kanaÅ‚y reaktywowane." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "Zmiana numeru %d. Wprowadź nowy numer kanaÅ‚u." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "Skaner niedostÄ™pny z wyłączonÄ… funkcjÄ… sprawdzania sygnaÅ‚u." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "Skanowanie kanałów z anteny." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "" #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "" #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "Brak skonfigurowanego urzÄ…dzenia VBI dla dekodowania CC." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "Dekodowania koloru dla tego kanaÅ‚u ustawione na %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "Uruchomione: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "Detekcja sygnaÅ‚u włączona." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "Detekcja sygnaÅ‚u wyłączona." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "Dekodowanie XDS włączone." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "Dekodowanie XDS wyłączone." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "Inwersja koloru włączona." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "Inwersja koloru wyłączona." #: src/commands.c:2822 msgid "Mirror enabled." msgstr "Odbicie lustrzane włączone." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "Odbicie lustrzane wyłączone." #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "Obraz czarno-biaÅ‚y włączony." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "Obraz czarno-biaÅ‚y wyłączony." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "Ustawienia obrazu do wartoÅ›ci domyÅ›lnych. " #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "Używanie czÄ™stotliwoÅ›ci nominalnych w systemie kablówki NTSC." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "Używanie czÄ™stotliwoÅ›ci kablówki IRC." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "Używanie czÄ™stotliwoÅ›ci kablówki HRC." #: src/commands.c:3029 msgid "Volume" msgstr "GÅ‚oÅ›ność" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "Zapisano bieżące ustawienia obrazu jako domyÅ›lne globalne.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "Zapisano bieżące ustawienia obrazu dla kanaÅ‚u %d.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Pauza." #: src/commands.c:3310 msgid "Resumed." msgstr "Wznowienie." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "Nie znaleziono elementu korzenia XML w %s.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s nie jest plikiem konfiguracyjnym tvtime.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "Nie można stworzyć nowego pliku konfiguracyjnego.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "Błąd podczas tworzenia pliku konfiguracyjnego.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "Nie można zmienić wÅ‚aÅ›ciciela %s: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "tvtime jest darmowym programem, napisanym przez Billy Biggs, Doug Bell i " "wielu\n" "innych. Po szczegóły prosze zajrzyj na naszÄ… stronÄ™\n" "na http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "użycie: %s [OPTION]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen tryb 16:9.\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen tryb 4:3.\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr " -b, --vbidevice=DEVICE urzÄ…dzenie VBI (domyÅ›lnie /dev/vbi0).\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr " -c, --channel=CHANNEL Ustaw na podany kanaÅ‚ podczas startu.\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 #, fuzzy msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr "" " -d, --device=DEVICE urzÄ…dzenie video4linux (domyÅ›lnie /dev/" "video0).\n" #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 #, fuzzy msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=NAME Tablica czÄ™stotliwoÅ›ci dla tunera.\n" " (domyÅ›lna to us-cable).\n" "\n" " DostÄ™pny wybór:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (uruchom tvtime-scanner)\n" "\n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" " -F, --configfile=FILE Dodatkowy plik konfiguracyjny, z którego można " "zaÅ‚adować opcje .\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help Pokaż dostÄ™pne opcje.\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr " -g, --geometry=GEOMETRY Ustaw rozmiar okna wyjÅ›iowego.\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr "" " -i, --input=INPUTNUM numer wejÅ›cia video4linux (domyÅ›lnie 0).\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=SAMPLING Rozdzielczość pozioma wejÅ›cia\n" " (domyÅ›lna to 720 pixels).\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr " -m, --fullscreen Uruchom tvtime w trybie peÅ‚ny ekran.\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 #, fuzzy msgid " -l, --borderless Start tvtime without a window border.\n" msgstr " -M, --window Uruchom tvtime w oknie.\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window Uruchom tvtime w oknie.\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=NORM Wybór systemu wejÅ›cia. DostÄ™pny wybór:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (domyÅ›lnie NTSC).\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops Wypisz statystyki gubienia klatek (dla " "debugowania).\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" " -S, --saveoptions Zapisz opcje linii poleceÅ„ w pliku " "konfiguracyjnym.\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" " -t, --xmltv=FILE Odczytaj listing XMLTV z podanego pliku.\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=LANG Użyj danych XMLTV w podanym jÄ™zyku, jeÅ›li jest " "dostÄ™pny.\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr "" " -v, --verbose Wypisz wiadomosci debugowania do stderr.\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr "" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 #, fuzzy msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer=DEVICE[:CH] UrzÄ…dzenie miksera i kanałów do wykorzystania.\n" " (domyÅ›lny to /dev/mixer:line)\n" "\n" " DostÄ™pne kanaÅ‚y to:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr "" " -R, --priority=PRI Ustaw priorytet procesu w jakim uruchomić " "tvtime.\n" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "Czytanie konfiguracji z %s\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "Nie można otworzyć powtórnie tvtime o tej samej konfiguracji.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "Zapisywanie opcji linii poleceÅ„.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "Nie można zaktualizować konfiguracji gdy tvtime jest uruchomiony.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "Brak sygnaÅ‚u" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "Wycisz" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "Nie można utworzyć %s: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "Nie można otworzyć %s: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" "Błąd podczas inicjalizacji UTF-8 do konwertera %s: iconv_open failed (%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "DostÄ™pne opcje:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "tvtime nie jest uruchomiony.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: Nie można otworzyć %s: %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: NieprawidÅ‚owa komenda '%s'\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: WysyÅ‚anie komendy %s z argumentem %s.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: WysyÅ‚anie komendy %s.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "Skanowanie używajÄ…c standardu TV %s.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " Nie znaleziono tunera na wejÅ›ciu %d. JeÅ›li posiadasz tuner proszÄ™\n" " wybierz inne wejÅ›cie używajÄ…c --input=.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "Skanowanie z %6.2f MHz do %6.2f MHz.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "Sprawdzanie %6.2f MHz:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "SygnaÅ‚ wykryty" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "Znaleziono kanaÅ‚ na %6.2f MHz (%.2f - %.2f MHz), dodawanie do listy " "kanałów.\n" #~ msgid "Preferred audio mode" #~ msgstr "Preferowany tryb audio" #~ msgid "Mono" #~ msgstr "Mono" #~ msgid "Stereo" #~ msgstr "Stereo" #~ msgid "Primary Language" #~ msgstr "Podstawowy jÄ™zyk" #~ msgid "Secondary Language" #~ msgstr "Drugi jÄ™zyk" #~ msgid "" #~ "\n" #~ " You are using the bttv driver, but have not configured enough\n" #~ " buffers for tvtime to process the video optimally. This is\n" #~ " true by default with bttv in kernels before 2.4.21. Please\n" #~ " set the option gbuffers=4 when loading bttv. For more\n" #~ " information see our support page at %s\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Używasz sterownika bttv, ale nie skonfigurowaÅ‚eÅ› odpowiednio buforów\n" #~ " dla potrzeb optymalnego przetwarzania obrazu w tvtime. Jest to\n" #~ " ustawione domyÅ›lnie w bttv w jÄ…drach < 2.4.21. ProszÄ™\n" #~ " ustaw opcje gbuffers=4 gdy uruchamiasz bttv. Po wiÄ™cej\n" #~ " informacji zobacz na naszÄ… stronÄ™ %s\n" #~ "\n" #~ msgid "Use PAL-BG audio decoding" #~ msgstr "Użyj systemu audio PAL-BG" #~ msgid "Use PAL-DK audio decoding" #~ msgstr "Użyj systemu audio PAL-DK" #~ msgid "Default to PAL-DK audio decoding" #~ msgstr "Ustaw domyÅ›lnie na system audio PAL_DK" tvtime-1.0.11/po/stamp-po0000664000175000017500000000001212663345675012140 00000000000000timestamp tvtime-1.0.11/po/insert-header.sin0000664000175000017500000000124012354244126013710 00000000000000# Sed script that inserts the file called HEADER before the header entry. # # At each occurrence of a line starting with "msgid ", we execute the following # commands. At the first occurrence, insert the file. At the following # occurrences, do nothing. The distinction between the first and the following # occurrences is achieved by looking at the hold space. /^msgid /{ x # Test if the hold space is empty. s/m/m/ ta # Yes it was empty. First occurrence. Read the file. r HEADER # Output the file's contents by reading the next line. But don't lose the # current line while doing this. g N bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } tvtime-1.0.11/po/cs.po0000664000175000017500000012074712663345675011444 00000000000000# This is the Czech locale for tvtime. # Copyright (C) 2003 Billy Biggs, Lukáš Slánský # This file is distributed under the same license as the tvtime package. # Lukáš Slánský , 2003. # msgid "" msgstr "" "Project-Id-Version: tvtime 0.9.12\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2005-04-14 00:16+0200\n" "Last-Translator: Lukáš Slánský \n" "Language-Team: Lukáš Slánský \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "Nastavení prokládaÄe" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "ZpÄ›t" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "Plná rychlost: %.2f fps" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "PoloviÄní rychlost, prokládat horní půlsnímky: %.2f fps" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "PoloviÄní rychlost, prokládat spodní půlsnímky: %.2f fps" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "Nastavení overscanu" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "Používat oÅ™ezání" #: src/tvtime.c:909 msgid "16:9 output" msgstr "Výstup 16:9" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "ZmÄ›nit velikost okna, aby odpovídala obsahu" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "Celoobrazovkový mód" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "Nastavení pozice celoobrazovkového módu" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "Vždy navrchu" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Tiché snímky obrazovky" #: src/tvtime.c:968 msgid "Centre" msgstr "StÅ™ed" #: src/tvtime.c:975 msgid "Top" msgstr "NahoÅ™e" #: src/tvtime.c:981 msgid "Bottom" msgstr "Dole" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "ZkouÅ¡ená obnovovací frekvence" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "Odhady výkonosti" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "ProkladaÄ" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "Vstup: %s na %dx%d bodů" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "ZkouÅ¡ená obnovovací frekvence: %.2f fps" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "PrůmÄ›rná rychlost pÅ™ekreslení: %.2f ms (%.0f MB/sec)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "PrůmÄ›rná rychlost rendrování: %5.2f ms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Zahozené snímky: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Interval pÅ™ekreslení: %4.1f/%4.1f ms (potÅ™ebujeme %4.1f ms)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + Overscan" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1,85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2,35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 centrování" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "16:10" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + Overscan" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "Nastavení oÅ™ezání (Anamorfický vstup)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "Nastavení oÅ™ezání (vstup 4:3)" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: Nelze naalokovat paměť.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "Nelze otevřít zachytávací zařízení %s." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " Váš ovladaÄ zachytávací karty (%s) nejspíš nepodporuje\n" " zachytávání plnou rychlostí. Zkontrolujte prosím zda není Å¡patnÄ›\n" " nakonfigurován nebo zda jste nezvolili Å¡patné zachytávací\n" " zařízení (%s).\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " Váš ovladaÄ zachytávací karty (%s) nenabízí dostatek bufferů,\n" " aby tvtime zpracoval video. PÅ™eÄtÄ›te si prosím dokumentaci k VaÅ¡emu\n" " ovladaÄi, zda můžete zvýšit poÄet bufferů poskytovaných aplikacím a\n" " sdÄ›lte nám to do tvtime bug trackeru na %s\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "Displej na obrazovce nelze inicializovat. Byl vypnut.\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "Bez zdroje videa" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "Nemohu vytvoÅ™it FIFO. Dálkové ovládání tvtime vypnuto.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "Zobrazování titulků nejde inicializovat. Bylo vypnuto.\n" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "Mód Vždy navrchu zapnut." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "Mód Vždy navrchu vypnut." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "Obrazový mód 16:9 zapnut." #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "Obrazový mód 4:3 zapnut." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "Zprávy o snímcích obrazovky vypnuty." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "Zprávy o snímcích obrazovky zapnuty." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "2-3 pulldown inverze vypnuta." #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "2-3 pulldown inverze zapnuta." #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "2-3 pulldown inverze s vaší TV normou nefunguje." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Snímek obrazovky: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "Tvtime se restartuje.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "DÄ›kujeme za používání tvtime.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " Nelze se zbavit rootových prilegií: %s.\n" " tvtime se nyní ukonÄí, aby pÅ™edeÅ¡el bezpeÄnostním problémům.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "SpouÅ¡tí se %s.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "SouÄasný" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "Nejsou dostupné informace o programu" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "Další: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "PÅ™eÄíslování souÄasného kanálu" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "SouÄasný kanál je aktivní v seznamu" #: src/commands.c:346 msgid "Stop channel scan" msgstr "Vypnutí hledání kanálů" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "Hledání signálu v kanálech" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "Aktivování vÅ¡ech kanálů" #: src/commands.c:364 msgid "Finetune current channel" msgstr "Jemné ladÄ›ní souÄasného kanálu" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "ZmÄ›na kabelového módu NTSC" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "Nastavení kanálu na SECAM" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "Nastavení kanálu na PAL" #: src/commands.c:393 msgid "Switch audio standard" msgstr "ZmÄ›nit standard audia" #: src/commands.c:400 msgid "Change frequency table" msgstr "ZmÄ›na frekvenÄní tabulky" #: src/commands.c:406 msgid "Disable signal detection" msgstr "Vypnout detekci signálu" #: src/commands.c:407 msgid "Enable signal detection" msgstr "Zapnout detekci signálu" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "PÅ™edvolený jazyk" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "Neznámý jazyk" #: src/commands.c:623 msgid "Change default audio standard" msgstr "ZmÄ›nit pÅ™ednastavený standard audia" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "ZvýraznÄ›ní síly zvuku" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "Televizní standard" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "Horizontální rozliÅ¡ení" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Kabel" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Vysílání" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Kabel s kanály nad 100" #: src/commands.c:709 msgid "Europe" msgstr "Evropa" #: src/commands.c:717 msgid "Russia" msgstr "Rusko" #: src/commands.c:724 msgid "France" msgstr "Francie" #: src/commands.c:731 msgid "Australia" msgstr "Austrálie" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "Austrálie (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "Nový Zealand" #: src/commands.c:752 msgid "China Broadcast" msgstr "Čínské vysílání" #: src/commands.c:759 msgid "South Africa" msgstr "Jížní Afrika" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "Vlastní (nejprve spuÅ¥te tvtime-scanner)" #: src/commands.c:783 msgid "Disabled" msgstr "Vypnuto" #: src/commands.c:789 msgid "Quiet" msgstr "Potichu" #: src/commands.c:795 msgid "Medium" msgstr "StÅ™ednÄ›" #: src/commands.c:801 msgid "Full" msgstr "Naplno" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s SouÄasnÄ›: %d bodů" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "Nízké (360 bodů)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "StÅ™ední (576 bodů)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Normální (720 bodů)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Vysoké (768 bodů)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s Maximum: (%d bodů)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "PÅ™estartovat s novým nastavením" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "ZvÄ›tÅ¡it" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "ZmenÅ¡it" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "2-3 pulldown inverze" #: src/commands.c:962 msgid "Colour invert" msgstr "Inverze barev" #: src/commands.c:970 msgid "Mirror" msgstr "Zrcadleni" #: src/commands.c:978 msgid "Chroma killer" msgstr "OdstranÄ›ní barev" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "Nastavení" #: src/commands.c:1131 msgid "Last Channel" msgstr "" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "Správa kanálů" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "Konfigurace vstupu" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "Nastavení obrazu" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Zpracování videa" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Konfigurace výstupu" #: src/commands.c:1161 msgid "Quit" msgstr "" #: src/commands.c:1192 msgid "Exit menu" msgstr "Vypnutí nabídky" #: src/commands.c:1221 msgid "Frequency table" msgstr "FrekvenÄní tabulka" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "Jemné doladÄ›ní" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "ZmÄ›na zdroje videa" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "Zapnout/vypnout titulky" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "Zapnout/vypnout dekódování XDS" #: src/commands.c:1392 msgid "Overscan" msgstr "Overscan" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Pozice celoobrazovkového módu" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "Popis souÄasného prokládaÄe" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Vstupní filtry" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "Popis prokládaÄe" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Obraz" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "Jas" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "Kontrast" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "Saturace" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Odstín" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "Uložení souÄasného nastavení jako pÅ™eddefinované hodnoty" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "Nastavení na globální pÅ™eddefinované hodnoty" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "Uložení souÄasného nastavení jako globální pÅ™eddefinované hodnoty" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "Uložení souÄasného nastavení jako pÅ™eddefinované hodnoty pro kanál" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "PÅ™ednostní jazyk XMLTV" #: src/commands.c:1825 msgid "Favorites" msgstr "Oblíbené" #: src/commands.c:1832 msgid "Add current channel" msgstr "PÅ™idej souÄasný kanál" #: src/commands.c:1834 msgid "Exit" msgstr "Konec" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Usnout za %d minut." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "Usínání vypnuto." #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "Pro dekódování audia tohoto kanálu se používá PAL-I." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "Pro dekódování audia tohoto kanálu se používá PAL-DK." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "Pro dekódování audia tohoto kanálu se používá PAL-BG." #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "PÅ™edvolené dekódování audia bude PAL-I" #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "PÅ™edvolené dekódování audia bude PAL-DK" #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "PÅ™edvolené dekódování audia bude PAL-BG" #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "V seznamu byl kanál oznaÄen jako aktivní" #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "V seznamu byl kanál deaktivován." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "Hlasitost zachytávací karty nebude nastavena pomocí tvtime." #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "Nastavuje se hlasitost zachytávací karty na %d%%." #: src/commands.c:2380 msgid "Processing every input field." msgstr "Zpracování každého snímku." #: src/commands.c:2383 msgid "Processing every top field." msgstr "Zpracování každého horního půlsnímku." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "Zpracování každého spodního půlsnímku." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "Po restartu bude horizontální rozliÅ¡ení %d bodů." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "Po restartu bude televizní standard %s." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "Pro data XMLTV používám pÅ™edvolený jazyk." #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "Pro data XMLTV používám neznámý jazyk (%s)." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "Jazyk XMLTV nastaven na %s (%s)." #: src/commands.c:2527 msgid "All channels re-activated." msgstr "VÅ¡echny kanály byly aktivovány." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "PÅ™emapování %d. Vložte nové Äíslo kanálu." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "Skener kanálu není dostupný pÅ™i vypnuté kontrole signálu." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "Hledání kanálu, které jsou vysílány." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "Titulky byly vypnuty." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "Titulky byly zapnuty." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "Nebylo konfigurováno zařízení pro dekódování titulků." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "Dekódování barev tohoto kanálu bylo nastaveno na %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "SpouÅ¡tÄ›ní: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "Detekce signálu zapnuta." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "Detekce signálu vypnuta." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "Dekódování XDS zapnuto." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "Dekódování XDS vypnuto." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "Inverze barev zapnuta." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "Inverze barev vypnuta." #: src/commands.c:2822 msgid "Mirror enabled." msgstr "Zrcadleni zapnuto." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "Zrcadleni vypnuto." #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "OdstranÄ›ní barev zapnuto." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "OdstranÄ›ní barev vypnuto." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "Overscan: %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "Nastavení obrazu nastaveno na pÅ™eddefinované hodnoty." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "Používat nominální frekvence NTSC cable." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "Používat frekvence IRC cable." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "Používat frekvence HRC cable." #: src/commands.c:3029 msgid "Volume" msgstr "Hlasitost" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "" "Nastavení obrazu bylo uloženo jako globální pÅ™eddefinované nastavení.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "Nastavení obrazu pro kanál %d bylo uloženo.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Pauza." #: src/commands.c:3310 msgid "Resumed." msgstr "Obnoveno." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "Chyba zpracování konfiguraÄního souboru %s.\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "V souboru %s nebyl nalezen koÅ™enový XML element.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s není konfiguraÄní souborem tvtime.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "KonfiguraÄní soubor nelze zpracovat. Nastavení nebude uloženo.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "Nelze vytvoÅ™it nový konfiguraÄní soubor..\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "Chyba pÅ™i vytváření konfiguraÄního souboru.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "Nelze zmÄ›nit vlastníka %s: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "tvtime je free software napsaný Billy Biggsem, Dougem Bellem a mnoha\n" "jinými lidmi. Detailní informace a podmínky šíření jsou na naší webové\n" "adrese http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "použití: %s [VOLBA]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen mód 16:9.\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen mód 4:3.\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr " -b, --vbidevice=DEVICE zařízení VBI (standardnÄ› /dev/vbi0).\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr " -c, --channel=KANÃL Naladit urÄený kanál pÅ™i zapnutí.\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 #, fuzzy msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr "" " -d, --device=ZAŘÃZENà zařízení video4linux (standardnÄ› /dev/video0).\n" #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=JMÉNO FrekvenÄní tabulka, kterou používá tuner.\n" " (standardnÄ› us-cable).\n" "\n" " Možné hodnoty jsou:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (nejprve spuÅ¥te tvtime-scanner)\n" "\n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" " -F, --configfile=SOUBOR Další konfiguraÄní soubor pro Ätení nastavení.\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help Zobrazit tuto nápovÄ›du.\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr " -g, --geometry=GEOMETRIE Nastaví velikost výstupního okna.\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr "" " -i, --input=ÄŒÃSLOVSTUPU Äíslo vstupu video4linux (standardnÄ› 0).\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=Å ÃŘKA Horizontální rozliÅ¡ení vstupu\n" " (standardnÄ› 720 bodů).\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" " -k, --slave Vypnout zpracování vstupu v tvtime (podřízený " "mód).\n" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr " -m, --fullscreen Zapnout tvtime v celoobrazovkovém módu.\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 #, fuzzy msgid " -l, --borderless Start tvtime without a window border.\n" msgstr " -M, --window Zapnout tvtime v okenním módu.\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window Zapnout tvtime v okenním módu.\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=NORMA Norma vstupu, kterou tvtime podporuje:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N nebo PAL-60 (standardnÄ› NTSC).\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops Zobrazovat statistiky zahozených snímků (pro " "ladÄ›ní).\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" " -S, --saveoptions Uložit volby z příkazové řádky do " "konfiguraÄního souboru.\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr " -t, --xmltv=SOUBOR PÅ™eÄte seznamy XMLTV z daného souboru.\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=JAZYK Použít data XMLTV v daném jazyce - je-li " "dostupný.\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr " -v, --verbose Tisknout ladící zprávy na stderr.\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr " -X, --display=DISPLAY Používat daný X display.\n" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 #, fuzzy msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer=ZAŘÃZENÃ[:K] Zařízení a kanál pro ovládání mixáže audia.\n" " (standardnÄ› /dev/mixer:line)\n" "\n" " Platné kanály jsou:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr "" " -R, --priority=PRIORITA Nastavit prioritu, pod kterou má tvtime běžet.\n" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "ÄŒtení konfigurace z %s\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "Nelze spustit dvÄ› instance tvtime se stejnou konfigurací.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "Ukládání voleb z příkazové řádky.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "Není možné zmÄ›nit konfiguraci za bÄ›hu tvtime.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "Bez signálu" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "Ztlumit" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "Nelze vytvoÅ™it %s: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "Nelze otevřít %s: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" "Nelze inicializovat konvertor z UTF-8 do %s: iconv_open zklamal (%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " Nelze zapnout mód UTF-8 pomocí bind_textdomain_codeset()\n" " (vrátil %s). To může způsobit, že nÄ›které zprávy budou zobrazeny\n" " neÄitelnÄ›! OhlaÅ¡te prosím tuto chybu na\n" " %s.\n" "\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "Dostupné příkazy:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "tvtime neběží.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: Nelze otevřít %s: %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: Neznámý příkaz '%s'\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: Odeslání příkazu %s s argumentem %s.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: Odeslání příkazu %s.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "Hledání stanic s použítím TV standardu %s.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " Na vstupu %d nebyl nalezen tuner. Pokud máte tuner, nastavte\n" " prosím jiný vstup pomocí --input=<Äíslo>.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "Procházím frekvence %6.2f MHz až %6.2f MHz.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "Kontroluji %6.2f MHz:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "Detekce signálu" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "Nalezen kanál na %6.2f MHz (%.2f - %.2f MHz). PÅ™idávám ho do seznamu " "kanálů.\n" #~ msgid "Preferred audio mode" #~ msgstr "Preferovaný mód audia" #~ msgid "Mono" #~ msgstr "Mono" #~ msgid "Stereo" #~ msgstr "Stereo" #~ msgid "SAP" #~ msgstr "SAP" #~ msgid "Primary Language" #~ msgstr "Primární jazyk" #~ msgid "Secondary Language" #~ msgstr "Sekundární jazyk" #~ msgid "" #~ "\n" #~ " You are using the bttv driver, but have not configured enough\n" #~ " buffers for tvtime to process the video optimally. This is\n" #~ " true by default with bttv in kernels before 2.4.21. Please\n" #~ " set the option gbuffers=4 when loading bttv. For more\n" #~ " information see our support page at %s\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Používáte ovladaÄ bttv, ale nemáte nakonfigurován dostatek\n" #~ " bufferů, aby tvtime zpracoval video optimálnÄ›. V kernelech\n" #~ " pÅ™ed 2.4.21 je toto nastavení standardní. Nastavte prosím\n" #~ " parametr bttv gbuffers=4 pÅ™i nahrávání modulu. Více informací\n" #~ " najdete na naÅ¡ich stránkách podpory %s\n" #~ "\n" #~ msgid "Use PAL-BG audio decoding" #~ msgstr "Použít dekódování audia PAL-BG" #~ msgid "Use PAL-DK audio decoding" #~ msgstr "Použít dekódování audia PAL-DK" #~ msgid "Default to PAL-DK audio decoding" #~ msgstr "Dekódování audia pÅ™edvoleno na PAL-DK" #~ msgid "" #~ "\n" #~ " Enhanced Real Time Clock support in your kernel is necessary for\n" #~ " smooth video. We strongly recommend that you load the 'rtc' kernel\n" #~ " module before starting tvtime, and make sure that your user has\n" #~ " access to the device file (/dev/rtc or /dev/misc/rtc). See our\n" #~ " support page at %s for more information.\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Podpora Enhanced Real Time Clock ve VaÅ¡em jádÅ™e je potÅ™ebná pro\n" #~ " plynulé video. Velmi doporuÄujeme nahrát modul 'rtc' pÅ™ed zapnutím\n" #~ " tvtime. UjistÄ›te se také, že uživatel má přístup k zařízení 'rtc'\n" #~ " (/dev/rtc nebo /dev/misc/rtc). Více informací najdete na naÅ¡ich\n" #~ " stránkách podpory %s.\n" #~ "\n" #~ msgid "" #~ "\n" #~ " Failed to get 1024 Hz resolution from your RTC device. High\n" #~ " resolution access is necessary for video to be smooth. Please\n" #~ " run tvtime as root, set tvtime as SUID root, or change the\n" #~ " maximum RTC resolution allowed for user processes by running this\n" #~ " command as root:\n" #~ " sysctl -w dev.rtc.max-user-freq=1024\n" #~ " See our support page at %s for more information.\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Nelze nastavit rozliÅ¡ení 1024 Hz pro zařízení RTC. Vysoká frekvence\n" #~ " je potÅ™ebná, aby bylo video plynulé. SpouÅ¡tÄ›jte prosím tvtime jako\n" #~ " root, nastavte tvtime SUID root nebo změňte maximální rozliÅ¡ení RTC\n" #~ " povolené uživatelům zadáním následujícího příkazů jako root:\n" #~ " sysctl -w dev.rtc.max-user-freq=1024\n" #~ " Více informací najdete na naÅ¡ich stránkách podpory %s.\n" #~ "\n" #~ msgid "BT8x8 luma correction" #~ msgstr "Korekce barev BT8x8" #~ msgid "Luma correction enabled." #~ msgstr "Korekce barev zapnuta." #~ msgid "Luma correction disabled." #~ msgstr "Korekce barev vypnuta." #~ msgid "Luma correction value: %.1f" #~ msgstr "Hodnota korekce barev: %.1f" #~ msgid "Colour" #~ msgstr "Barevný kontrast" #~ msgid "" #~ " -D, --driver=NAME Output driver to use: Xv, DirectFB, mga,\n" #~ " matroxtv or SDL (defaults to Xv).\n" #~ msgstr "" #~ " -D, --driver=JMÉNO Výstupní zařízení: Xv, DirectFB, mga,\n" #~ " matroxtv nebo SDL (standardnÄ› Xv).\n" #~ msgid "" #~ " -H, --height=HEIGHT Output window height (defaults to 576 " #~ "pixels).\n" #~ msgstr "" #~ " -H, --height=VÃÅ KA Výška výstupního okna (standardnÄ› 576 " #~ "bodů).\n" #~ msgid "" #~ " -p, --fspos=POS Set the fullscreen position: top, bottom or\n" #~ " centre (default).\n" #~ msgstr "" #~ " -p, --fspos=POZICE Nastavit pozici pro celoobrazovkový mód: top " #~ "(nahoÅ™e),\n" #~ " bottom (dole) nebo centre (stÅ™ed - " #~ "standardnÄ›).\n" #~ msgid "" #~ " -r, --rvr=FILE RVR recorded file to play (for debugging).\n" #~ msgstr "" #~ " -r, --rvr=SOUBOR Zaznamenaný soubor RVR na pÅ™ehrání (pro " #~ "ladÄ›ní).\n" #~ msgid "Cannot open MPEG file %s." #~ msgstr "Nelze otevřít MPEG soubor %s." #~ msgid "Cannot open RVR file %s." #~ msgstr "Nelze otevřít RVR soubor %s." tvtime-1.0.11/po/uk.po0000664000175000017500000012610012664123017011424 00000000000000# Yuri Chornoivan , 2015. # Yuri Chornoivan , 2015. #zanata # Yuri Chornoivan , 2016. #zanata msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2016-02-26 12:07-0500\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Zanata 3.8.2\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´ÐµÑ–Ð½Ñ‚ÐµÑ€Ð»ÐµÐ¹Ñінгу" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "Ðазад" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "Ðа повну швидкіÑть: %.2f кд/Ñ" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "Ðа пів швидкоÑті, деінтерлейÑінг верхніх полів: %.2f кд/Ñ" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "Ðа пів швидкоÑті, деінтерлейÑінг нижніх полів: %.2f кд/Ñ" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ð»Ñ–Ð²" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "ЗаÑтоÑувати маÑку" #: src/tvtime.c:909 msgid "16:9 output" msgstr "16:9 виведеннÑ" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "Змінити розмір вікна, щоб повніÑтю вміÑтити зображеннÑ" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "Ðа веÑÑŒ екран" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "Ð’ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ñ€Ð¾Ð·Ð¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ñƒ повноекранному режимі" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "Завжди поверх інших вікон" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Знімки екрану без повідомлень" #: src/tvtime.c:968 msgid "Centre" msgstr "По центру" #: src/tvtime.c:975 msgid "Top" msgstr "Верх" #: src/tvtime.c:981 msgid "Bottom" msgstr "Ðиз" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "ОÑтаточна чаÑтота кадрів" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "Оцінка швидкоÑті" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "ДеінтерлейÑер" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "Вхід: %s при %dx%d точках" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "ОÑтаточна чаÑтота кадрів: %.2f кд/Ñ" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "Середній Ñ‡Ð°Ñ Ð¿ÐµÑ€ÐµÐ´Ð°Ñ‡Ñ– потоку: %.2f Ð¼Ñ (%.0f MБ/Ñ)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "Середній Ñ‡Ð°Ñ Ð²Ñ–Ð´Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ: %5.2f мÑ" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Викинутих кадрів: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Проміжки копіюваннÑ: %4.1f/%4.1f Ð¼Ñ (запит %4.1f мÑ)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + ПолÑ" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1.85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2.35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 по центру" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "16:10" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + ПолÑ" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "Параметри рамки (анаморфотний вхідний Ñигнал)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "Параметр рамки (вхідний Ñигнал 4:3)" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: Ðеможливо виділити пам'Ñть.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "Ðеможливо відкрити приÑтрій Ð·Ð°Ñ…Ð¾Ð¿Ð»ÐµÐ½Ð½Ñ %s." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " Ваш драйвер карти захопленнÑ, %s, здаєтьÑÑ Ð½Ðµ\n" " підтримує Ð·Ð°Ñ…Ð¾Ð¿Ð»ÐµÐ½Ð½Ñ Ð½Ð° повну швидкіÑть. Будь лаÑка,\n" " подивітьÑÑ Ñ‡Ð¸ правильно його налаштовано, або чи не\n" " обрали Ви невірний приÑтрій (%s).\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " Ваш драйвер карти захопленнÑ, %s, не забезпечує доÑтатню\n" " кількіÑть буферів Ð´Ð»Ñ Ð¾Ð±Ñ€Ð¾Ð±ÐºÐ¸ відео з tvtime. Будь лаÑка\n" " подивітьÑÑ Ð´Ð¾ÐºÑƒÐ¼ÐµÐ½Ñ‚Ð°Ñ†Ñ–ÑŽ Ð´Ð»Ñ Ð·Ð±Ñ–Ð»ÑŒÑˆÐµÐ½Ð½Ñ ÐºÑ–Ð»ÑŒÐºÐ¾Ñті буферів\n" " доÑтупних програмам, та повідомте про це до відÑлідковуваннÑ\n" " помилок tvtime за адреÑою %s\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "Екранний диÑплей не вдалоÑÑ Ð·Ð°Ð¿ÑƒÑтити, вимкнено.\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "ВідÑутній відеоÑигнал" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "" "Ðе вдалоÑÑ Ñтворити потік FIFO, віддалене ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ tvtime ÑкаÑовано.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "Ð’Ñ–Ð´Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñубтитрів не вдалоÑÑ Ð·Ð°Ð¿ÑƒÑтити, вимкнено.\n" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "Дозволено режим поверх-уÑÑ–Ñ…-вікон" #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "СкаÑовано режим поверх-уÑÑ–Ñ…-вікон" #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "Ðктивовано режим Ð²Ñ–Ð´Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ 16:9" #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "Ðктивовано режим Ð²Ñ–Ð´Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ 4:3." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "ÐŸÐ¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð·Ð½Ñ–Ð¼ÐºÑ–Ð² екрану вимкнено." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "ÐŸÐ¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð·Ð½Ñ–Ð¼ÐºÑ–Ð² екрану увімкнено." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "ІнверÑÑ–ÑŽ проÑÑƒÐ²Ð°Ð½Ð½Ñ 2-3 вимкнено." #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "ІнверÑÑ–ÑŽ проÑÑƒÐ²Ð°Ð½Ð½Ñ 2-3 увімкнено." #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "ІнверÑÑ–Ñ Ð¿Ñ€Ð¾ÑÑƒÐ²Ð°Ð½Ð½Ñ 2-3 неможлива з вказаним Вами режимом ТБ." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Знімок екрану: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "ПерезапуÑк tvtime.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "ДÑкуємо Вам за викориÑÑ‚Ð°Ð½Ð½Ñ tvtime.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " Ðе вдалоÑÑ Ñкинути адмініÑтративні привілеї: %s.\n" " Зараз tvtime завершить роботу, щоб убезпечити ÑиÑтему.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "ЗапуÑк %s.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "Поточне" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "Ð†Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¸ відÑутнє" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "ÐаÑтупний: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "Змінити номер поточного каналу" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "Поточний канал активовано у ÑпиÑку" #: src/commands.c:346 msgid "Stop channel scan" msgstr "Зупинити пошук каналів" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "Пошук Ñигналу каналів" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "Зробити вÑÑ– канали активними" #: src/commands.c:364 msgid "Finetune current channel" msgstr "Точне Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ð³Ð¾ каналу" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "Змінити режим кабельного NTSC" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "Ð’Ñтановити режим SECAM Ð´Ð»Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ð³Ð¾ каналу" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "Ð’Ñтановити режмми PAL Ð´Ð»Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ð³Ð¾ каналу" #: src/commands.c:393 msgid "Switch audio standard" msgstr "ÐŸÐµÑ€ÐµÐ¼Ð¸ÐºÐ°Ð½Ð½Ñ Ð°ÑƒÐ´Ñ–Ð¾ Ñтандарту" #: src/commands.c:400 msgid "Change frequency table" msgstr "Змінити таблицю чаÑтот" #: src/commands.c:406 msgid "Disable signal detection" msgstr "СкаÑувати виÑÐ²Ð»ÐµÐ½Ð½Ñ Ñигналу" #: src/commands.c:407 msgid "Enable signal detection" msgstr "Дозволити виÑÐ²Ð»ÐµÐ½Ð½Ñ Ñигналу" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "Типова мова" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "Ðевідома мова" #: src/commands.c:623 msgid "Change default audio standard" msgstr "Змінити оÑновний аудіо Ñтандарт" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "ФорÑÑƒÐ²Ð°Ð½Ð½Ñ Ñ€Ñ–Ð²Ð½Ñ Ð·Ð²ÑƒÐºÑƒ" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "Телевізійний Ñтандарт" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "Горизонтальна роздільна здатніÑть" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Кабель" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Телевізійне мовленнÑ" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Кабель з каналами 100+" #: src/commands.c:709 msgid "Europe" msgstr "Європа" #: src/commands.c:717 msgid "Russia" msgstr "РоÑÑ–Ñ" #: src/commands.c:724 msgid "France" msgstr "ФранціÑ" #: src/commands.c:731 msgid "Australia" msgstr "ÐвÑтраліÑ" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "ÐвÑÑ‚Ñ€Ð°Ð»Ñ–Ñ (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "Ðова ЗеландіÑ" #: src/commands.c:752 msgid "China Broadcast" msgstr "Китай" #: src/commands.c:759 msgid "South Africa" msgstr "Південна Ðфрика" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "ОÑобливе (перший запуÑк tvtime-scanner)" #: src/commands.c:783 msgid "Disabled" msgstr "Вимкнено" #: src/commands.c:789 msgid "Quiet" msgstr "Мовчки" #: src/commands.c:795 msgid "Medium" msgstr "Середнє" #: src/commands.c:801 msgid "Full" msgstr "Повне" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s Поточне: %d точок" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "Ðизька (360 точок)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "Ðизька (576 точок)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Стандартна (720 точок)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "ВиÑока (768 точок)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s МакÑимальна (%d точок)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "ПерезапуÑк з новими налаштуваннÑми" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "Збільшити" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "Зменшити" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "ІнверÑÑ–Ñ Ð¿Ñ€Ð¾ÑÑƒÐ²Ð°Ð½Ð½Ñ 2-3" #: src/commands.c:962 msgid "Colour invert" msgstr "Інвертувати колір" #: src/commands.c:970 msgid "Mirror" msgstr "ВіддзеркаленнÑ" #: src/commands.c:978 msgid "Chroma killer" msgstr "Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñƒ" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "ÐалаштуваннÑ" #: src/commands.c:1131 msgid "Last Channel" msgstr "ОÑтанній канал" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "ÐšÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ°Ð½Ð°Ð»Ð°Ð¼Ð¸" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ñ…Ñ–Ð´Ð½Ð¾Ð³Ð¾ Ñигналу" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ°Ñ€Ñ‚Ð¸Ð½ÐºÐ¸" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Обробка відео" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ð¸Ñ…Ñ–Ð´Ð½Ð¾Ð³Ð¾ Ñигналу" #: src/commands.c:1161 msgid "Quit" msgstr "Вийти" #: src/commands.c:1192 msgid "Exit menu" msgstr "Вийти з меню" #: src/commands.c:1221 msgid "Frequency table" msgstr "Ð¢Ð°Ð±Ð»Ð¸Ñ†Ñ Ñ‡Ð°Ñтот" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "Точне налаштуваннÑ" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "Зміна джерела відео" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "ÐŸÐµÑ€ÐµÐ¼Ð¸ÐºÐ°Ð½Ð½Ñ Ñубтитрів" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "Перемкнути Ð´ÐµÐºÐ¾Ð´ÑƒÐ°Ð°Ð½Ð½Ñ XDS" #: src/commands.c:1392 msgid "Overscan" msgstr "ПолÑ" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Ð Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñƒ повноекранному режимі" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "ÐžÐ¿Ð¸Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ð³Ð¾ деінтерлейÑера" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Вхідні фільтри" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "ÐžÐ¿Ð¸Ñ Ð´ÐµÑ–Ð½Ñ‚ÐµÑ€Ð»ÐµÐ¹Ñера" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Картинка" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "ЯÑкравіÑть" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "КонтраÑтніÑть" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "ÐаÑиченіÑть" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Відтінок" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "Зберегти поточні Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñк типові" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "Скинути до загальних типових" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "Зберегти поточні Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñк загальні типові" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "Зберегти поточні Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñк типові Ð´Ð»Ñ ÐºÐ°Ð½Ð°Ð»Ñƒ" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "ОÑновна мова XMLTV" #: src/commands.c:1825 msgid "Favorites" msgstr "Обрані" #: src/commands.c:1832 msgid "Add current channel" msgstr "Додати поточний канал" #: src/commands.c:1834 msgid "Exit" msgstr "Вийти" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Сон через %d хвилин." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "Режим Ñну вимкнено." #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "ВикориÑтовувати Ð´ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð°ÑƒÐ´Ñ–Ð¾ PAL-I Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ каналу." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "Ð”Ð»Ñ Ð´ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð°ÑƒÐ´Ñ–Ð¾ цього каналу викориÑтовуєтьÑÑ PAL-DK." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "Ð”Ð»Ñ Ð´ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð°ÑƒÐ´Ñ–Ð¾ цього каналу викориÑтовуєтьÑÑ PAL-BG." #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "Ð”Ð»Ñ Ð´ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð°ÑƒÐ´Ñ–Ð¾ цього каналу викориÑтовуєтьÑÑ PAL-I." #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "Типове Ð´ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð²ÑƒÐºÑƒ Ñк PAL-DK." #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "Типове Ð´ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð²ÑƒÐºÑƒ Ñк PAL-BG." #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "Канал позначено Ñк активний у ÑпиÑку переглÑду." #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "Канал виключено зі ÑпиÑку переглÑду." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "ГучніÑть карти Ð·Ð°Ñ…Ð¾Ð¿Ð»ÐµÐ½Ð½Ñ Ð½Ðµ буде вÑтановлено за допомогою tvtime." #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "Ð’Ñтановити гучніÑть карти Ð·Ð°Ñ…Ð¾Ð¿Ð»ÐµÐ½Ð½Ñ Ñƒ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ %d%%." #: src/commands.c:2380 msgid "Processing every input field." msgstr "Обробка кожного вхідного полÑ." #: src/commands.c:2383 msgid "Processing every top field." msgstr "Обробка кожного верхнього полÑ." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "Обробка кожного нижнього полÑ." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "ПіÑÐ»Ñ Ð¿ÐµÑ€ÐµÐ·Ð°Ð¿ÑƒÑку горизонтальна роздільна здатніÑть буде %d точок." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "ПіÑÐ»Ñ Ð¿ÐµÑ€ÐµÐ·Ð°Ð¿ÑƒÑку телевізійним Ñтандартом буде %s." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "ВикориÑтовуєтьÑÑ Ñ‚Ð¸Ð¿Ð¾Ð²Ð° мова Ð´Ð»Ñ Ð´Ð°Ð½Ð¸Ñ… XMLTV." #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "ВикориÑтовуєтьÑÑ Ð½ÐµÐ²Ñ–Ð´Ð¾Ð¼Ð° мова (%s) Ð´Ð»Ñ Ð´Ð°Ð½Ð¸Ñ… XMLTV." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "Мову XMLTV вÑтановлено у Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ %s (%s)." #: src/commands.c:2527 msgid "All channels re-activated." msgstr "Ð’ÑÑ– канали переактивовано." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "Ð¡Ð¾Ñ€Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ %d. Вкажіть новий номер каналу." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "Пошук неможливий, Ñкщо вимкнено перевірку Ñигналу." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "Пошук каналів, Ñкими ведетьÑÑ Ð¼Ð¾Ð²Ð»ÐµÐ½Ð½Ñ." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "Субтитри вимкнено." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "Субтитри увімкнено." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "Ðе налаштовано приÑтрою VBI Ð´Ð»Ñ Ð´ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ñубтитрів." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "Ð”ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñƒ Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ каналу вÑтановлено %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "Запущено: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "Дозволено виÑÐ²Ð»ÐµÐ½Ð½Ñ Ñигналу." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "Вимкнено виÑÐ²Ð»ÐµÐ½Ð½Ñ Ñигналу." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "Ð”ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ XDS увімкнено." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "Ð”ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ XDS вимкнено." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "Дозволено Ñ–Ð½Ð²ÐµÑ€Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñ–Ð²." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "Вимкнено Ñ–Ð½Ð²ÐµÑ€Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñƒ." #: src/commands.c:2822 msgid "Mirror enabled." msgstr "Дозволене віддзеркаленнÑ" #: src/commands.c:2824 msgid "Mirror disabled." msgstr "Ð’Ñ–Ð´Ð´Ð·ÐµÑ€ÐºÐ°Ð»ÐµÐ½Ð½Ñ Ð²Ð¸Ð¼ÐºÐ½ÐµÐ½Ð¾" #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñƒ увімкнено." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñƒ вимкнено." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "ПолÑ: %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "Параметри картинки Ñкинуто до типових." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "ВикориÑÑ‚Ð°Ð½Ð½Ñ Ð½Ð¾Ð¼Ñ–Ð½Ð°Ð»ÑŒÐ½Ð¸Ñ… кабельних чаÑтот NTSC." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "ВикориÑтовуютьÑÑ ÐºÐ°Ð±ÐµÐ»ÑŒÐ½Ñ– чаÑтоти IRC." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "ВикориÑтовуютьÑÑ ÐºÐ°Ð±ÐµÐ»ÑŒÐ½Ñ– чаÑтоти HRC." #: src/commands.c:3029 msgid "Volume" msgstr "ГучніÑть" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "Збережено Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ñ— картинки Ñк загальні типові.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "Збережено поточні Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ°Ñ€Ñ‚Ð¸Ð½ÐºÐ¸ Ð´Ð»Ñ ÐºÐ°Ð½Ð°Ð»Ñƒ %d.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Ðа паузі." #: src/commands.c:3310 msgid "Resumed." msgstr "Поновлено." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "Помилка під Ñ‡Ð°Ñ Ð¾Ð±Ñ€Ð¾Ð±ÐºÐ¸ файла налаштувань %s.\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "У %s не знайдено кореневого елемента XML.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s не Ñ” файлом налаштувань tvtime.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "Файл налаштувань не можна обробити. ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ðµ буде збережено.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "Ðеможливо Ñтворити новий файл налаштувань.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "Помилка під Ñ‡Ð°Ñ ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ñ„Ð°Ð¹Ð»Ð° налаштувань.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "Ðеможливо змінити влаÑника %s: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "tvtime вільне програмне Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ Ð½Ð°Ð¿Ð¸Ñане Billy Biggs, Doug\n" "Bell та іншими. Щоб дізнатиÑÑ Ð´ÐµÑ‚Ð°Ð»Ñ– та умови копіюваннÑ,\n" "переглÑньте наш веб-Ñайт за адреÑою http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 Billy Biggs, Doug Bell,\n" "Alexander S. Belov, та Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "викориÑтаннÑ: %s [ОПЦІЯ]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen режим 16:9.\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen режим 4:3.\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr " -b, --vbidevice=DEVICE приÑтрій VBI (типовий /dev/vbi0).\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr "" " -c, --channel=CHANNEL ÐалаштуватиÑÑ Ð½Ð° заданий канал під Ñ‡Ð°Ñ " "завантаженнÑ.\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr " -d, --device=ПРИСТРІЙ приÑтрій video4linux (типовий — " #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=NAME Ð¢Ð°Ð±Ð»Ð¸Ñ†Ñ Ñ‡Ð°Ñтот, що викориÑтовуєтьÑÑ Ñ‚ÑŽÐ½ÐµÑ€Ð¾Ð¼.\n" " (типова - us-cable).\n" "\n" " Можливими значеннÑми Ñ”:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (Ñпочатку запуÑтити tvtime-scanner)\n" "\n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" " -F, --configfile=FILE Додатковий файл налаштувань Ð´Ð»Ñ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ " "параметрів роботи.\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help Показати це довідкове повідомленнÑ.\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr " -g, --geometry=GEOMETRY Ð’Ñтановити розмір вікна виведеннÑ.\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr " -i, --input=INPUTNUM номер входу video4linux (типовий - 0).\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=SAMPLING Горизонтальна роздільна здатніÑть\n" " вхідного Ñигналу (типова - 720 точок).\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" " -k, --slave Вимкнути ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ñ…Ð¾Ð´Ð¾Ð¼ у tvtime (керований " "режим).\n" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr " -m, --fullscreen ЗапуÑк tvtime у повноекранному режимі.\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 msgid " -l, --borderless Start tvtime without a window border.\n" msgstr "" " -l, --borderless ЗапуÑк tvtime без Ð¾Ð±Ñ€Ð°Ð¼Ð»ÐµÐ½Ð½Ñ Ð²Ñ–ÐºÐ½Ð° програми.\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window ЗапуÑк tvtime у віконному режимі.\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=NORM Режим вхідного Ñигналу. tvtime підтримує:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N або PAL-60 (типовий NTSC).\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops Показувати ÑтатиÑтику викинутих кадрів (Ð´Ð»Ñ " "налаштовуваннÑ).\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" " -S, --saveoptions Зберегти параметри командного Ñ€Ñдка до файла " "налаштувань.\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" " -t, --xmltv=FILE Читати XMLTV переліки з вказаного файла.\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=LANG ВикориÑтовувати дані XMLTV заданою мовою, Ñкщо " "вона доÑтупна.\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr "" " -v, --verbose ÐадÑилати зневаджувальні Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð´Ð¾ " "stderr.\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr "" " -X, --display=DISPLAY ВикориÑтовувати вказаний X диÑплей Ð´Ð»Ñ " "з'єднаннÑ.\n" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer=<ПРИСТРІЙ[:КÐÐÐЛ]>|<ПРИСТРІЙ/КÐÐÐЛ>\n" " ПриÑтрій Ð¼Ñ–ÐºÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° канал, Ñким Ñлід " "керувати. За допомогою\n" " першого варіанта вÑтановлюєтьÑÑ Ð¼Ñ–ÐºÑˆÐµÑ€ OSS, " "другого — ALSA.\n" " (типовим Ñ” default/Master)\n" "\n" " Коректні Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÐºÐ°Ð½Ð°Ð»Ñ–Ð² OSS:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr "" " -R, --priority=PRI ЗапуÑтити tvtime з вказаним рівнем приорітету.\n" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" " -p, --alsainputdev=ПРИСТРІЙ Вказує приÑтрій ALSA Ð´Ð»Ñ Ñ‡Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð²Ñ…Ñ–Ð´Ð½Ð¸Ñ… " "даних\n" " Приклади:\n" " " #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" " -P, --alsaoutputdev=ПРИСТРІЙ Вказує приÑтрій ALSA, куди Ñлід виводити " "дані\n" " Приклади:\n" " hw:0,0\n" " disabled\n" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" " -z, --alsalatency=ЧИСЛО Визначає латентніÑть петльового приÑтрою ALSA у " "міліÑекундах\n" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "Ð—Ñ‡Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½ÑŒ з %s\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "ЗапуÑк двох копій tvtime з однаковими налаштуваннÑми неможливий.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "Ð—Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð¾Ð¿Ñ†Ñ–Ð¹ командного Ñ€Ñдка.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "Ðеможливо оновити налаштуваннÑ, Ñкщо tvtime вже запущено.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "ВідÑутній Ñигнал" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "Вимкнути звук" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "Ðеможливо Ñтворити %s: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "Ðеможливо відкрити %s: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" "Ðе вдалоÑÑ Ð·Ð°Ð¿ÑƒÑтити перетворювач UTF-8 до %s: помилка iconv_open (%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " Ðе вдалоÑÑ ÑƒÐ²Ñ–Ð¹Ñ‚Ð¸ до режиму UTF-8 викориÑтовуючи " "bind_textdomain_codeset()\n" " (повернуто %s.) Це може призвеÑти до невірного відображеннÑ\n" " повідомлень! Будь лаÑка повідомте про цю помилку за адреÑою\n" " %s.\n" "\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "ДоÑтупні команди:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "tvtime не працює.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: Ðеможливо відкрити %s: %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: Ðекоректна команда '%s'\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: ÐадіÑлано команду %s з аргументом %s.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: ÐадіÑлано команду %s.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "Пошук з викориÑтаннÑм Ñтандарту ТБ %s.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " Ðа вході %d не знайдено тюнера. Якщо у Ð’Ð°Ñ Ñ” тюнер, будь лаÑка\n" " оберіть інший вхід за допомогою --input=.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "Пошук від %6.2f МГц до %6.2f МГц.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "Перевірено %6.2f MHz:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "Знайдено Ñигнал" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "Знайдено канал з чаÑтотою %6.2f МГц (%.2f - %.2f МГц), додано до ÑпиÑку " "каналів.\n" tvtime-1.0.11/po/sv.gmo0000664000175000017500000005210612663345675011624 00000000000000Þ•è\7œx_y±Ùq‹ÅýÃá ÷'K-sy:íI(KrD¾(A,Gn:¶5ñG'MoM½> ÖJI!FkA²ô '#Kh€)šÄÝäéù  6W6w®µ ÄÏèü  % = T ` t ’ ¥ ¯ (Á ê !, !:! A! L!V!\!u!•!7«!ã!÷!@"2W".Š"¹"À"×"î"&#)#,<#i#}##£# ¸#7Æ#þ#$+1$ ]$k$ƒ$:š$Õ$"Þ$% % (%!I%k%t%$…%$ª% Ï%Ü%÷%&)&2&E&#]&%&§&®& ³&D½& ' ''H.'w'~'Ž'“' §'²'.Æ'+õ'!(3(3I(}((Š( ž(¬(Æ(×( ñ()) )1)A)W) \)h))q)!›) ½) Þ)è)2ø)+*@*I*Z*k*s*‰*‘*#¢*Æ*ß*þ*+8+>+P+(o+˜+±+Î+ç+,!,5, >, K,W, ^,)i,!“,(µ,3Þ,.-A-_-2x-&«-&Ò-ù-.7.T.c.~.›.$³.Ø.Þ.î. /#/ 8/C/Y/k/*/ª/Ç/Û/ò/ö/0$0-A0-o0&0%Ä0+ê01'1.1E1[1z11e§1m 3Å{3ƒA4·Å4L}5Ê6å6(õ7P8qo8<á8D9Pc9?´9)ô9?:7^:E–:>Ü:F;Db;t§;><Ê[<r&=?™=FÙ=( >I>(f>>­>É>,å>?-?4?9?N? c?p?&Š?$±?;Ö?@@ -@8@L@%c@‰@˜@´@Î@á@&þ@%A >AIA+\A%ˆA®A/·AçA ìA ÷AB B",BOB=fB¤B#¼BAàBB"C9eCŸC ¨CÉCÜC*ïCD )DJDbDvDD ¦D?²DòDE ,EME^E|EM˜EæE&ïEFF 8F!YF{F‚F$’F$·F ÜF éF G&G AGMGcG&|G+£GÏGÖG ÞGSêG >HHHXHNhH ·HÁHÐHÕH ñHûH<I<KIˆIŸI3´IèIñIöI J J>JUJ!pJ’J™J¢J¸JÌJäJ óJÿJ'K$:K%_K …K’K1¤KÖK íK ûK L L*L?LDL#WL{L#L´L#ÎLòL÷L M+*M VM cM„M5¢M ØMùM N N$N-N 6N5DN$zN6ŸN=ÖN9O!NOpO4ŽOÃO'ÙOP$P"DPgP vP"—PºP.ÓPQ QQ;QUQ!rQ”Q¯Q ÄQ'ÐQøQR%RÒPYLDmÛ‘Œ#´ŠQ¥V¿N¦~oMÓ:{SÚIÀ˜ žq…†d[-ZŸ&aÜ=< Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -X, --display=DISPLAY Use the given X display to connect to. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -k, --slave Disables input handling in tvtime (slave mode). -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange NTSC cable modeChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed caption display failed to initialize, disabled. Closed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.Standard (720 pixels)Stop channel scanTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: tvtime 0.9.13 Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2005-04-14 00:15+0200 Last-Translator: Per von Zweigbergk Language-Team: Per von Zweigbergk Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Kunde inte avstÃ¥ frÃ¥n root-rättigheter: %s. tvtime avslutas för att undvika säkerhetsproblem. Kunde inte aktivera UTF-8-läge via bind_textdomain_codeset() (funktionen returnerade %s.) Det här kan orsaka att meddelanden inte visas korrekt! Var god felanmäl detta pÃ¥ %s. Ingen kanalväljare funnen pÃ¥ källa %d. Om du har en kanalväljare, välj en annan källa med hjälp av --input=. Din capture-drivrutin, %s, verkar inte stödja capture vid full bildfrekvens. Var god kontrollera att drivrutinen är rätt inställd, och att du valt rätt enhet (%s). Din capture-drivrutin, %s, ger inte tillräckligt mÃ¥nga buffrar för att tvtime ska kunna behandla bilden. Kontrollera drivrutinens dokumentation, för att se om du kan öka antalet buffrar som drivrutinen lÃ¥ter program hantera, och rapportera den här incidenten via tvtimes buggrapporteringssystem pÃ¥ %s. Tillgängliga kommandon: tvtime är fri programvara, skriven av Billy Biggs, Doug Bell, och mÃ¥nga andra. För mer information och spridningsvillkor, se vÃ¥r webbsida: http://tvtime.net/ tvtime är Copyright © 2001, 2002, 2003 Billy Biggs, Doug Bell, Alexander S. Belov, och Achim Schneider. -A, --nowidescreen 4:3-läge. -F, --configfile=FIL En ytterligare fil att ladda inställningar frÃ¥n. -I, --inputwidth=SAMPLING VÃ¥grät bildupplösning (720 bildpunkter om ej vald). -M, --window Starta tvtime i fönsterläge. -R, --prioritet=PRI Ställ in tvtime-processens prioritet. -S, --saveoptions Spara kommandoradsalternativ i inställningsfilen. -X, --display=DISPLAY Anslut till specifierad X-server. -a, --widescreen 16:9-läge. -b, --vbidevice=ENHET VBI-enhet (/dev/vbi0 om ej vald). -c, --channel=KANAL Välj kanal vid uppstart. -g, --geometry=GEOMETRI Ställer in visningsfönstrets storlek. -h, --help Visa det här hjälpmeddelandet. -i, --input=SIGNALNUMMER video4linux signalnummer (0 om ej vald). -k, --slave Stäng av signalhantering (slavläge). -l, --xmltvlanguage=SPRÃ…K Använd XMLTV-data i ett givet sprÃ¥k, om tillgängligt. -m, --fullsreen Starta tvtime i helskärmsläge. -n, --norm=NORM Välj tv-standard. tvtime stödjer: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N och PAL-60 (NTSC om ej vald). -s, --showdrops Visa statistik för missade bildrutor (för avlusning). -t, --xmltv=FIL Läs XMLTV-tablÃ¥er frÃ¥n en fil. -v, --verbose Skriv avlusningsmeddelanden till stderr. %s Aktuell inställning: %d bildpunkter%s Maximal (%d bildpunkter)%s är inte en tvtime-inställningsfil. %s: Kan inte tilldela minne. %s: Kan inte öppna %s: %s %s: Ogiltigt kommando "%s" %s: Sänder kommandot %s med argumentet %s. %s: Sänder kommandot %s. 1,85:116:916:9 + Översvepning16:9-visning aktivt.16:9-visning2:3-matnings-kompensering2:3-matnings-kompensering inaktiverad.2:3-matnings-kompensering aktiverad.2:3-matning-kompensering ej relevant för vald tv-standard.2,35:14:3 + Översvepning4:3 mitten4:3-visning aktivt.Lägg till denna kanalAlla kanaler visas nu vid bläddring.Alltid-överstAlltid-överst inaktiverat.Alltid-överst aktiverat.Lägg pÃ¥ bildmaskMÃ¥lvärde för bildfrekvensMÃ¥lvärde för bildfrekvens: %.2f b/sExtra ljudförstärkningAustralienAustralien (Optus)Genomsnittlig blit-tid: %.2f ms (%.0f MB/s)Genomsnittlig renderingstid: %5.2f msTillbakaBlit-intervall: %4.1f/%4.1f ms (mÃ¥l: %4.1f ms)NereLjusstyrkaMarksänd TVKabel-tvKabel-tv med över 100 kanalerKan inte byta ägare för %s: %s. Kan inte skapa %s: %s Kan inte skapa FIFO -- fjärrstyrning av tvtime inaktiverat. Kan inte öppna %s: %s Kan inte öppna capture-enheten %s.Kan inte köra tvÃ¥ instanser av tvtime med samma konfiguration. Kan inte uppdatera inställningsfilen samtidigt som tvtime körs. Tvtime kommer inte ställa in capture-kortets ljudstyrka.I mittenÄndra läge för NTSC-kabel-tv.Byt frekvenstabellÄndra videokällaKanalen visas inte längre vid bläddring.KanalhanteringKanalen visas nu vid bläddring.Kontrollerar %6.2f MHz:Kina (Marksänd TV)Färgspärr inaktiverad.Färgspärr aktiverad.FärgspärrKunde inte initiera visning av closed captions -- inaktiverad. Closed captions inaktiverade.Closed captions aktiverade.Kanalens färger avkodas som %s.FärginverteringFärginvertering inaktiverad.Färginvertering aktiverad.Inställningsfilen kunde inte tolkas. Inställningar kommer inte att sparas. KontrastKunde inte skapa ny inställningsfil. AktuellVisa kanal vid bläddringBeskrivning av vald deinterlacerEgen (kör tvtime-scanner först)MinskaFörvalt sprÃ¥kAvkodar ljud som PAL-BK som förval.Avkodar ljud som PAL-DK som förval.DeinterlacerInställningar för deinterlacerBeskrivning av deinterlacerInaktivera signaldetektornInaktiveratMissade bildrutor: %dAktivera signaldetektornFel vid skapande av inställningsfil. Fel vid tolkning av inställningsfilen %s. EuropaAvslutaStäng menyKan ej initiera teckenkonverterare (frÃ¥n UTF-8 till %s): fel vid iconv_open (%s). FavoriterFininställningFininställningHittade en kanal pÃ¥ %6.2f MHz (%.2f - %.2f MHz), lägger till i kanallistan. FrankrikeFrekvenstabellFullFull bildfrekvens: %.2f b/sHelskärmHelskärmspositionHalv bildfrekvens, deinterlacear nedre bildfälten: %.2f b/sHalv bildfrekvens, deinterlacear övre bildfälten: %.2f b/sHög (768 bildpunkter)VÃ¥grät upplösningVÃ¥grät upplösning blir %d punkter efter omstart.FärgtonÖkaKällsignalinställningarSignalfilterSignal: %s vid %dx%d bildpunkterLÃ¥g (360 bildpunkter)Bildmaskering (4:3-signal)Bildmaskering (Anamorfisk signal)MellanSpeglingSpegling inaktiverad.Spegling aktiverad.Medel (576 bildpunkter)Ljud avstängtNya ZeelandNästa program: %sIngen VBI-enhet vald för CC-avkodning.Inget XML-rotelement hittades i %s. Ingen programinformation tillgängligIngen signalIngen videokällaKunde inte initiera menysystemet -- inaktiverat. VisningsinställningarÖversvepningÖversvepningÖversvepning: %.1f%%Stillbild.Uppskattad prestandaBildBildinställningarBildinställningarna Ã¥terställda.Önskat XMLTV-sprÃ¥kBehandlar endast undre bildfälten.Behandlar alla bildfält.Behandlar endast övre bildfälten.TystTysta skärmdumparLäser inställningar frÃ¥n %s Flyttar kanal %d. Mata in nytt kanalnummer.Flytta kanalVisa alla kanaler vid bläddringÃ…tergÃ¥ till sparade förvalÄndra fönstrets storlek för att matcha innehÃ¥lletStarta om med nya inställningarStartar om tvtime. Fortsätter.Kör %s. Kör: %sRysslandFärgmättnadSpara bildinställningar som förval för denna kanalSpara bildinställningar som förvalSpara bildinställningar som förval för alla kanalerBildinställningarna sparades som förval för alla kanaler. Bildinställningarna sparades som förval för kanal %d. Sparar kommandoradsalternativen. Sök efter kanaler med signalSignaldetektorn mÃ¥ste aktiveras för kanalsökning.Söker efter kanaler.Söker frÃ¥n %6.2f MHz till %6.2f MHz. Söker med tv-standarden %s. Skärmdumpsmeddelanden inaktiverade.Skärmdumpsmeddelanden aktiverade.Skärmdump: %sVälj PAL-läge för denna kanalVälj SECAM-läge för denna kanalVälj helskärmspositionStäller capture-kortets ljudstyrka till %d%%.InställningarSignal funnenSignaldetektor inaktiverad.Signaldetektor aktiverad.Insomningstimer: %d minuter.Insomningsfunktionen inaktiverad.Standard (720 bildpunkter)Stoppa kanalsökningTV-standardVald TV-standard blir %s efter omstart.Tack för denna gÃ¥ng! XDS-avkodning av/pÃ¥Closed captions av/pÃ¥UppeOkänt sprÃ¥kAnvänder frekvenser för HRC-kabel-tv.Använder frekvenser för IRC-kabel-tv.Använder PAL-BG-avkodning för den här kanalens ljud.Använder PAL-DK-avkodning för den här kanalens ljud.Använder förvalt sprÃ¥k för XMLTV-data.Använder standardfrekvenser för NTSC-kabel-tv.Använder okänt sprÃ¥k (%s) för XMLTV-data.VideobehandlingLjudstyrkaXDS-avkodning inaktiverad.XDS-avkodning aktiverad.XMLTV-sprÃ¥k ställt till %s (%s).tvtime är inte igÃ¥ng. användning: %s [ALTERNATIV]... tvtime-1.0.11/po/ca.po0000664000175000017500000011421412663345675011412 00000000000000# Robert Antoni Buj Gelonch , 2015. #zanata msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2015-11-26 05:02-0500\n" "Last-Translator: Robert Antoni Buj Gelonch \n" "Language-Team: Catalan\n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Zanata 3.8.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "Configuració de l'eina de desentrellaçat" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "Enrere" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "Taxa completa: %.2f fps" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "Taxa mitja, desentrellaça els camps superiors: %.2f fps" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "Taxa mitja, desentrellaça els camps inferiors: %.2f fps" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "Ajust de la sobre-exploració" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "Aplica l'estora" #: src/tvtime.c:909 msgid "16:9 output" msgstr "sortida 16:9" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "Redimensiona la finestra perquè coincideixi amb el contingut" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "Pantalla completa" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "Estableix la posició de la pantalla completa" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "Sempre per damunt" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Captures de pantalla en silenci" #: src/tvtime.c:968 msgid "Centre" msgstr "Centre" #: src/tvtime.c:975 msgid "Top" msgstr "Superior" #: src/tvtime.c:981 msgid "Bottom" msgstr "Inferior" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "S'ha intentat la taxa de fotogrames" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "Estimacions del rendiment" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "Eina de desentrellaçat" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "Entrada: %s a %dx%d píxels" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "Taxa de fotogrames que es va provar: %.2f fps" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "Temps mitjà del BLIT: %.2f ms (%.0f MB/s)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "Temps mitjà de l'eina de renderitzat: %5.2f ms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Fotogrames rebutjats: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Espai del BLIT: %4.1f/%4.1f ms (vol %4.1f ms)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + sobre-exploració" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1.85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2.35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "centre 4:3" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "16:10" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + sobre-exploració" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "Ajust de l'estora (entrada anamòrfica)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "Ajust de l'estora (entrada 4:3)" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: No pot assignar memòria.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "No es pot obrir el dispositiu de captura %s." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " La vostra targeta capturadora, %s, no sembla\n" " que admeti la captura de tota la taxa de fotogrames. Si us plau, " "comproveu\n" " que estigui configurada correctament, o que no hàgiu seleccionat un\n" " dispositiu equivocat (%s).\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " La vostra targeta capturadora, %s, no està proporcionant\n" " prou memòria temporal perquè tvtime processi el vídeo. Si us plau, " "comproveu\n" " la documentació del vostre controlador per veure si podeu incrementar " "la\n" " memòria temporal que es proporciona a les aplicacions, i informeu d'això " "a\n" " l'eina de seguiment d'errors de programari del tvtime a %s\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "La visualització en pantalla no es pot inicialitzar i s'inhabilita.\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "Sense origen de vídeo" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "" "No es pot crear la FIFO, el control remot de tvtime està deshabilitat.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "No s'han pogut inicialitzar els subtítols i s'inhabiliten.\n" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "Sempre per damunt està habilitat." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "Sempre per damunt està deshabilitat." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "El mode de visualització 16:9 està actiu." #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "El mode de visualització 4:3 està actiu." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "Els missatges de captura de pantalla estan deshabilitats." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "Els missatges de captura de pantalla estan habilitats." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "La inversió desplegable 2-3 està inhabilitada." #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "La inversió desplegable 2-3 està habilitada." #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "La inversió desplegable 2-3 no és vàlida amb la vostra norma de TV." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Captura de pantalla: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "S'està reiniciant tvtime.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "Gràcies per utilitzar tvtime.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " No s'ha pogut baixar els privilegis de root: %s.\n" " tvtime sortirà ara per evitar problemes de seguretat.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "Execució de %s.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "Actual" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "No hi ha cap informació del programa" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "Següent: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "Torna a numerar el canal actual" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "Canal actiu actualment a la llista" #: src/commands.c:346 msgid "Stop channel scan" msgstr "Atura l'exploració dels canals" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "Exploració dels canals pel senyal" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "Restableix tots els canals com a actius" #: src/commands.c:364 msgid "Finetune current channel" msgstr "Afina el canal actual" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "Canvia al mode NTSC de cable" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "Estableix el canal actual com a SECAM" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "Estableix el canal actual com a PAL" #: src/commands.c:393 msgid "Switch audio standard" msgstr "Canvia l'estàndard de l'àudio" #: src/commands.c:400 msgid "Change frequency table" msgstr "Canvia la taula de les freqüències" #: src/commands.c:406 msgid "Disable signal detection" msgstr "Inhabilita de detecció del senyal" #: src/commands.c:407 msgid "Enable signal detection" msgstr "Habilita de detecció del senyal" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "Idioma per defecte" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "Idioma desconegut" #: src/commands.c:623 msgid "Change default audio standard" msgstr "Canvia l'estàndard d'àudio per defecte" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "Potenciació del volum de l'àudio" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "Estàndard de televisió" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "Resolució horitzontal" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Cable" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Redifusió" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Cable amb 100+ canals" #: src/commands.c:709 msgid "Europe" msgstr "Europa" #: src/commands.c:717 msgid "Russia" msgstr "Rússia" #: src/commands.c:724 msgid "France" msgstr "França" #: src/commands.c:731 msgid "Australia" msgstr "Austràlia" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "Austràlia (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "Nova Zelanda" #: src/commands.c:752 msgid "China Broadcast" msgstr "Redifusió xinesa" #: src/commands.c:759 msgid "South Africa" msgstr "Sud-àfrica" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "Personalitzat (primer executeu tvtime-scanner)" #: src/commands.c:783 msgid "Disabled" msgstr "Inhabilitat" #: src/commands.c:789 msgid "Quiet" msgstr "Silenciós" #: src/commands.c:795 msgid "Medium" msgstr "Mitjà" #: src/commands.c:801 msgid "Full" msgstr "Complet" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s actual: %d píxels" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "Baix (360 píxels)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "Moderat (576 píxels)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Estàndard (720 píxels)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Elevat (768 píxels)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s màxim (%d píxels)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "Reinicia amb els nous ajusts" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "Incrementa" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "Disminueix" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "Inversió desplegable 2-3" #: src/commands.c:962 msgid "Colour invert" msgstr "Inversió del color" #: src/commands.c:970 msgid "Mirror" msgstr "Emmirallament" #: src/commands.c:978 msgid "Chroma killer" msgstr "Assassí de la croma" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "Ajust" #: src/commands.c:1131 msgid "Last Channel" msgstr "Últim canal" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "Gestió del canal" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "Configuració de l'entrada" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "Ajusts de la imatge" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Processament del vídeo" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Configuració de la sortida" #: src/commands.c:1161 msgid "Quit" msgstr "Surt" #: src/commands.c:1192 msgid "Exit menu" msgstr "Menú de sortida" #: src/commands.c:1221 msgid "Frequency table" msgstr "Taula de freqüències" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "Afina" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "Canvia l'origen del vídeo" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "Commuta els subtítols" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "Commuta la descodificació XDS" #: src/commands.c:1392 msgid "Overscan" msgstr "Sobre-exploració" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Posició de la pantalla completa" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "Descripció de l'eina actual de desentrellaçat" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Filtres d'entrada" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "Descripció de l'eina de desentrellaçat" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Imatge" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "Brillantor" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "Contrast" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "Saturació" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "To" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "Desa els ajusts actuals com als predeterminats" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "Restableix als predeterminats globalment" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "Desa els ajusts actuals com als predeterminats globalment" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "Desa els ajusts actuals com als predeterminats del canal" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "Idioma preferit del XMLTV" #: src/commands.c:1825 msgid "Favorites" msgstr "Preferits" #: src/commands.c:1832 msgid "Add current channel" msgstr "Afegeix el canal actual" #: src/commands.c:1834 msgid "Exit" msgstr "Surt" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Repòs en %d minuts." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "Repòs apagat." #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "S'està utilitzant la descodificació d'àudio PAL-I per aquest canal." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "S'està utilitzant la descodificació d'àudio PAL-DK per aquest canal." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "S'està utilitzant la descodificació d'àudio PAL-BG per aquest canal." #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "S'està definint com per defecte la descodificació d'àudio PAL-I." #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "S'està definint com per defecte la descodificació d'àudio PAL-DK." #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "S'està definint com per defecte la descodificació d'àudio PAL-BG." #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "El canal s'ha marcat com a actiu a la llista d'exploració." #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "El canal s'ha deshabilitat de la llista d'exploració." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "El volum de la targeta de captura no s'establirà amb tvtime." #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "S'està establint el volum de la targeta de captura al %d%%." #: src/commands.c:2380 msgid "Processing every input field." msgstr "S'està processant tot el camp d'entrada." #: src/commands.c:2383 msgid "Processing every top field." msgstr "S'està processant tot el camp superior." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "S'està processant tot el camp inferior." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "La resolució horitzontal serà de %d píxels en reiniciar." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "L'estàndard de televisió serà %s en reiniciar." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "S'està utilitzant l'idioma per defecte per a les dades del XMLTV." #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "S'està utilitzant un idioma desconegut (%s) per a les dades del XMLTV." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "L'idioma XMLTV està establert a %s (%s)." #: src/commands.c:2527 msgid "All channels re-activated." msgstr "Tots els canals estan reactivats." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "Reassignació %d. Introduïu el nou número del canal." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "" "L'eina d'exploració no està disponible amb la comprovació inhabilitada del " "senyal." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "Exploració dels canals que s'estan transmetent." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "Els subtítols estan inhabilitats." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "Els subtítols estan habilitats." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "" "No hi ha cap dispositiu VBI que estigui configurat per a la descodificació " "CC." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "La descodificació del color d'aquest canal està establerta a %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "Execució: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "La detecció del senyal està habilitada." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "La detecció del senyal està inhabilitada." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "La descodificació XDS està habilitada." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "La descodificació XDS està inhabilitada." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "La inversió del color està habilitada." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "La inversió del color està inhabilitada." #: src/commands.c:2822 msgid "Mirror enabled." msgstr "L'emmirallament està habilitat." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "L'emmirallament està inhabilitat." #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "L'assassinat de la croma està habilitat." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "L'assassinat de la croma està inhabilitat." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "Sobre-exploració: %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "Els ajusts de la imatge s'han restablert als predeterminats." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "S'estan utilitzant les freqüències de cable nominals de NTSC. " #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "S'utilitzen les freqüències IRC de cable." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "S'utilitzen les freqüències HRC de cable." #: src/commands.c:3029 msgid "Volume" msgstr "Volum" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "" "S'han desat els ajusts actuals de la imatge com als predeterminats " "globalment.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "S'han desat els ajusts actuals d'imatge al canal %d.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Pausat." #: src/commands.c:3310 msgid "Resumed." msgstr "Reprès." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "S'ha produït un error en analitzar el fitxer %s.\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "No s'ha trobat l'element arrel XML a %s.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s no és un fitxer de configuració de tvtime.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "" "No es pot analitzar el fitxer de configuració. No es desaran els ajusts.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "No s'ha pogut crear el nou fitxer de configuració.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "S'ha produït un error en crear el fitxer de configuració.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "No es pot canviar el propietari de %s: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "tvtime és programari lliure, l'ha escrit en Billy Biggs, en Doug Bell i " "molts\n" "altres. Per als detalls i condicions de còpia, si us plau, visiteu la " "nostra\n" "pàgina web a http://tvtime.net/\n" "\n" "tvtime està sota el Copyright (C) 2001, 2002, 2003 de Billy Biggs, Doug " "Bell,\n" "Alexander S. Belov i Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "ús: %s [OPCIÓ]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen Mode 16:9.\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen Mode 4:3.\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr "" " -b, --vbidevice=DISPOSITIU Dispositiu VBI (per defecte és /dev/vbi0).\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr "" " -c, --channel=CANAL Sintonitza el canal especificat a l'inici.\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 #, fuzzy msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr "" " -d, --device=DISPOSITIU Dispositiu video4linux (per defecte és /dev/" "video0).\n" #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=NOM La taula de freqüències per utilitzar amb el " "sintonitzador.\n" " (per defecte és us-cable).\n" "\n" " Els valors vàlids són:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (primer executeu tvtime-scanner)\n" "\n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" " -F, --configfile=FITXER Fitxer addicional de configuració per carregar " "els ajusts.\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help Mostra aquest missatge d'ajuda.\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr "" " -g, --geometry=GEOMETRIA Estableix les mides de la finestra de sortida.\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr "" " -i, --input=NUMENTRADA Número d'entrada de video4linux (per defecte és " "0).\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=MOSTREIG Resolució horitzontal de l'entrada\n" " (per defecte són 720 píxels).\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" " -k, --slave Inhabilita el tractament de l'entrada al tvtime " "(mode esclau).\n" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr "" " -m, --fullscreen Inicia tvtime en mode pantalla completa.\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 msgid " -l, --borderless Start tvtime without a window border.\n" msgstr "" " -l, --borderless Inicia tvtime sense vores a la finestra.\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window Inicia tvtime en mode finestra.\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=NORMA La norma a utilitzar per a l'entrada. tvtime " "admet:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N o PAL-60 (per defecte és NTSC).\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops Mostra les estadístiques quant als fotogrames " "rebutjats (depuració).\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" " -S, --saveoptions Desa les opcions de la línia d'ordres al fitxer " "de configuració.\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" " -t, --xmltv=FITXER Llegeix els llistats XMLTV del fitxer indicat.\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=LANG Utilitza les dades XMLTV en l'idioma indicat, " "si estan disponibles.\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr "" " -v, --verbose Imprimeix els missatges de depuració al " "stderr.\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr "" " -X, --display=DISPLAY Utilitza el monitor indicat de les X per " "connectar.\n" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer=|\n" " El dispositiu mesclador i el canal a controlar. " "La primera\n" " variant estableix el mesclador OSS i la segona " "el d'ALSA.\n" " (per defecte és default/Master)\n" "\n" " Els canals vàlids per OSS són:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr "" " -R, --priority=PRI Estableix la prioritat per a l'execució de " "tvtime.\n" #: src/tvtimeconf.c:724 #, fuzzy msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" " -p, --alsainputdev=DEV Especifica un dispositiu ALSA per llegir " "l'entrada\n" " Exemples:\n" " hw:1,0\n" " disabled\n" #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" " -P, --alsaoutputdev=DEV Especifica un dispositiu ALSA per escriure-hi " "la sortida\n" " Exemples:\n" " hw:0,0\n" " disabled\n" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "Lectura de la configuració de %s\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "" "No es poden executar dues instàncies de tvtime amb la mateixa configuració.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "S'estan desant les opcions de la línia d'ordres.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "" "No es pot actualitzar la configuració mentre tvtime s'estigui executant.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "Sense senyal" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "Silencia" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "No es pot crear %s: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "No es pot obrir %s: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" "No s'ha pogut inicialitzar UTF-8 al convertidor %s: iconv_open ha fallat " "(%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " No s'ha pogut entrar al mode UTF-8 mitjançant bind_textdomain_codeset()\n" " (va retornar %s.) Això pot provocar que els missatges\n" " no es mostrin correctament! Si us plau, informeu d'aquest error a\n" " %s.\n" "\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "Ordres disponibles:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "tvtime no s'està executant.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: No es pot obrir %s: %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: L'ordre «%s» no és vàlida\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: S'està enviant l'ordre %s amb l'argument %s.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: S'està enviant l'ordre %s.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "Exploració mitjançant l'estàndard %s de TV.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " No s'ha trobat cap sintonitzador en l'entrada %d. Si teniu un " "sintonitzador, si us plau,\n" " seleccioneu una entrada diferent mitjançant --input=.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "Exploració dels %6.2f MHz als %6.2f MHz.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "Comprovant %6.2f MHz:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "Senyal detectat" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "S'ha trobat un canal als %6.2f MHz (%.2f - %.2f MHz) i s'afegeix a la llista " "dels canals.\n" #~ msgid "Preferred audio mode" #~ msgstr "Mode d'àudio preferit" #~ msgid "Mono" #~ msgstr "Mono" #~ msgid "Stereo" #~ msgstr "Estèreo" #~ msgid "SAP" #~ msgstr "SAP" #~ msgid "Primary Language" #~ msgstr "Idioma primari" #~ msgid "Secondary Language" #~ msgstr "Idioma secundari" tvtime-1.0.11/po/lv.po0000664000175000017500000011262512663345675011454 00000000000000# Copyright (C) YEAR Billy Biggs # This file is distributed under the same license as the PACKAGE package. # # Einars Sprugis , 2009. msgid "" msgstr "" "Project-Id-Version: tvtime 1.0.2\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2009-10-21 21:12+0300\n" "Last-Translator: Einars Sprugis \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "AtrindotÄja konfigurÄcija" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "Atpakaļ" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "PilnÄtrums: %.2f kadri/s" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "PusÄtrums, atrindot augšējos laukus: %.2f kadri/s" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "PusÄtrums, atrindot apakšējos laukus: %.2f kadri/s" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "PÄrizvÄ“rÅ¡anas iestatÄ«jumi" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "Uzlikt apdari" #: src/tvtime.c:909 msgid "16:9 output" msgstr "16:9 izvade" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "MainÄ«t loga izmÄ“ru atbilstoÅ¡i saturam" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "PilnekrÄns" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "IestatÄ«t pilnekrÄna novietojumu" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "VienmÄ“r virspusÄ“" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Klusi ekrÄnattÄ“li" #: src/tvtime.c:968 msgid "Centre" msgstr "CentrÄ" #: src/tvtime.c:975 msgid "Top" msgstr "AugÅ¡Ä" #: src/tvtime.c:981 msgid "Bottom" msgstr "ApakÅ¡Ä" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "VÄ“lamÄ kadru frekvence" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "VeiktspÄ“jas novÄ“rtÄ“jums" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "AtrindotÄjs" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "Ievade: %s - %dx%d pikseļi" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "VÄ“lamÄ kadru frekvence: %.2f kadri/s" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "VidÄ“jais 'blit' ilgums: %.2f ms (%.0f MB/s)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "VidÄ“jais renderēšanas ilgums: %5.2f ms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Nomestie kadri: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "'Blit' atstarpe: %4.1f/%4.1f ms (vÄ“lamÄ %4.1f ms)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + pÄrizvÄ“rÅ¡ana" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1.85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2.35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 centrs" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "16:10" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + pÄrizvÄ“rÅ¡ana" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "Apdares iestatÄ«jumi (anamorfiskÄ ievade)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "Apdares iestatÄ«jumi (4:3 ievade)" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: neizdevÄs iedalÄ«t atmiņu.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "NeizdevÄs atvÄ“rt tvÄ“rÄ“jierÄ«ci %s." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " JÅ«su tvÄ“rÄ“jkartes dzinis, %s, šķiet, neatbalsta\n" " pilnu pilnÄtruma tverÅ¡anu. LÅ«dzu, pÄrbaudiet, vai\n" " tas ir pareizi konfigurÄ“ts un vai nav izvÄ“lÄ“ta nepareiza\n" " tvÄ“rÄ“jierÄ«ce (%s).\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " JÅ«su tvÄ“rÄ“jkartes dzinis, %s, nenodroÅ¡ina pietiekamu buferu skaitu,\n" " lai tvtime varÄ“tu apstrÄdÄt video. LÅ«dzu, pÄrbaudiet jÅ«su dziņa\n" " dokumentÄciju, lai redzÄ“tu, vai ir iespÄ“jams palielinÄt programmÄm\n" " pieejamo buferu skaitu, kÄ arÄ« ziņojiet par Å¡o kļūdu tvtime kļūdu\n" " izsekoÅ¡anas sistÄ“mai: %s\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "NeizdevÄs inicializÄ“t uz-ekrÄna-attÄ“lu, atslÄ“gts.\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "Nav video avota" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "NeizdevÄs izveidot FIFO, tvtime tÄlvadÄ«ba atslÄ“gta.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "NeizdevÄs inicializÄ“t slÄ“gto titru rÄdīšanu, atslÄ“gta.\n" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "'VienmÄ“r virspusÄ“' ieslÄ“gts." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "'VienmÄ“r virspusÄ“' atslÄ“gts." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "16:9 ekrÄna režīms aktÄ«vs." #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "4:3 ekrÄna režīms aktÄ«vs." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "EkrÄnattÄ“lu paziņojumi atslÄ“gti." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "EkrÄnattÄ“lu paziņojumi ieslÄ“gti." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "2-3 norauÅ¡anas (pulldown) inversija atslÄ“gta." #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "2-3 norauÅ¡anas (pulldown) inversija ieslÄ“gta." #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "2-3 norauÅ¡ana (pulldown) nav derÄ«ga jÅ«su TV standartam." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "EkrÄnattÄ“ls: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "Tvtime tiek pÄrstartÄ“ts.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "Paldies, ka izmantojiet tvtime.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " NeizdevÄs atteikties no root privilēģijÄm: %s.\n" " tvtime tagad aizvÄ“rs programmu, lai izvairÄ«tos no\n" " drošības problÄ“mÄm.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "Palaiž %s.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "PaÅ¡reizÄ“jais" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "InformÄcija par programmu nav pieejama" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "NÄkamais: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "PÄrnumurÄ“t paÅ¡reizÄ“jo kanÄlu" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "PaÅ¡reizÄ“jais kanÄls sarakstÄ ir aktÄ«vs." #: src/commands.c:346 msgid "Stop channel scan" msgstr "ApstÄdinÄt kanÄlu meklēšanu" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "MeklÄ“t kanÄlos signÄlu" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "AtstatÄ«t visus kanÄlus kÄ aktÄ«vus" #: src/commands.c:364 msgid "Finetune current channel" msgstr "RegulÄ“t paÅ¡reizÄ“jo kanÄlu" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "MainÄ«t NTSC kabeļa režīmu" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "IestatÄ«t paÅ¡reizÄ“jo kanÄlu kÄ SECAM" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "IestatÄ«t paÅ¡reizÄ“jo kanÄlu kÄ PAL" #: src/commands.c:393 msgid "Switch audio standard" msgstr "PÄrslÄ“gt audio standartu" #: src/commands.c:400 msgid "Change frequency table" msgstr "MainÄ«t frekvenÄu tabulu" #: src/commands.c:406 msgid "Disable signal detection" msgstr "AtslÄ“gt signÄla noteikÅ¡anu" #: src/commands.c:407 msgid "Enable signal detection" msgstr "IeslÄ“gt signÄla noteikÅ¡anu" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "NoklusÄ“tÄ valoda" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "NezinÄma valoda" #: src/commands.c:623 msgid "Change default audio standard" msgstr "MainÄ«t noklusÄ“to audio standartu" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "Audio skaļuma paaugstinÄÅ¡ana" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "TelevÄ«zijas standarts" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "HorizontÄlÄ izšķirtspÄ“ja" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Kabelis" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Apraide" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Kabelis ar vairÄk nekÄ 100 kanÄliem" #: src/commands.c:709 msgid "Europe" msgstr "Eiropa" #: src/commands.c:717 msgid "Russia" msgstr "Krievija" #: src/commands.c:724 msgid "France" msgstr "Francija" #: src/commands.c:731 msgid "Australia" msgstr "AustrÄlija" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "AustrÄlija (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "JaunzÄ“lande" #: src/commands.c:752 msgid "China Broadcast" msgstr "Ķīnas apraide" #: src/commands.c:759 msgid "South Africa" msgstr "DienvidÄfrika" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "PielÄgots (vispirms palaist tvtime-scanner)" #: src/commands.c:783 msgid "Disabled" msgstr "AtslÄ“gts" #: src/commands.c:789 msgid "Quiet" msgstr "Kluss" #: src/commands.c:795 msgid "Medium" msgstr "VidÄ“js" #: src/commands.c:801 msgid "Full" msgstr "Pilns" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s PaÅ¡reizÄ“jÄ: %d pikseļi" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "Zema (360 pikseļi)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "VidÄ“ja (576 pikseļi)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Standarta (720 pikseļi)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Augsta (768 pikseļi)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s MaksimÄlÄ (%d pikseļi)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "PÄrstartÄ“t ar jaunajiem iestatÄ«jumiem" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "PalielinÄt" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "SamazinÄt" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "2-3 norauÅ¡anas (pulldown) inversija" #: src/commands.c:962 msgid "Colour invert" msgstr "KrÄsu inversija" #: src/commands.c:970 msgid "Mirror" msgstr "SpoguļattÄ“ls" #: src/commands.c:978 msgid "Chroma killer" msgstr "KrÄsu dzēšana" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "IestatÄ«jumi" #: src/commands.c:1131 msgid "Last Channel" msgstr "" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "KanÄlu pÄrvaldÄ«ba" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "Ievades konfigurÄcija" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "AttÄ“la iestatÄ«jumi" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Video apstrÄde" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Izvades konfigurÄcija" #: src/commands.c:1161 msgid "Quit" msgstr "" #: src/commands.c:1192 msgid "Exit menu" msgstr "Iziet no izvÄ“lnes" #: src/commands.c:1221 msgid "Frequency table" msgstr "FrekvenÄu tabula" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "RegulÄ“t" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "MainÄ«t video avotu" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "PÄrslÄ“gt slÄ“gtos titrus" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "PÄrslÄ“gt XDS dekodēšanu" #: src/commands.c:1392 msgid "Overscan" msgstr "PÄrizvÄ“rÅ¡ana" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "PilnekrÄna novietojums" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "PaÅ¡reizÄ“jÄ atrindotÄja apraksts" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Ievades filtri" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "AtrindotÄja apraksts" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "AttÄ“ls" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "Spilgtums" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "Kontrasts" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "PiesÄtinÄjums" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Tonis" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "SaglabÄt paÅ¡reizÄ“jos iestatÄ«jumus kÄ noklusÄ“tos" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "Atjaunot globÄlos noklusÄ“jumus" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "SaglabÄt paÅ¡reizÄ“jos iestatÄ«jumus kÄ globÄlos noklusÄ“tos" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "SaglabÄt paÅ¡reizÄ“jos iestatÄ«jumus kÄ kanÄla noklusÄ“tos" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "VÄ“lamÄ XMLTV valoda" #: src/commands.c:1825 msgid "Favorites" msgstr "Izlase" #: src/commands.c:1832 msgid "Add current channel" msgstr "Pievienot paÅ¡reizÄ“jo kanÄlu" #: src/commands.c:1834 msgid "Exit" msgstr "Iziet" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Iemigt pÄ“c %d minÅ«tÄ“m." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "IemigÅ¡ana izslÄ“gta." #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "Tiek lietota PAL-I audio dekodēšana Å¡im kanÄlam." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "Tiek lietota PAL-DK audio dekodēšana Å¡im kanÄlam." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "Tiek lietota PAL-BG audio dekodēšana Å¡im kanÄlam." #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "KÄ noklusÄ“to iestata PAL-I audio dekodēšanu." #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "KÄ noklusÄ“to iestata PAL-DK audio dekodēšanu." #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "KÄ noklusÄ“to iestata PAL-BG audio dekodēšanu." #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "KanÄls pÄrlÅ«koÅ¡anas sarakstÄ atzÄ«mÄ“ts kÄ aktÄ«vs." #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "KanÄls izņemts no pÄrlÅ«koÅ¡anas saraksta." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "Tvtime neiestatÄ«s tvÄ“rÄ“jkartes skaļumu." #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "Iestata tvÄ“rÄ“jkartes skaļumu uz %d%%." #: src/commands.c:2380 msgid "Processing every input field." msgstr "ApstrÄdÄ katru ievades lauku." #: src/commands.c:2383 msgid "Processing every top field." msgstr "ApstrÄdÄ katru augšējo lauku." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "ApstrÄdÄ katru apakšējo lauku." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "PÄ“c pÄrstartēšanas horizontÄlÄ izšķirtspÄ“ja bÅ«s %d pikseļi." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "PÄ“c pÄrstartēšanas televÄ«zijas standarts bÅ«s %s." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "XMLTV datiem tiek lietota noklusÄ“tÄ valoda." #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "XMLTV datiem tiek lietota nezinÄma (%s) valoda." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "XMLTV valoda iestatÄ«ta uz %s (%s)." #: src/commands.c:2527 msgid "All channels re-activated." msgstr "Visi kanÄli reaktivÄ“ti." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "PÄrnumurÄ“ %d. Ievadiet jaunu kanÄla numuru." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "Ja signÄla pÄrbaude ir atslÄ“gta, meklÄ“tÄjs nav pieejams." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "MeklÄ“ apraidÄ“ esoÅ¡os kanÄlus." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "SlÄ“gtie titri atslÄ“gti." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "SlÄ“gtie titri ieslÄ“gti." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "CC dekodēšanai nav konfigurÄ“ta neviena VBI ierÄ«ce." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "KrÄsu dekodēšana Å¡im kanÄlam iestatÄ«ta uz %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "Darbojas: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "SignÄla noteikÅ¡ana ieslÄ“gta." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "SignÄla noteikÅ¡ana atslÄ“gta." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "XDS dekodēšana ieslÄ“gta." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "XDS dekodēšana atslÄ“gta." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "KrÄsu inversija ieslÄ“gta." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "KrÄsu inversija izslÄ“gta." #: src/commands.c:2822 msgid "Mirror enabled." msgstr "SpoguļattÄ“ls ieslÄ“gts." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "SpoguļattÄ“ls izslÄ“gts." #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "KrÄsu dzēšana ieslÄ“gta." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "KrÄsu dzēšana atslÄ“gta." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "PÄrizvÄ“rÅ¡ana: %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "AttÄ“la iestatÄ«jumi atjaunoti uz noklusÄ“tajiem." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "Lieto nominÄlÄs NTSC kabeļa frekvences." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "Lieto nominÄlÄs IRC kabeļa frekvences." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "Lieto nominÄlÄs HRC kabeļa frekvences." #: src/commands.c:3029 msgid "Volume" msgstr "Skaļums" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "PaÅ¡reizÄ“jie attÄ“la iestatÄ«jumi saglabÄti kÄ globÄlie noklusÄ“tie.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "PaÅ¡reizÄ“jie attÄ“la iestatÄ«jumi saglabÄti kanÄlam %d.\n" #: src/commands.c:3310 msgid "Paused." msgstr "NopauzÄ“ts." #: src/commands.c:3310 msgid "Resumed." msgstr "Atjaunots." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "Kļūda lasot konfigurÄcijas failu %s.\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "XML saknes elements netika atrasts failÄ %s.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s nav tvtime konfigurÄcijas fails.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "" "KonfigurÄcijas fails nevarÄ“ja tikt nolasÄ«ts. IestatÄ«jumi netiks saglabÄti.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "NeizdevÄs izveidot jaunu konfigurÄcijas failu.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "Kļūda izveidojot konfigurÄcijas failu.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "NeizdevÄs mainÄ«t Ä«paÅ¡nieku %s: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "tvtime ir brÄ«vÄ programmatÅ«ra, ko uzrakstÄ«juÅ¡i Billy Biggs, Doug Bell un\n" "daudzi citi. DetaļÄm un pÄrkopēšanas nosacÄ«jumiem, lÅ«dzu, skatiet mÅ«su\n" "interneta vietni http://tvtime.net/\n" "\n" "AutortiesÄ«bas (C) 2001, 2002, 2003 Billy Biggs, Doug Bell,\n" "Alexander S. Belov un Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "lietoÅ¡ana: %s [OPCIJA]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen 16:9 režīms.\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen 4:3 režīms.\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr " -b, --vbidevice=IERĪCE VBI ierÄ«ce (pÄ“c noklusÄ“juma /dev/vbi0).\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr " -c, --channel=KANÄ€LS Palaižot noregulÄ“t uz norÄdÄ«to kanÄlu.\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 #, fuzzy msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr "" " -d, --device=IERĪCE video4linux ierÄ«ce (pÄ“c noklusÄ“juma /dev/" "video0).\n" #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=NOSAUK. FrekvenÄu tabula, ko izmantot uztvÄ“rÄ“jam\n" " (pÄ“c noklusÄ“juma us-cable).\n" "\n" " AtļautÄs vÄ“rtÄ«bas ir:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (pirmajÄ reizÄ“ tiek palaists tvtime-" "scanner)\n" "\n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" " -F, --configfile=FILE Papildu konfigurÄcijas fails, no kÄ ielÄdÄ“t " "iestatÄ«jumus.\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help ParÄdÄ«t Å¡o palÄ«dzÄ«bas ziņojumu.\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr " -g, --geometry=Ä¢EOMETRIJA Iestata izvades loga izmÄ“ru.\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr "" " -i, --input=NUMURS video4linux ievades numurs (pÄ“c noklusÄ“juma " "0).\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=IZŠĶIRTSPÄ’JA HorizontÄlÄ ievades izšķirtspÄ“ja\n" " (pÄ“c noklusÄ“juma 720 pikseļi).\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" " -k, --slave AtslÄ“dz tvtime ievades apstrÄdi (apstrÄdes " "režīms).\n" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr " -m, --fullscreen Palaiž tvtime pilnekrÄna režīmÄ.\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 #, fuzzy msgid " -l, --borderless Start tvtime without a window border.\n" msgstr " -M, --window Palaiž tvtime loga režīmÄ.\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window Palaiž tvtime loga režīmÄ.\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=STANDARTS Ievadei izmantojamais standarts. tvtime " "atbalsta:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N vai PAL-60 (pÄ“c noklusÄ“juma NTSC).\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops DrukÄt statistiku par kadru nomeÅ¡anu " "(atkļūdoÅ¡anai).\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" " -S, --saveoptions SaglabÄt komandrindas opcijas konfigurÄcijas " "failÄ.\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" " -t, --xmltv=FAILS NolasÄ«t XMLTV sarakstus no norÄdÄ«tÄ faila.\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=VAL Lietot XMLTV datus norÄdÄ«tajÄ valodÄ, ja " "pieejama.\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr "" " -v, --verbose DrukÄt atkļūdoÅ¡anas ziņojumus standarta kļūdu " "izvadÄ“.\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr "" " -X, --display=DISPLEJS Lietot norÄdÄ«to X displeju, lai pievienotos.\n" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 #, fuzzy msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer=IERĪCE[:KANÄ€LS] KontrolÄ“jamÄ miksera ierÄ«ce un kanÄls.\n" " (pÄ“c noklusÄ“juma /dev/mixer:line)\n" "\n" " Atļautie kanÄli ir:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr "" " -R, --priority=PRI Iestata procesa prioritÄti, ar kÄdu palaist " "tvtime.\n" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "Lasa konfigurÄcijas failu no %s\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "" "Nevar palaist divas tvtime intances ar vienu un to paÅ¡u konfigurÄciju.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "SaglabÄ komandrindas opcijas.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "Nevar atjauninÄt konfigurÄciju, kamÄ“r ir palaists tvtime.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "Nav signÄla" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "ApklusinÄt" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "NeizdevÄs izveidot %s: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "NeizdevÄs atvÄ“rt %s: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" "NeizdevÄs inicializÄ“t UTF-8 uz %s pÄrveidotÄju: iconv_open kļūda (%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " NeizdevÄs ieiet UTF-8 režīmÄ, lietojot bind_textdomain_codeset()\n" " (atgrieza %s). Tas var izraisÄ«t ziņojumu nepareizu attÄ“loÅ¡anu!\n" " LÅ«dzu, ziņojiet par Å¡o kļūdu\n" " %s.\n" "\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "PieejamÄs komandas:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "tvtime nav palaists.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: neizdevÄs atvÄ“rt %s: %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: nederÄ«ga komanda '%s'\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: sÅ«ta komandu %s ar argumentu %s.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: sÅ«ta komandu %s.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "MeklÄ“ izmantojot TV standartu %s.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " Ievadei %d netika atrasts neviens uztvÄ“rÄ“js. Ja jums tÄds ir, lÅ«dzu,\n" " izvÄ“lieties citu ievadi, izmantojot --input=.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "MeklÄ“ no %6.2f MHz lÄ«dz %6.2f MHz.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "PÄrbauda %6.2f MHz:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "Noteikts signÄls" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "Atrasts kanÄls frekvencÄ“ %6.2f MHz (%.2f - %.2f MHz), pievieno kanÄlu " "sarakstam.\n" #~ msgid "Preferred audio mode" #~ msgstr "VÄ“lamais audio režīms" #~ msgid "Mono" #~ msgstr "Mono" #~ msgid "Stereo" #~ msgstr "Stereo" #~ msgid "SAP" #~ msgstr "SAP" #~ msgid "Primary Language" #~ msgstr "GalvenÄ valoda" #~ msgid "Secondary Language" #~ msgstr "OtrÄ valoda" #~ msgid "" #~ "\n" #~ " You are using the bttv driver, but have not configured enough\n" #~ " buffers for tvtime to process the video optimally. This is\n" #~ " true by default with bttv in kernels before 2.4.21. Please\n" #~ " set the option gbuffers=4 when loading bttv. For more\n" #~ " information see our support page at %s\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " JÅ«s izmantojat 'bttv' dzini, bet neesat iestatÄ«jis pietiekamu\n" #~ " buferu skaitu, lai tvtime varÄ“tu apstrÄdÄt video plÅ«smu\n" #~ " optimÄli. Å Äds iestatÄ«jums pÄ“c noklusÄ“juma 'bttv' dzinim\n" #~ " ir kodolos pirms 2.4.21 versijas. LÅ«dzu, ielÄdÄ“jot 'bttv', iestatiet\n" #~ " opciju 'gbuffers=4'. PlaÅ¡Äkai informÄcijai skatiet mÅ«su atbalsta\n" #~ " vietni: %s\n" #~ "\n" tvtime-1.0.11/po/nl.po0000664000175000017500000015135512663345675011447 00000000000000# Dutch translation of tvtime. # Copyright (C) 2003 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the tvtime package. # Vincent van Adrighem , 2003. # msgid "" msgstr "" "Project-Id-Version: tvtime cvs\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2003-10-05 23:25+0200\n" "Last-Translator: Vincent van Adrighem \n" "Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "Deinterlacer configuratie" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "Terug" #: src/tvtime.c:854 src/tvtime.c:997 #, fuzzy, c-format msgid "Full rate: %.2f fps" msgstr "Volledige snelheid: %.2ffps" #: src/tvtime.c:862 src/tvtime.c:1001 #, fuzzy, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "Halve snelheid. bovenste veld deinterlacen: %.2ffps" #: src/tvtime.c:869 src/tvtime.c:1005 #, fuzzy, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "Halve snelheid, onderste veld deinterlacen: %.2ffps" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "Overscan-instellingen" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "'Matte' toepassen" #: src/tvtime.c:909 msgid "16:9 output" msgstr "16:9 uitvoer" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "Volledig scherm" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "Positie volledig scherm instellen" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "Altijd bovenaan" #: src/tvtime.c:951 #, fuzzy msgid "Quiet screenshots" msgstr "Schermafdruk: %s" #: src/tvtime.c:968 msgid "Centre" msgstr "Centreren" #: src/tvtime.c:975 msgid "Top" msgstr "Boven" #: src/tvtime.c:981 msgid "Bottom" msgstr "Onder" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "Gewenste snelheid" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "Geschatte prestaties" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "Deinterlacer" #: src/tvtime.c:1027 #, fuzzy, c-format msgid "Input: %s at %dx%d pixels" msgstr "Invoer: %s op %dx%d" #: src/tvtime.c:1031 #, fuzzy, c-format msgid "Attempted framerate: %.2f fps" msgstr "Weergavesnelheid: %.2ffps" #: src/tvtime.c:1035 #, fuzzy, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "Gemiddelde blit-snelheid: %.2fms (%.0fMB/sec)" #: src/tvtime.c:1039 #, fuzzy, c-format msgid "Average render time: %5.2f ms" msgstr "Gemiddelde opbouw-tijd: %5.2fms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Overgeslagen beeldjes: %d" #: src/tvtime.c:1049 #, fuzzy, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Blit-ruimte: %4.1f/%4.1fms (gewenst %4.1fms)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + Overscan" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1.85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2.35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 gecentreerd" #: src/tvtime.c:1088 src/tvtime.c:1104 #, fuzzy msgid "16:10" msgstr "16:9" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + Overscan" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "'Matte' instellingen (Anamorphische invoer)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "'Matte' instellingen (4:3 invoer)" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, fuzzy, c-format msgid "%s: Cannot allocate memory.\n" msgstr "tvtime: Kan geen extra geheugen reserveren voor frame-opslag.\n" #: src/tvtime.c:1327 #, fuzzy, c-format msgid "Cannot open capture device %s." msgstr "Kan video4linux-apparaat '%s' niet openen." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "" #: src/tvtime.c:1440 msgid "No video source" msgstr "Geen video-bron" #: src/tvtime.c:1484 #, fuzzy msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "tvtime: Kan de map %s niet aanmaken. FIFO uitgeschakeld.\n" #: src/tvtime.c:1502 #, fuzzy msgid "Closed caption display failed to initialize, disabled.\n" msgstr "Ondertiteling uitgeschakeld." #: src/tvtime.c:1726 #, fuzzy msgid "Always-on-top enabled." msgstr "Altijd bovenaan" #: src/tvtime.c:1731 #, fuzzy msgid "Always-on-top disabled." msgstr "Altijd bovenaan" #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "16:9 verhouding." #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "4:3 verhouding." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "" #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "" #: src/tvtime.c:1918 #, fuzzy msgid "2-3 pulldown inversion disabled." msgstr "2-3 pulldown-inversie" #: src/tvtime.c:1921 #, fuzzy msgid "2-3 pulldown inversion enabled." msgstr "2-3 pulldown-inversie" #: src/tvtime.c:1927 #, fuzzy msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "2-3 pulldown-detectie onnodig voor uw TV-standaard." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Schermafdruk: %s" #: src/tvtime.c:2617 #, fuzzy msgid "Restarting tvtime.\n" msgstr "tvtime: Herstarten.\n" #: src/tvtime.c:2621 #, fuzzy msgid "Thank you for using tvtime.\n" msgstr "tvtime: Bedankt voor het gebruiken van tvtime.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" #: src/tvtime.c:2657 #, fuzzy, c-format msgid "Running %s.\n" msgstr "Actief: %s" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "Huidige" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "" #: src/commands.c:325 msgid "Renumber current channel" msgstr "Huidige kanaal hernummeren" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "Huidige kanaal actief" #: src/commands.c:346 msgid "Stop channel scan" msgstr "Kanaalscan stoppen" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "Kanalen scannen op signalen" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "Alle kanalen activeren" #: src/commands.c:364 msgid "Finetune current channel" msgstr "Huidige kanaal fijnafstemmen" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "NTSC kabelstand veranderen" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "Huidige kanaal instellen als SECAM" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "Huidige kanaal instellen als PAL" #: src/commands.c:393 #, fuzzy msgid "Switch audio standard" msgstr "Televisiestandaard" #: src/commands.c:400 msgid "Change frequency table" msgstr "Frequentietabel veranderen" #: src/commands.c:406 msgid "Disable signal detection" msgstr "Signaaldetectie uitschakelen" #: src/commands.c:407 msgid "Enable signal detection" msgstr "Signaaldetectie inschakelen" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "" #: src/commands.c:623 msgid "Change default audio standard" msgstr "" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "Televisiestandaard" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Kabel" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Via de ether" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Kabel met 100+ kanelen" #: src/commands.c:709 msgid "Europe" msgstr "Europa" #: src/commands.c:717 msgid "Russia" msgstr "Rusland" #: src/commands.c:724 msgid "France" msgstr "Frankrijk" #: src/commands.c:731 msgid "Australia" msgstr "Australië" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "Australië (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "Nieuw Zeeland" #: src/commands.c:752 msgid "China Broadcast" msgstr "China Ether" #: src/commands.c:759 msgid "South Africa" msgstr "" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "Aangepast (start tvtime-scanner)" #: src/commands.c:783 #, fuzzy msgid "Disabled" msgstr "Kabel" #: src/commands.c:789 msgid "Quiet" msgstr "" #: src/commands.c:795 msgid "Medium" msgstr "" #: src/commands.c:801 msgid "Full" msgstr "" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s Huidig: %d beeldpunten" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "Laag (360 beeldpunten)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "Gemiddeld (576 beeldpunten)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Standaard (720 beeldpunten)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Hoog (768 beeldpunten)" #: src/commands.c:848 #, fuzzy, c-format msgid "%s Maximum (%d pixels)" msgstr "%s Huidig: %d beeldpunten" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "Herstarten met nieuwe instellingen" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "Verhogen" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "Verlagen" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "2-3 pulldown-inversie" #: src/commands.c:962 msgid "Colour invert" msgstr "Kleurinversie" #: src/commands.c:970 msgid "Mirror" msgstr "Spiegelen" # Wat is chroma-kill in hemelsnaam? # Volgens dict heeft het met kleurhelderheid en verzadiging te maken. #: src/commands.c:978 msgid "Chroma killer" msgstr "Chroma-killer" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "Instellingen" #: src/commands.c:1131 msgid "Last Channel" msgstr "" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 #, fuzzy msgid "Channel management" msgstr "Kanalenbeheer" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "Invoerconfiguratie" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "Beeldinstellingen" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Videobewerking" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Uitvoerconfiguratie" #: src/commands.c:1161 msgid "Quit" msgstr "" #: src/commands.c:1192 msgid "Exit menu" msgstr "Menu sluiten" #: src/commands.c:1221 msgid "Frequency table" msgstr "Frequentietabel" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "Fijnafstelling" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "Videobron veranderen" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "Ondertiteling in-/uitschakelen" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "XDS-decodering in-/uitschakelen" #: src/commands.c:1392 msgid "Overscan" msgstr "Overscan" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Volledig scherm positie" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "Beschrijving huidige deinterlacer" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Invoerfilters" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "Beschijving deinterlacer" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Beeld" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "Helderheid" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "Contrast" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Hue" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "Huidige instellingen als standaard opslaan" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "Algemene standaardinstellingen herstellen" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "Huidige instellingen als algemene standaard opslaan" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "Huidige instellingen als kanaalstandaard opslaan" #: src/commands.c:1730 src/commands.c:1993 #, fuzzy msgid "Preferred XMLTV language" msgstr "Primaire taal" #: src/commands.c:1825 msgid "Favorites" msgstr "" #: src/commands.c:1832 #, fuzzy msgid "Add current channel" msgstr "Huidige kanaal fijnafstemmen" #: src/commands.c:1834 msgid "Exit" msgstr "Afsluiten" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Slaapstand over %d minuten." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "Slaapstand uit." #: src/commands.c:2238 #, fuzzy, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "Kleurdecodering voor dit kanaal ingesteld op %s." #: src/commands.c:2241 #, fuzzy, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "Kleurdecodering voor dit kanaal ingesteld op %s." #: src/commands.c:2244 #, fuzzy, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "Kleurdecodering voor dit kanaal ingesteld op %s." #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "" #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "" #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "" #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "Kanaal ingeschakeld als actief in de lijst" #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "Kanaal uitgeschakeld in de lijst." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "" #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "" #: src/commands.c:2380 msgid "Processing every input field." msgstr "Verwerken van ieder invoerveld." #: src/commands.c:2383 msgid "Processing every top field." msgstr "Verwerken van ieder bovenste veld." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "Verwerken van ieder onderste veld." #: src/commands.c:2400 #, fuzzy, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "Scherpte zal %d zijn na herstarten." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "Televisiestandaard zal %s zijn na herstarten." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "" #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "" #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "" #: src/commands.c:2527 msgid "All channels re-activated." msgstr "Alle kanalen geactiveerd." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "Verplaatsen van %d. Geef nieuw kanaalnummer." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "Zoeken niet beschikbaar wegens uigeschakelde signaalcontrole." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "Zoeken naar actieve kanalen." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "Ondertiteling uitgeschakeld." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "Ondertiteling ingeschakeld." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "Geen VBI-apparaat ingesteld voor CC-decodering." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "Kleurdecodering voor dit kanaal ingesteld op %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "Actief: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "Signaaldetectie ingeschakeld." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "Signaaldetectie uitgeschakeld." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "XDS-decodering ingeschakeld." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "XDS-decodering uitgeschakeld." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "Kleurinversie ingeschakeld." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "Kleurinversie uitgeschakeld." #: src/commands.c:2822 msgid "Mirror enabled." msgstr "Spiegeling ingeschakeld." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "Spiegeling uitgeschakeld." # Wat is chroma-kill in hemelsnaam? # Volgens dict heeft het met kleurhelderheid en verzadiging te maken. #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "Chroma-kill ingeschakeld." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "Chroma-kill uitgeschakeld." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "Overscan: %1.f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "Standaard beeldinstellingen hersteld." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "" #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "" #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "" #: src/commands.c:3029 msgid "Volume" msgstr "Volume" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "Huidige beeldinstellingen als algemene standaard opgeslagen.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "Huidige beeldinstellingen opgeslagen voor kaneel %d.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Pauze." #: src/commands.c:3310 msgid "Resumed." msgstr "Actief." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr "" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr "" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr "" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr "" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr "" #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr "" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr "" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr "" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr "" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 msgid " -l, --borderless Start tvtime without a window border.\n" msgstr "" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr "" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr "" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr "" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr "" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, fuzzy, c-format msgid "Reading configuration from %s\n" msgstr "Invoerconfiguratie" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" #: src/tvtime-command.c:80 #, fuzzy, c-format msgid "tvtime not running.\n" msgstr "tvtime: Uitvoeren van %s.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 #, fuzzy msgid "Signal detected" msgstr "Signaaldetectie ingeschakeld." #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" #~ msgid "Preferred audio mode" #~ msgstr "Voorkeurs-audiostand" #~ msgid "Mono" #~ msgstr "Mono" #~ msgid "Stereo" #~ msgstr "Stereo" #~ msgid "SAP" #~ msgstr "SAP" #~ msgid "Primary Language" #~ msgstr "Primaire taal" #~ msgid "Secondary Language" #~ msgstr "Secundaire taal" #~ msgid "Frame drop setting" #~ msgstr "Framedrop-instellingen" #~ msgid "" #~ "tvtime: Output driver failed to initialize: no video output available.\n" #~ msgstr "" #~ "tvtime: Initialisatie mislukt van uitvoer-driver. Geen uitvoer " #~ "beschikbaar.\n" #~ msgid "tvtime: Can't initialize input filters.\n" #~ msgstr "tvtime: Kan invoer-filters niet initialiseren.\n" #~ msgid "tvtime: Can't initialize output filters.\n" #~ msgstr "tvtime: Kan uitvoer-filters niet initialiseren.\n" #~ msgid "tvtime: Can't initialize performance monitor, exiting.\n" #~ msgstr "tvtime: Kan prestatie-analyse niet starten. Afgebroken.\n" #~ msgid "tvtime: Can't create stationmanager (no memory?), exiting.\n" #~ msgstr "" #~ "tvtime: Kan kanaalbeheer niet starten (geen geheugen?). Afgebroken.\n" #, fuzzy #~ msgid "Can't open RVR file '%s'." #~ msgstr "Kan rvr-bestand '%s' niet openen." #~ msgid "" #~ "tvtime: Can only get %d frame buffers from V4L. Not enough to continue. " #~ "Exiting.\n" #~ msgstr "" #~ "tvtime: Kan slechts %d frame-buffers van V4L krijgen. Niet genoeg om " #~ "door te gaan. Afgebroken.\n" #~ msgid "" #~ "tvtime: Can only get %d frame buffers from V4L. Limiting deinterlace " #~ "plugins\n" #~ "tvtime: to those which only need 1 field.\n" #~ msgstr "" #~ "tvtime: Kan slechts %d frame-buffers van V4L krijgen. Interlace-" #~ "compensatie plugins\n" #~ "vtime: beperkt tot degene die slechts 1 veld nodig hebben.\n" #~ msgid "" #~ "tvtime: Can only get %d frame buffers from V4L. Limiting deinterlace " #~ "plugins\n" #~ "tvtime: to those which only need 2 fields.\n" #~ msgstr "" #~ "tvtime: Kan slechts %d frame-buffers van V4L krijgen. Interlace-" #~ "compensatie plugins\n" #~ "tvtime: beperkt tot degene die slechts 2 velden nodig hebben.\n" #~ msgid "" #~ "\n" #~ "*** You are using the bttv driver, but without enough gbuffers " #~ "available.\n" #~ "*** See the support page at %s for information\n" #~ "*** on how to increase your gbuffers setting.\n" #~ "\n" #~ msgstr "" #~ "\n" #~ "*** U gebruikt de bttv-driver, maar heeft niet genoeg gbuffers " #~ "beschikbaar.\n" #~ "*** Kijk op de hulppagina op %s voor meer informatie\n" #~ "*** over het verhogen van het aantal gbuffers.\n" #~ "\n" #~ msgid "tvtime: No deinterlacing methods available, exiting.\n" #~ msgstr "" #~ "tvtime: Geen interlace-compensatiemethodes beschikbaar. Afgebroken.\n" #~ msgid "tvtime: OSD initialization failed, OSD disabled.\n" #~ msgstr "tvtime: OSD-initialisatie mislukt. OSD uitgeschakeld.\n" #, fuzzy #~ msgid "" #~ "tvtime: Card requires conversion from UYVY, but we failed to initialize " #~ "our converter!\n" #~ msgstr "" #~ "tvtime: Kaart vereist omzetting van UYVY, maar de omzetter kan niet " #~ "geïnitialiseerd worden!\n" #~ msgid "tvtime: Cannot find FIFO directory. FIFO disabled.\n" #~ msgstr "tvtime: Kan FIFO-map niet vinden. FIFO uitgeschakeld.\n" #~ msgid "tvtime: %s is not a directory. FIFO disabled.\n" #~ msgstr "tvtime: %s is geen map. FIFO uitgeschakeld.\n" #~ msgid "tvtime: You do not own %s. FIFO disabled.\n" #~ msgstr "tvtime: U bent niet de eigenaar van %s. FIFO uitgeschakeld.\n" #, fuzzy #~ msgid "" #~ "tvtime: Cannot stat %s: %s\n" #~ "tvtime: FIFO disabled.\n" #~ msgstr "tvtime: Kan %s niet statten. FIFO uitgeschakeld.\n" #~ msgid "tvtime: Cannot find FIFO file. Failed to create FIFO object.\n" #~ msgstr "" #~ "tvtime: Kan FIFO-bestand niet vinden. Kan FIFO-object niet aanmaken.\n" #~ msgid "" #~ "tvtime: Not reading input from FIFO. Failed to create FIFO object.\n" #~ msgstr "tvtime: Kan niet lezen van FIFO. Kan FIFO-object niet aanmaken.\n" #~ msgid "tvtime: Could not setup console.\n" #~ msgstr "tvtime: Kan terminal niet instellen.\n" #~ msgid "tvtime: Can't create input handler.\n" #~ msgstr "tvtime: Kan invoerafhandeling niet aanmaken.\n" #~ msgid "tvtime: Could not create vbiscreen, closed captions unavailable.\n" #~ msgstr "tvtime: Kan geen vbiscreen aanmaken. Ondertiteling uitgeschakeld.\n" #~ msgid "tvtime: Could not create vbidata.\n" #~ msgstr "tvtime: Kan geen vbidata aanmaken.\n" #~ msgid "Window set as always-on-top." #~ msgstr "Venster altijd bovenaan" #~ msgid "Window set to normal stacking." #~ msgstr "Venster instellen op normale volgorde" #~ msgid "2-3 Pulldown detection disabled." #~ msgstr "2-3 pulldown-detectie uitgeschakeld." #~ msgid "2-3 Pulldown detection enabled." #~ msgstr "2-3 pulldown-detectie ingeschakeld." #, fuzzy #~ msgid "tvtime: Stats using '%s' at %dx%d%s.\n" #~ msgstr "tvtime: Stats voor '%s' op %dx%d.\n" #~ msgid "tvtime: Cleaning up.\n" #~ msgstr "tvtime: Opruimen.\n" #, fuzzy #~ msgid "" #~ "\n" #~ "*** WARNING: This is a DEVELOPMENT version of tvtime.\n" #~ "*** Please do not redistribute snapshots, and please submit\n" #~ "*** bug reports for released versions only!\n" #~ "\n" #~ msgstr "" #~ "\n" #~ "*** LET OP: U maakt gebruik vaneen ONTWIKKELINGSversie van tvtime.\n" #~ "*** We maken tijdens de ontwikkeling vaak dingen kapot. Stuur alleen\n" #~ "*** foutrapporten in over officiële versies!!\n" #~ "\n" #~ msgid "" #~ "\n" #~ "*** /dev/rtc support is needed for smooth video. We STRONGLY recommend\n" #~ "*** that you load the 'rtc' kernel module before starting tvtime,\n" #~ "*** and make sure that your user has access to the device file.\n" #~ "*** See our support page at %s for more information\n" #~ "\n" #~ msgstr "" #~ "\n" #~ "*** /dev/rtc is nodig voor vloeiende weergave. We raden u sterk aan om " #~ "de\n" #~ "*** 'rtc'-kernelmodule te laden voordat u tvtime start.\n" #~ "*** Controleer ook of u als gebruiker wel toegang heeft tot het " #~ "apparaat.\n" #~ "*** Kijk op de hulppagina op %s voor meer informatie\n" #~ "\n" #~ msgid "" #~ "\n" #~ "*** Failed to get 1024hz resolution from /dev/rtc. This will cause\n" #~ "*** video to not be smooth. Please run tvtime as root, or change\n" #~ "*** the maximum resolution by running this command as root:\n" #~ "*** sysctl -w dev.rtc.max-user-freq=1024\n" #~ "*** See our support page at %s for more information\n" #~ "\n" #~ msgstr "" #~ "\n" #~ "*** Kan geen resolutie van 1024 Hz krijgen van /dev/rtc.\n" #~ "*** Beeldweergave zal niet vloeiend zijn. Start tvtime als root, of\n" #~ "*** verander de maximale resolutie met:\n" #~ "*** sysctl -w dev.rtc.max-user-freq=1024\n" #~ "*** Kijk op de hulppagina op %s voor meer informatie\n" #~ "\n" #~ msgid "BT8x8 luma correction" #~ msgstr "BT8x8 luma-correctie" #~ msgid "Sharpness" #~ msgstr "Scherpte" #~ msgid "Colour" #~ msgstr "Kleur" #~ msgid "Add current station" #~ msgstr "Huidige station toevoegen" #~ msgid "Luma correction enabled." #~ msgstr "Luma-correctie ingeschakeld." #~ msgid "Luma correction disabled." #~ msgstr "Luma-correctie uitgeschakeld." #~ msgid "Luma correction value: %.1f" #~ msgstr "Luma-correctiewaarde: %.1f" #~ msgid "Input Configuration" #~ msgstr "Invoerconfiguratie" #~ msgid "" #~ "usage: %s [OPTION]...\n" #~ "\n" #~ " -a, --widescreen 16:9 mode.\n" #~ " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" #~ " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" #~ " -d, --device=DEVICE video4linux device (defaults to /dev/" #~ "video0).\n" #~ " -D, --driver=NAME Output driver to use: Xv, DirectFB, mga,\n" #~ " xmga, matroxtv or SDL (defaults to Xv).\n" #~ " -f, --frequencies=NAME The frequency table to use for the tuner.\n" #~ " (defaults to us-cable).\n" #~ "\n" #~ " Valid values are:\n" #~ " us-cable\n" #~ " us-cable100\n" #~ " us-broadcast\n" #~ " china-broadcast\n" #~ " japan-cable\n" #~ " japan-broadcast\n" #~ " europe\n" #~ " australia\n" #~ " australia-optus\n" #~ " newzealand\n" #~ " france\n" #~ " russia\n" #~ " custom (first run tvtime-scanner)\n" #~ "\n" #~ " -F, --configfile=FILE Additional config file to load settings " #~ "from.\n" #~ " -h, --help Show this help message.\n" #~ " -H, --height=HEIGHT Output window height (defaults to 576).\n" #~ " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" #~ " -I, --inputwidth=SAMPLING video4linux input scanline sampling\n" #~ " (defaults to 720).\n" #~ " -k, --slave Disables input handling in tvtime (slave " #~ "mode).\n" #~ " -m, --fullscreen Start tvtime in fullscreen mode.\n" #~ " -M, --window Start tvtime in window mode.\n" #~ " -n, --norm=NORM The norm to use for the input. tvtime " #~ "supports:\n" #~ " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" #~ " PAL-N or PAL-60 (defaults to NTSC).\n" #~ " -p, --fspos=POS Set the fullscreen position: top, bottom or\n" #~ " centre (default).\n" #~ " -r, --rvr=FILE RVR recorded file to play (for debugging).\n" #~ " -s, --showdrops Print stats on frame drops (for debugging).\n" #~ " -S, --saveoptions Save command line options to the config " #~ "file.\n" #~ " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" #~ " -v, --verbose Print debugging messages to stderr.\n" #~ " -x, --mixer=DEVICE[:CH] The mixer device and channel to control.\n" #~ " (defaults to /dev/mixer:line)\n" #~ "\n" #~ " Valid channels are:\n" #~ " vol, bass, treble, synth, pcm, speaker, " #~ "line,\n" #~ " mic, cd, mix, pcm2, rec, igain, ogain, " #~ "line1,\n" #~ " line2, line3, dig1, dig2, dig3, phin, " #~ "phout,\n" #~ " video, radio, monitor\n" #~ msgstr "" #~ "Gebruik: %s [OPTIES]...\n" #~ "\n" #~ " -a, --widescreen 16:9 stand.\n" #~ " -b, --vbidevice=DEVICE VBI apparaat (standaard: /dev/vbi0).\n" #~ " -c, --channel=KANAAL Starten op dit kanaal.\n" #~ " -d, --device=DEVICE video4linux apparaat (standaard: /dev/" #~ "video0).\n" #~ " -D, --driver=NAAM Beeldweergave: Xv, DirectFB, mga,\n" #~ " xmga, matroxtv or SDL (standaard: Xv).\n" #~ " -f, --frequencies=NAAM De te begruiken frequentietabel.\n" #~ " (standaard: us-cable).\n" #~ "\n" #~ " Geldige waarden zijn:\n" #~ " us-cable\n" #~ " us-cable100\n" #~ " us-broadcast\n" #~ " china-broadcast\n" #~ " japan-cable\n" #~ " japan-broadcast\n" #~ " europe\n" #~ " australia\n" #~ " australia-optus\n" #~ " newzealand\n" #~ " france\n" #~ " russia\n" #~ " custom (eerst tvtime-scanner starten)\n" #~ "\n" #~ " -F, --configfile=BESTAND Extra configuratie om instellingen uit te " #~ "laden.\n" #~ " -h, --help Deze hulptekst weergeven.\n" #~ " -H, --height=HOOGTE Hoogte van venster (standaard: 576).\n" #~ " -i, --input=INVOERNUM video4linux invoernummer (standaard: 0).\n" #~ " -I, --inputwidth=BEMONST video4linux invoer scanlinebemonstering\n" #~ " (standaard: 720).\n" #~ " -k, --slave Schakelt invoercontrole uit (slaafstand).\n" #~ " -m, --fullscreen tvtime schermvullend starten.\n" #~ " -M, --window tvtime in een venster starten.\n" #~ " -n, --norm=NORM De te gebruiken norm voor de invoer. tvtime\n" #~ " ondersteunt:\n" #~ " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" #~ " PAL-N or PAL-60 (standaard: NTSC).\n" #~ " -p, --fspos=POS Positie voor volledig scherm: top, bottom " #~ "of\n" #~ " centre (standaard).\n" #~ " -r, --rvr=BESTAND Af te spelen RVR bestand (voor debuggen).\n" #~ " -s, --showdrops Framedropstatistieken tonen (voor " #~ "debuggen).\n" #~ " -S, --saveoptions Opties van huidige opdracht opslaan in\n" #~ " configuratie.\n" #~ " -t, --xmltv=BESTAND XMLTV inlezen uit dit bestand.\n" #~ " -v, --verbose Debug-info uitvoeren naar stderr.\n" #~ " -x, --mixer=DEVICE[:KAN] Te gebruiken mixerapparaat en -kanaal.\n" #~ " (standaard: /dev/mixer:line)\n" #~ "\n" #~ " Geldige kanalen:\n" #~ " vol, bass, treble, synth, pcm, speaker, " #~ "line,\n" #~ " mic, cd, mix, pcm2, rec, igain, ogain, " #~ "line1,\n" #~ " line2, line3, dig1, dig2, dig3, phin, " #~ "phout,\n" #~ " video, radio, monitor\n" #~ msgid "" #~ "usage: %s [OPTION]...\n" #~ "\n" #~ " -a, --widescreen 16:9 mode.\n" #~ " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" #~ " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" #~ " -d, --device=DEVICE video4linux device (defaults to /dev/" #~ "video0).\n" #~ " -D, --driver=NAME Output driver to use: Xv, DirectFB, mga,\n" #~ " xmga, matroxtv or SDL (defaults to Xv).\n" #~ " -f, --frequencies=NAME The frequency table to use for the tuner.\n" #~ " (defaults to us-cable).\n" #~ "\n" #~ " Valid values are:\n" #~ " us-cable\n" #~ " us-cable100\n" #~ " us-broadcast\n" #~ " china-broadcast\n" #~ " japan-cable\n" #~ " japan-broadcast\n" #~ " europe\n" #~ " australia\n" #~ " australia-optus\n" #~ " newzealand\n" #~ " france\n" #~ " russia\n" #~ "\n" #~ " -F, --configfile=FILE Additional config file to load settings " #~ "from.\n" #~ " -h, --help Show this help message.\n" #~ " -H, --height=HEIGHT Output window height (defaults to 576).\n" #~ " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" #~ " -I, --inputwidth=SAMPLING video4linux input scanline sampling\n" #~ " (defaults to 720).\n" #~ " -m, --fullscreen Start tvtime in fullscreen mode.\n" #~ " -M, --window Start tvtime in window mode.\n" #~ " -n, --norm=NORM The norm to use for the input. tvtime " #~ "supports:\n" #~ " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" #~ " PAL-N or PAL-60 (defaults to NTSC).\n" #~ " -p, --fspos=POS Set the fullscreen position: top, bottom or\n" #~ " centre (default).\n" #~ " -R, --priority=PRI Sets the process priority to run tvtime at.\n" #~ " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" #~ " -X, --display=DISPLAY Use the given X display to connect to.\n" #~ " -x, --mixer=DEVICE[:CH] The mixer device and channel to control.\n" #~ " (defaults to /dev/mixer:line)\n" #~ "\n" #~ " Valid channels are:\n" #~ " vol, bass, treble, synth, pcm, speaker, " #~ "line,\n" #~ " mic, cd, mix, pcm2, rec, igain, ogain, " #~ "line1,\n" #~ " line2, line3, dig1, dig2, dig3, phin, " #~ "phout,\n" #~ " video, radio, monitor\n" #~ msgstr "" #~ "Gebruik: %s [OPTIES]...\n" #~ "\n" #~ " -a, --widescreen 16:9 stand.\n" #~ " -b, --vbidevice=DEVICE VBI apparaat (standaard: /dev/vbi0).\n" #~ " -c, --channel=KANAAL Starten op dit kanaal.\n" #~ " -d, --device=DEVICE video4linux apparaat (standaard: /dev/" #~ "video0).\n" #~ " -D, --driver=NAAM Beeldweergave: Xv, DirectFB, mga,\n" #~ " xmga, matroxtv or SDL (standaard: Xv).\n" #~ " -f, --frequencies=NAAM De te begruiken frequentietabel.\n" #~ " (standaard: us-cable).\n" #~ "\n" #~ " Geldige waarden zijn:\n" #~ " us-cable\n" #~ " us-cable100\n" #~ " us-broadcast\n" #~ " china-broadcast\n" #~ " japan-cable\n" #~ " japan-broadcast\n" #~ " europe\n" #~ " australia\n" #~ " australia-optus\n" #~ " newzealand\n" #~ " france\n" #~ " russia\n" #~ " custom (eerst tvtime-scanner starten)\n" #~ "\n" #~ " -F, --configfile=BESTAND Extra configuratie om instellingen uit te " #~ "laden.\n" #~ " -h, --help Deze hulptekst weergeven.\n" #~ " -H, --height=HOOGTE Hoogte van venster (standaard: 576).\n" #~ " -i, --input=INVOERNUM video4linux invoernummer (standaard: 0).\n" #~ " -I, --inputwidth=BEMONST video4linux invoer scanlinebemonstering\n" #~ " (standaard: 720).\n" #~ " -m, --fullscreen Tvtime schermvullend starten.\n" #~ " -M, --window Tvtime in een venster starten.\n" #~ " -n, --norm=NORM De te gebruiken norm voor de invoer. tvtime\n" #~ " ondersteunt:\n" #~ " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" #~ " PAL-N or PAL-60 (standaard: NTSC).\n" #~ " -p, --fspos=POS Positie voor volledig scherm: top, bottom " #~ "of\n" #~ " centre (standaard).\n" #~ " -R, --priority=PRI Prioriteit van het tvtime proces.\n" #~ " -t, --xmltv=BESTAND XMLTV inlezen uit dit bestand.\n" #~ " -X, --display=SCHERM Het gegeven X-scherm gebruiken.\n" #~ " -x, --mixer=DEVICE[:KAN] Te gebruiken mixerapparaat en -kanaal.\n" #~ " (standaard: /dev/mixer:line)\n" #~ "\n" #~ " Geldige kanalen:\n" #~ " vol, bass, treble, synth, pcm, speaker, " #~ "line,\n" #~ " mic, cd, mix, pcm2, rec, igain, ogain, " #~ "line1,\n" #~ " line2, line3, dig1, dig2, dig3, phin, " #~ "phout,\n" #~ " video, radio, monitor\n" #~ msgid "" #~ "usage: %s [OPTION]...\n" #~ "\n" #~ " -d, --device=DEVICE video4linux device (defaults to /dev/" #~ "video0).\n" #~ " -F, --configfile=FILE Additional config file to load settings " #~ "from.\n" #~ " -h, --help Show this help message.\n" #~ " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" #~ " -n, --norm=NORM The norm to use for the input. tvtime " #~ "supports:\n" #~ " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" #~ " PAL-N or PAL-60 (defaults to NTSC).\n" #~ msgstr "" #~ "Gebruik: %s [OPTIES]...\n" #~ "\n" #~ " -d, --device=DEVICE video4linux apparaat (standaard: /dev/" #~ "video0).\n" #~ " -F, --configfile=BESTAND Extra configuratie om instellingen uit te " #~ "laden.\n" #~ " -h, --help Deze hulptekst weergeven.\n" #~ " -i, --input=INVOERNUM video4linux invoernummer (standaard: 0).\n" #~ " -n, --norm=NORM De te gebruiken norm voor de invoer. tvtime\n" #~ " ondersteunt:\n" #~ " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" #~ " PAL-N or PAL-60 (standaard: NTSC).\n" #, fuzzy #~ msgid "tvtime: Can't initialize configuration (no memory?), exiting.\n" #~ msgstr "tvtime: Kan configuratie-opties niet instellen. Afgebroken.\n" #~ msgid "tvtime: Can't renice to %d.\n" #~ msgstr "tvtime: Kan prioriteit niet instellen op %d.\n" #~ msgid "tvtime: Sending fields to interlaced output devices.\n" #~ msgstr "" #~ "tvtime: Zenden van beeldvelden naar uitvoer-apparaten met interlace " #~ "functionaliteit.\n" #~ msgid "tvtime: Sending frames to interlaced output devices.\n" #~ msgstr "" #~ "tvtime: Zenden van frames naar uitvoer-apparaten met interlace " #~ "functionaliteit.\n" #~ msgid "tvtime: RVR frame sampling %d pixels per scanline.\n" #~ msgstr "tvtime: RVR beeld, %d beeldpunten per scanline.\n" #~ msgid "tvtime: V4L sampling %d pixels per scanline.\n" #~ msgstr "tvtime: V4L beeld, %d beeldpunten per scanline.\n" #~ msgid "tvtime: Can't display input size %dx%d.\n" #~ msgstr "tvtime: Kan invoerafmetingen %dx%d niet weergeven.\n" #, fuzzy #~ msgid "tvtime: Can't initialize command handler.\n" #~ msgstr "tvtime: Kan geen opdrachtafhandeling aanmaken.\n" #, fuzzy #~ msgid "tvtime: Can't initialize input handler.\n" #~ msgstr "tvtime: Kan invoer-filters niet initialiseren.\n" #~ msgid "" #~ "tvtime: Can't get realtime priority for better performance, need root " #~ "access.\n" #~ msgstr "" #~ "tvtime: Kan geen realtime prioriteit krijgen. Dat kan alleen met root-" #~ "toegang.\n" #~ msgid "" #~ "\n" #~ "*** Since your console is set for the %s codeset, rather than UTF-8,\n" #~ "*** console messages may be partially or completely illegible on your " #~ "terminal.\n" #~ "*** This is a known bug, and will probably be fixed for the next release " #~ "of\n" #~ "*** tvtime. You can work around this problem by launching tvtime using a " #~ "UTF-8\n" #~ "*** aware terminal. See %s for more information.\n" #~ "\n" #~ msgstr "" #~ "\n" #~ "*** Omdat uw tekenset niet op UTF-8 staat, maar op %s, zullen de\n" #~ "*** berichten waarschijnlijk deels onleesbaar zijn in uw terminal.\n" #~ "*** Dit is een bekend probleem en zal waarschijnlijk verholpen worden\n" #~ "*** met de eerstvolgende versie van tvtime. U kunt om dit probleem\n" #~ "*** heen werken door gebruik te maken van een UTF-8 compatibele\n" #~ "*** terminal. Kijk op %s voor meer informatie.\n" #~ "\n" #~ msgid "Windowed mode active." #~ msgstr "TV in een venster." tvtime-1.0.11/po/lv.gmo0000664000175000017500000006003012663345675011610 00000000000000Þ•ï”K 8_9±™qKŽƒ¡ ·'ÅKís9:­IèK2D~(ÃAìG.1v:¨5ãGMaM¯>ýÖ< I!F]!A¤!æ!ý!'"="Z"r")Œ"¶"Ï"Ö"Ü"á"ñ" ## .#O#6o#¦#­# ¼#Ç#à#ô# $$5$ L$X$l$Š$ $§$(¹$â$%,%2% 9% D%N%T%m%%7£%Û%ï%@&2O&.‚&±&¸&Ï&í&'&'?',R''“'£'¹' Î'7Ü'(.(+G( s((™(:°(ë("ô()) >)!_))Š)$›)$À)#å) **1*J*c*l**#—*%»*á*è* í*D÷* <+F+O+Hh+±+¸+È+Í+ á+ì+.,+/,[,m,3ƒ,·,»,Ä, Ø,æ,-- +-L-S-Z-k-{-‘- –-¢-)«-!Õ- ÷- .".22.e.z.ƒ.”.¥.­.Ã.Ë.#Ü.//8/V/r/x/Š/(©/Ò/ë/0!0A0[0o0 x0 …0‘0 ˜0)£0!Í0(ï031.L1{1™12²1&å1& 232S2q2Ž22¸2Õ2$í233(3C3]3 r3 }3Š3 3²3È3*Ü34$484O4S4d44-ž4-Ì4,ú4&'5%N5+t5 5±5¸5Ï5å566Ì16þ7ÀŒ8‡M9ÏÕ9R¥:ø;&<+6=\b=‰¿=<I>S†>TÚ>L/?,|?I©?Jó?V>@<•CCÒCODVfDT½DCEÞVEW5FMF[ÛF7GVG%tG!šG¼GÛG&÷GH5H\N›NµN3ÏNOO0OPLO O1§OÙO,èO#P,9P fPqP1„P1¶P0èP Q&QBQXQ vQ€Q“Q*±Q(ÜQR RRM%RsRzRƒRT¡RöRÿRSS 1S=S5US4‹SÀSÖSFôS;T ATMTdTsTT!£T*ÅTðTøTU!U;U RU ^U kU6yU.°U'ßU VV7$V\VsVƒV¡V ¹VÅVàVèV1ýV/W"EWhW!ˆWªW°W!ÄW.æW!X%7X ]X(~X(§XÐX ìX ÷X YYY=*Y5hY?žYIÞY;(ZdZ„Z=žZ!ÜZ%þZ#$[$H[$m[’[&¤[(Ë[!ô[(\ ?\L\^\~\ž\¸\Î\Ý\ ö\]2]6I] €]¡]½]Ø]à])ñ])^5E^5{^4±^-æ^*_0?_p_€_‰_¥_#Á_å_û_ØÇÒ ë¨ÐÄ—¹dÔz¸(7p€81-x±Nì^HÊ ÌÍYäÏB,. ªbè›Ñ5M‡K6Fƒ¢ÀG@ß?íˬ'¤¶ÖE° ç …¡‹ŽÞ•»†Úéu4Ý%Á’¾}˜\·e>Q+åÙ~²mckâ«jq|Vy;µR¥OêD´Ušœ!iÕ”ï–h‰_Éãaæ¿ÆPgº×rt³sÅŒ¼:àvo"„IÎwX*n`3¯Ó“$=îT®C]2á#W§<Afl‚™Ü½ÂS ÛŸ&{ÃÈ/0¦ZŠ) ­L£[9‘ž©ˆJ Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -X, --display=DISPLAY Use the given X display to connect to. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -f, --frequencies=NAME The frequency table to use for the tuner. (defaults to us-cable). Valid values are: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (first run tvtime-scanner) -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -k, --slave Disables input handling in tvtime (slave mode). -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:1016:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange NTSC cable modeChange default audio standardChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed caption display failed to initialize, disabled. Closed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.Defaulting to PAL-I audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.South AfricaStandard (720 pixels)Stop channel scanSwitch audio standardTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using PAL-I audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: tvtime 1.0.2 Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2009-10-21 21:12+0300 Last-Translator: Einars Sprugis Language-Team: Latvian Language: lv MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Lokalize 1.0 Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2); NeizdevÄs atteikties no root privilēģijÄm: %s. tvtime tagad aizvÄ“rs programmu, lai izvairÄ«tos no drošības problÄ“mÄm. NeizdevÄs ieiet UTF-8 režīmÄ, lietojot bind_textdomain_codeset() (atgrieza %s). Tas var izraisÄ«t ziņojumu nepareizu attÄ“loÅ¡anu! LÅ«dzu, ziņojiet par Å¡o kļūdu %s. Ievadei %d netika atrasts neviens uztvÄ“rÄ“js. Ja jums tÄds ir, lÅ«dzu, izvÄ“lieties citu ievadi, izmantojot --input=. JÅ«su tvÄ“rÄ“jkartes dzinis, %s, šķiet, neatbalsta pilnu pilnÄtruma tverÅ¡anu. LÅ«dzu, pÄrbaudiet, vai tas ir pareizi konfigurÄ“ts un vai nav izvÄ“lÄ“ta nepareiza tvÄ“rÄ“jierÄ«ce (%s). JÅ«su tvÄ“rÄ“jkartes dzinis, %s, nenodroÅ¡ina pietiekamu buferu skaitu, lai tvtime varÄ“tu apstrÄdÄt video. LÅ«dzu, pÄrbaudiet jÅ«su dziņa dokumentÄciju, lai redzÄ“tu, vai ir iespÄ“jams palielinÄt programmÄm pieejamo buferu skaitu, kÄ arÄ« ziņojiet par Å¡o kļūdu tvtime kļūdu izsekoÅ¡anas sistÄ“mai: %s PieejamÄs komandas: tvtime ir brÄ«vÄ programmatÅ«ra, ko uzrakstÄ«juÅ¡i Billy Biggs, Doug Bell un daudzi citi. DetaļÄm un pÄrkopēšanas nosacÄ«jumiem, lÅ«dzu, skatiet mÅ«su interneta vietni http://tvtime.net/ AutortiesÄ«bas (C) 2001, 2002, 2003 Billy Biggs, Doug Bell, Alexander S. Belov un Achim Schneider. -A, --nowidescreen 4:3 režīms. -F, --configfile=FILE Papildu konfigurÄcijas fails, no kÄ ielÄdÄ“t iestatÄ«jumus. -I, --inputwidth=IZŠĶIRTSPÄ’JA HorizontÄlÄ ievades izšķirtspÄ“ja (pÄ“c noklusÄ“juma 720 pikseļi). -M, --window Palaiž tvtime loga režīmÄ. -R, --priority=PRI Iestata procesa prioritÄti, ar kÄdu palaist tvtime. -S, --saveoptions SaglabÄt komandrindas opcijas konfigurÄcijas failÄ. -X, --display=DISPLEJS Lietot norÄdÄ«to X displeju, lai pievienotos. -a, --widescreen 16:9 režīms. -b, --vbidevice=IERĪCE VBI ierÄ«ce (pÄ“c noklusÄ“juma /dev/vbi0). -c, --channel=KANÄ€LS Palaižot noregulÄ“t uz norÄdÄ«to kanÄlu. -f, --frequencies=NOSAUK. FrekvenÄu tabula, ko izmantot uztvÄ“rÄ“jam (pÄ“c noklusÄ“juma us-cable). AtļautÄs vÄ“rtÄ«bas ir: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (pirmajÄ reizÄ“ tiek palaists tvtime-scanner) -g, --geometry=Ä¢EOMETRIJA Iestata izvades loga izmÄ“ru. -h, --help ParÄdÄ«t Å¡o palÄ«dzÄ«bas ziņojumu. -i, --input=NUMURS video4linux ievades numurs (pÄ“c noklusÄ“juma 0). -k, --slave AtslÄ“dz tvtime ievades apstrÄdi (apstrÄdes režīms). -l, --xmltvlanguage=VAL Lietot XMLTV datus norÄdÄ«tajÄ valodÄ, ja pieejama. -m, --fullscreen Palaiž tvtime pilnekrÄna režīmÄ. -n, --norm=STANDARTS Ievadei izmantojamais standarts. tvtime atbalsta: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N vai PAL-60 (pÄ“c noklusÄ“juma NTSC). -s, --showdrops DrukÄt statistiku par kadru nomeÅ¡anu (atkļūdoÅ¡anai). -t, --xmltv=FAILS NolasÄ«t XMLTV sarakstus no norÄdÄ«tÄ faila. -v, --verbose DrukÄt atkļūdoÅ¡anas ziņojumus standarta kļūdu izvadÄ“. %s PaÅ¡reizÄ“jÄ: %d pikseļi%s MaksimÄlÄ (%d pikseļi)%s nav tvtime konfigurÄcijas fails. %s: neizdevÄs iedalÄ«t atmiņu. %s: neizdevÄs atvÄ“rt %s: %s %s: nederÄ«ga komanda '%s' %s: sÅ«ta komandu %s ar argumentu %s. %s: sÅ«ta komandu %s. 1.85:116:1016:916:9 + pÄrizvÄ“rÅ¡ana16:9 ekrÄna režīms aktÄ«vs.16:9 izvade2-3 norauÅ¡anas (pulldown) inversija2-3 norauÅ¡anas (pulldown) inversija atslÄ“gta.2-3 norauÅ¡anas (pulldown) inversija ieslÄ“gta.2-3 norauÅ¡ana (pulldown) nav derÄ«ga jÅ«su TV standartam.2.35:14:3 + pÄrizvÄ“rÅ¡ana4:3 centrs4:3 ekrÄna režīms aktÄ«vs.Pievienot paÅ¡reizÄ“jo kanÄluVisi kanÄli reaktivÄ“ti.VienmÄ“r virspusÄ“'VienmÄ“r virspusÄ“' atslÄ“gts.'VienmÄ“r virspusÄ“' ieslÄ“gts.Uzlikt apdariVÄ“lamÄ kadru frekvenceVÄ“lamÄ kadru frekvence: %.2f kadri/sAudio skaļuma paaugstinÄÅ¡anaAustrÄlijaAustrÄlija (Optus)VidÄ“jais 'blit' ilgums: %.2f ms (%.0f MB/s)VidÄ“jais renderēšanas ilgums: %5.2f msAtpakaļ'Blit' atstarpe: %4.1f/%4.1f ms (vÄ“lamÄ %4.1f ms)ApakÅ¡ÄSpilgtumsApraideKabelisKabelis ar vairÄk nekÄ 100 kanÄliemNeizdevÄs mainÄ«t Ä«paÅ¡nieku %s: %s. NeizdevÄs izveidot %s: %s NeizdevÄs izveidot FIFO, tvtime tÄlvadÄ«ba atslÄ“gta. NeizdevÄs atvÄ“rt %s: %s NeizdevÄs atvÄ“rt tvÄ“rÄ“jierÄ«ci %s.Nevar palaist divas tvtime intances ar vienu un to paÅ¡u konfigurÄciju. Nevar atjauninÄt konfigurÄciju, kamÄ“r ir palaists tvtime. Tvtime neiestatÄ«s tvÄ“rÄ“jkartes skaļumu.CentrÄMainÄ«t NTSC kabeļa režīmuMainÄ«t noklusÄ“to audio standartuMainÄ«t frekvenÄu tabuluMainÄ«t video avotuKanÄls izņemts no pÄrlÅ«koÅ¡anas saraksta.KanÄlu pÄrvaldÄ«baKanÄls pÄrlÅ«koÅ¡anas sarakstÄ atzÄ«mÄ“ts kÄ aktÄ«vs.PÄrbauda %6.2f MHz:Ķīnas apraideKrÄsu dzēšana atslÄ“gta.KrÄsu dzēšana ieslÄ“gta.KrÄsu dzēšanaNeizdevÄs inicializÄ“t slÄ“gto titru rÄdīšanu, atslÄ“gta. SlÄ“gtie titri atslÄ“gti.SlÄ“gtie titri ieslÄ“gti.KrÄsu dekodēšana Å¡im kanÄlam iestatÄ«ta uz %s.KrÄsu inversijaKrÄsu inversija izslÄ“gta.KrÄsu inversija ieslÄ“gta.KonfigurÄcijas fails nevarÄ“ja tikt nolasÄ«ts. IestatÄ«jumi netiks saglabÄti. KontrastsNeizdevÄs izveidot jaunu konfigurÄcijas failu. PaÅ¡reizÄ“jaisPaÅ¡reizÄ“jais kanÄls sarakstÄ ir aktÄ«vs.PaÅ¡reizÄ“jÄ atrindotÄja aprakstsPielÄgots (vispirms palaist tvtime-scanner)SamazinÄtNoklusÄ“tÄ valodaKÄ noklusÄ“to iestata PAL-BG audio dekodēšanu.KÄ noklusÄ“to iestata PAL-DK audio dekodēšanu.KÄ noklusÄ“to iestata PAL-I audio dekodēšanu.AtrindotÄjsAtrindotÄja konfigurÄcijaAtrindotÄja aprakstsAtslÄ“gt signÄla noteikÅ¡anuAtslÄ“gtsNomestie kadri: %dIeslÄ“gt signÄla noteikÅ¡anuKļūda izveidojot konfigurÄcijas failu. Kļūda lasot konfigurÄcijas failu %s. EiropaIzietIziet no izvÄ“lnesNeizdevÄs inicializÄ“t UTF-8 uz %s pÄrveidotÄju: iconv_open kļūda (%s). IzlaseRegulÄ“tRegulÄ“t paÅ¡reizÄ“jo kanÄluAtrasts kanÄls frekvencÄ“ %6.2f MHz (%.2f - %.2f MHz), pievieno kanÄlu sarakstam. FrancijaFrekvenÄu tabulaPilnsPilnÄtrums: %.2f kadri/sPilnekrÄnsPilnekrÄna novietojumsPusÄtrums, atrindot apakšējos laukus: %.2f kadri/sPusÄtrums, atrindot augšējos laukus: %.2f kadri/sAugsta (768 pikseļi)HorizontÄlÄ izšķirtspÄ“jaPÄ“c pÄrstartēšanas horizontÄlÄ izšķirtspÄ“ja bÅ«s %d pikseļi.TonisPalielinÄtIevades konfigurÄcijaIevades filtriIevade: %s - %dx%d pikseļiZema (360 pikseļi)Apdares iestatÄ«jumi (4:3 ievade)Apdares iestatÄ«jumi (anamorfiskÄ ievade)VidÄ“jsSpoguļattÄ“lsSpoguļattÄ“ls izslÄ“gts.SpoguļattÄ“ls ieslÄ“gts.VidÄ“ja (576 pikseļi)ApklusinÄtJaunzÄ“landeNÄkamais: %sCC dekodēšanai nav konfigurÄ“ta neviena VBI ierÄ«ce.XML saknes elements netika atrasts failÄ %s. InformÄcija par programmu nav pieejamaNav signÄlaNav video avotaNeizdevÄs inicializÄ“t uz-ekrÄna-attÄ“lu, atslÄ“gts. Izvades konfigurÄcijaPÄrizvÄ“rÅ¡anaPÄrizvÄ“rÅ¡anas iestatÄ«jumiPÄrizvÄ“rÅ¡ana: %.1f%%NopauzÄ“ts.VeiktspÄ“jas novÄ“rtÄ“jumsAttÄ“lsAttÄ“la iestatÄ«jumiAttÄ“la iestatÄ«jumi atjaunoti uz noklusÄ“tajiem.VÄ“lamÄ XMLTV valodaApstrÄdÄ katru apakšējo lauku.ApstrÄdÄ katru ievades lauku.ApstrÄdÄ katru augšējo lauku.KlussKlusi ekrÄnattÄ“liLasa konfigurÄcijas failu no %s PÄrnumurÄ“ %d. Ievadiet jaunu kanÄla numuru.PÄrnumurÄ“t paÅ¡reizÄ“jo kanÄluAtstatÄ«t visus kanÄlus kÄ aktÄ«vusAtjaunot globÄlos noklusÄ“jumusMainÄ«t loga izmÄ“ru atbilstoÅ¡i saturamPÄrstartÄ“t ar jaunajiem iestatÄ«jumiemTvtime tiek pÄrstartÄ“ts. Atjaunots.Palaiž %s. Darbojas: %sKrievijaPiesÄtinÄjumsSaglabÄt paÅ¡reizÄ“jos iestatÄ«jumus kÄ kanÄla noklusÄ“tosSaglabÄt paÅ¡reizÄ“jos iestatÄ«jumus kÄ noklusÄ“tosSaglabÄt paÅ¡reizÄ“jos iestatÄ«jumus kÄ globÄlos noklusÄ“tosPaÅ¡reizÄ“jie attÄ“la iestatÄ«jumi saglabÄti kÄ globÄlie noklusÄ“tie. PaÅ¡reizÄ“jie attÄ“la iestatÄ«jumi saglabÄti kanÄlam %d. SaglabÄ komandrindas opcijas. MeklÄ“t kanÄlos signÄluJa signÄla pÄrbaude ir atslÄ“gta, meklÄ“tÄjs nav pieejams.MeklÄ“ apraidÄ“ esoÅ¡os kanÄlus.MeklÄ“ no %6.2f MHz lÄ«dz %6.2f MHz. MeklÄ“ izmantojot TV standartu %s. EkrÄnattÄ“lu paziņojumi atslÄ“gti.EkrÄnattÄ“lu paziņojumi ieslÄ“gti.EkrÄnattÄ“ls: %sIestatÄ«t paÅ¡reizÄ“jo kanÄlu kÄ PALIestatÄ«t paÅ¡reizÄ“jo kanÄlu kÄ SECAMIestatÄ«t pilnekrÄna novietojumuIestata tvÄ“rÄ“jkartes skaļumu uz %d%%.IestatÄ«jumiNoteikts signÄlsSignÄla noteikÅ¡ana atslÄ“gta.SignÄla noteikÅ¡ana ieslÄ“gta.Iemigt pÄ“c %d minÅ«tÄ“m.IemigÅ¡ana izslÄ“gta.DienvidÄfrikaStandarta (720 pikseļi)ApstÄdinÄt kanÄlu meklēšanuPÄrslÄ“gt audio standartuTelevÄ«zijas standartsPÄ“c pÄrstartēšanas televÄ«zijas standarts bÅ«s %s.Paldies, ka izmantojiet tvtime. PÄrslÄ“gt XDS dekodēšanuPÄrslÄ“gt slÄ“gtos titrusAugÅ¡ÄNezinÄma valodaLieto nominÄlÄs HRC kabeļa frekvences.Lieto nominÄlÄs IRC kabeļa frekvences.Tiek lietota PAL-BG audio dekodēšana Å¡im kanÄlam.Tiek lietota PAL-DK audio dekodēšana Å¡im kanÄlam.Tiek lietota PAL-I audio dekodēšana Å¡im kanÄlam.XMLTV datiem tiek lietota noklusÄ“tÄ valoda.Lieto nominÄlÄs NTSC kabeļa frekvences.XMLTV datiem tiek lietota nezinÄma (%s) valoda.Video apstrÄdeSkaļumsXDS dekodēšana atslÄ“gta.XDS dekodēšana ieslÄ“gta.XMLTV valoda iestatÄ«ta uz %s (%s).tvtime nav palaists. lietoÅ¡ana: %s [OPCIJA]... tvtime-1.0.11/po/fr.po0000664000175000017500000011320112663345675011431 00000000000000# French locale file for tvtime. # Copyright (C) 2005 Alexis Saettler # This file is distributed under the same license as the tvtime package. # # Alexis Saettler , 2005. # Christian Perrier , 2007. msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2015-10-17 12:16-0300\n" "Last-Translator: Mauro Carvalho Chehab \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.5\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "Configuration du désentrelacement" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "Retour" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "Taux plein : %.2f fps" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "Mi-taux, désentrelacement de champ haut : %.2f fps" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "Mi-taux, désentrelacement de champ bas : %.2f fps" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "Préférences d'overscan" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "Appliquer le redimensionnement" #: src/tvtime.c:909 msgid "16:9 output" msgstr "Sortie 16:9" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "Redimensionner la fenêtre d'après le contenu" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "Plein écran" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "Configurer la position en plein écran" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "Toujours visible" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Captures d'écran silencieuses" #: src/tvtime.c:968 msgid "Centre" msgstr "Centré" #: src/tvtime.c:975 msgid "Top" msgstr "Haut" #: src/tvtime.c:981 msgid "Bottom" msgstr "Bas" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "Vitesse de rafraîchissement attendue" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "Estimation des performances" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "Désentraleur" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "Entrée : %s à %dx%d pixels" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "Vitesse de rafraîchissement attendue : %.2f fps" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "Temps moyen de blit : %.2f ms (%.0f Mo/sec)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "Temps moyen de rendu : %5.2f ms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Images supprimées : %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Espace de blit : %4.1f/%4.1f ms (%4.1f ms attendu)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + Overscan" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1.85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2.35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 centré" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "16:10" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + Overscan" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "Configuration de redimensionnement (Entrée anamorphique)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "Configuration de redimensionnement (Entrée 4:3)" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s : Impossible d'allouer la mémoire.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "Impossible d'ouvrir le périphérique de capture %s." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " Votre périphérique de capture, %s, ne semble pas supporter\n" " la capture en vitesse de rafraîchissement pleine. Merci de\n" " vérifier la configuration, ou si vous avez séléctionné\n" " le mauvais périphérique de capture (%s).\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " Votre pilote de périphérique de capture, %s, ne fourni pas\n" " assez de buffers pour que tvtime fonctionne correctement. Merci de\n" " consulter la documentation de votre pilote pour voir si vous\n" " pouvez augmenter le nombre de buffers attribués aux applications,\n" " puis d'alerter le rapport de bugs de tvtime à %s\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "Impossible d'initialiser l'affichage à l'écran (osd)\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "Pas de source vidéo" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "" "Impossible de créer le FIFO, contrôle à distance de tvtime désactivé.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "Impossible d'activer l'affichage des sous-titres, désactivé.\n" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "Toujours visible activé." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "Toujours visible désactivé." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "Mode 16:9 activé." #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "Mode 4:3 activé." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "Messages dans les captures d'écran désactivé." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "Messages dans les captures d'écran activé." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "Inversion \"2-3 pulldown\" désactivée." #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "Inversion \"2-3 pulldown\" activée." #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "L'inversion \"2-3 pulldown\" n'est pas valide pour votre norme TV." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Capture d'écran : %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "Redémarrage de tvtime.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "Merci d'utiliser tvtime.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " Impossible de supprimer les droits super-utilisateur : %s.\n" " tvtime va maintenant s'arrêter pour éviter les problèmes de sécurité.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "Utilise %s.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "Courant " #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "Aucune information disponible" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "Suivant : %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "Renuméroter la chaîne courante" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "Chaîne courante active" #: src/commands.c:346 msgid "Stop channel scan" msgstr "Arrêter la recherche de chaîne" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "Rechercher les canaux" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "Activer toutes les chaînes" #: src/commands.c:364 msgid "Finetune current channel" msgstr "Réglage fin de la chaîne courante" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "Passer en mode câble NTSC" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "Passer la chaîne courante en SECAM" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "Passer la chaîne courante en PAL" #: src/commands.c:393 msgid "Switch audio standard" msgstr "Changer de norme de réception" #: src/commands.c:400 msgid "Change frequency table" msgstr "Changer de table de fréquence" #: src/commands.c:406 msgid "Disable signal detection" msgstr "Désactiver la détection de signal" #: src/commands.c:407 msgid "Enable signal detection" msgstr "Activer la détection de signal" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "Langue par défaut" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "Langue inconnu" #: src/commands.c:623 msgid "Change default audio standard" msgstr "Changer le mode sonore par défaut" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "Augmentation du volume sonore" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "Norme de réception" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "Résolution horizontale" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Câble" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Hertzien" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Câble avec plus de 100 chaînes" #: src/commands.c:709 msgid "Europe" msgstr "Europe" #: src/commands.c:717 msgid "Russia" msgstr "Russie" #: src/commands.c:724 msgid "France" msgstr "France" #: src/commands.c:731 msgid "Australia" msgstr "Australie" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "Australie (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "Nouvelle Zélande" #: src/commands.c:752 msgid "China Broadcast" msgstr "Chine (hertzien)" #: src/commands.c:759 msgid "South Africa" msgstr "Afrique du Sud" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "Non défini (lancer d'abord tvtime-scanner)" #: src/commands.c:783 msgid "Disabled" msgstr "Désactivé" #: src/commands.c:789 msgid "Quiet" msgstr "Silencieux" #: src/commands.c:795 msgid "Medium" msgstr "Moyen" #: src/commands.c:801 msgid "Full" msgstr "Pleine" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s Courant : %d pixels" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "Petit (360 pixels)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "Moyen (576 pixels)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Standard (720 pixels)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Haut (768 pixels)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s Maximum (%d pixels)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "Redémarrer avec les nouveaux paramètres" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "Augmenter" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "Diminuer" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "Inversion \"2-3 pulldown\"" #: src/commands.c:962 msgid "Colour invert" msgstr "Négatif" #: src/commands.c:970 msgid "Mirror" msgstr "Miroir" #: src/commands.c:978 msgid "Chroma killer" msgstr "Noir et blanc" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "Configuration" #: src/commands.c:1131 msgid "Last Channel" msgstr "" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "Gestion des chaînes" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "Configuration de l'entrée" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "Préférences d'affichage" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Traitement vidéo" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Configuration de la sortie" #: src/commands.c:1161 msgid "Quit" msgstr "" #: src/commands.c:1192 msgid "Exit menu" msgstr "Sortir du menu" #: src/commands.c:1221 msgid "Frequency table" msgstr "Table de fréquences" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "Réglage fin" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "Changer de source vidéo" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "Basculer les sous-titres" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "Basculer le décodage XDS" #: src/commands.c:1392 msgid "Overscan" msgstr "Overscan" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Position plein écran" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "Déscription du désentrelacement courant" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Filtres d'entrée" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "Description du désentrelacement" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Image" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "Luminosité" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "Contraste" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "Saturation" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Tonalité" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "Sauvegarder les préférences actuelles comme défaut" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "Remettre les options par défaut" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "Sauvegarder les préférences actuelles comme défaut global" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "Sauvegarder les préférences actuelles comme défaut pour la chaîne" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "Langue de XMLTV préférée" #: src/commands.c:1825 msgid "Favorites" msgstr "Favoris" #: src/commands.c:1832 msgid "Add current channel" msgstr "Ajouter la chaîne courante" #: src/commands.c:1834 msgid "Exit" msgstr "Quitter" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Mise en veille dans %d minutes." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "Mise en veille annulée." #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "Utiliser le décodage sonore PAL-I pour cette chaîne." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "Utiliser le décodage sonore PAL-DK pour cette chaîne." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "Utiliser le décodage sonore PAL-BG pour cette chaîne." #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "Utiliser le décodage sonore PAL-I par défaut." #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "Utiliser le décodage sonore PAL-DK par défaut." #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "Utiliser le décodage sonore PAL-BG par défaut." #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "Chaîne marquée comme active dans la liste." #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "Chaîne désactivée dans la liste." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "Le volume de la carte de capture n'est pas géré par tvtime." #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "Configurer le volume de la carte de capture à %d%%." #: src/commands.c:2380 msgid "Processing every input field." msgstr "Traitement de tous les champs d'entrée." #: src/commands.c:2383 msgid "Processing every top field." msgstr "Traitement de tous les champs haut." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "Traitement de tous les champs bas." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "La résolution horizontale sera de %d pixels au redémarrage." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "La norme TV sera %s au redémarrage" #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "Utilisation de la langue par défaut pour XMLTV." #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "Utilisation d'une langue inconnue (%s) pour XMLTV." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "Définition de la langue de XMLTV à %s (%s)." #: src/commands.c:2527 msgid "All channels re-activated." msgstr "Toutes les chaînes ont été réactivées." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "Renumérotation de %d. Entrez le nouveau numéro de la chaîne." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "" "La recherche de canaux est impossible si la recherche de signal est " "désactivée." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "Recherche de canaux sur le réseau hertzien." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "Sous-titres désactivés." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "Sous-titres activés." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "Aucun périphérique VBI configuré pour le décodage des sous-titres." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "Décodage des couleurs pour cette chaîne défini à %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "Lancement de : %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "Détection de signal activé." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "Détection de signal désactivé." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "Décodage XDS activé." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "Décodage XDS désactivé." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "Négatif activé." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "Négatif désactivé" #: src/commands.c:2822 msgid "Mirror enabled." msgstr "Miroir activé." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "Miroir désactivé." #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "Noir et blanc activé." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "Noir et blanc désactivé." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "Overscan : %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "Préférences d'image remis à défaut." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "Utilisation des fréquences de câble NTSC." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "Utilisation des fréquences de câble IRC." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "Utilisation des fréquences de câble HRC." #: src/commands.c:3029 msgid "Volume" msgstr "Volume" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "Préférences d'image courantes enregistrées par défaut.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "Préférences d'image courantes enregistrées pour la chaîne %d.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Pause." #: src/commands.c:3310 msgid "Resumed." msgstr "Reprise." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "Erreur à la lecture du fichier de configuration %s.\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "Élément racine XML manquant dans %s.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s n'est pas un fichier de configuration tvtime.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "" "Le fichier de configuration est illisible. Les préférences ne seront pas " "sauvegardées.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "Impossible de créer un nouveau fichier de configuration.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "Erreur à la création d'un nouveau fichier de configuration.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "Impossible de changer le propriétaire de %s : %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "tvtime est un logiciel libre, écrit par Billy Biggs, Doug Bell et\n" "autres. Pour les détails des conditions de copie, merci de visiter\n" "notre site internet ici : http://tvtime.net/\n" "\n" "tvtime est Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, et Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "usage: %s [OPTION]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen mode 16:9.\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen mode 4:3.\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr "" " -b, --vbidevice=PÉRIPH. périphérique VBI (/dev/vbi0 par défaut).\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr "" " -c, --channel=CHAÃŽNE Ouvrir la chaîne spécifiée au démarrage.\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 #, fuzzy msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr "" " -d, --device=PÉRIPHÉRIQUE périphérique video4linux (/dev/video0 par " "défaut).\n" #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=NOM La table de fréquence à utiliser pour le " "tuner.\n" " (us-cable par défaut).\n" "\n" " Les valeurs valides sont :\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (lancer d'abord tvtime-scanner)\n" "\n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" " -F, --configfile=FICHIER Fichier de configuration supplémentaire à " "charger.\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help Voir ce message d'aide.\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr "" " -g, --geometry=GÉOMÉTRIE Défini la taille de la fenêtre en sortie.\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr "" " -i, --input=INPUTNUM numéro d'entrée video4linux (0 par défaut).\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=SAMPLING Résolution horizontale d'entrée\n" " (720 pixels par défaut).\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" " -k, --slave Désactiver l'entrée standard de tvtime (mode " "esclave).\n" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr " -m, --fullscreen Lancer tvtime en mode plein écran.\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 #, fuzzy msgid " -l, --borderless Start tvtime without a window border.\n" msgstr " -M, --window Lancer tvtime en mode fenêtré.\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window Lancer tvtime en mode fenêtré.\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=NORME Norme à utiliser pour l'entrée. tvtime " "supporte :\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (NTSC par défaut).\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops Afficher des statistiques sur la suppression " "de \n" " frames (pour le debogguage).\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" " -S, --saveoptions Enregistrer les options de la ligne de " "commande\n" " dans le fichier de configuration.\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" " -t, --xmltv=FICHIER Lire les données XMLTV depuis le fichier " "donné.\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=LANGUE Utiliser les données XMLTV dans la langue " "donnée, si disponible.\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr "" " -v, --verbose Affichier des information de débogguage sur la " "sortie d'erreurs.\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr " -X, --display=DISPLAY Utiliser l'affichage X donné.\n" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 #, fuzzy msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer=PÉRIPH[:CH] Le périphérique de mixage et le canal à " "contrôler.\n" " (/dev/mixer:line par défaut)\n" "\n" " Les canaux valides sont :\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr "" " -R, --priority=PRI Définir la priorité du processus de tvtime à.\n" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "Lit la configuration depuis %s\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "" "Impossible de charger deux instances de tvtime avec la même configuration.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "Enregistre les options de la ligne de commande.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "" "Impossible de mettre à jour la configuration pendant que tvtime est lancé.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "Pas de signal" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "Muet" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "Impossible de créer %s : %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "Impossible d'ouvrir %s : %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" "Impossible d'intialiser le convertisseur UTF-8 vers %s : erreur iconv_open " "(%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " Impossible d'entrer en mode UTF-8 en utilisant " "bind_textdomain_codeset()\n" " (a retourné %s.) Les messages peuvent ne pas bien s'afficher !\n" " Merci de rapporter le boggue à %s.\n" "\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "Commandes disponibles :\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "tvtime non lancé.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s : Impossible d'ouvrir %s : %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s : Commande invalide '%s'\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s : Commande \"%s\" envoyée avec pour argument %s.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s : Commande \"%s\" envoyée.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "Recherche de canaux en utilisant la norme TV %s.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " Aucun tuner trouvé à l'entrée %d. Si vous avez un tuner,\n" " merci de choisir une entrée différente avec --input=.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "Recherche de canaux de %6.2f MHz à %6.2f MHz.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "Vérifie %6.2f MHz:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "Détection de signal" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "Chaîne trouvée à %6.2f MHz (%.2f - %.2f MHz), ajoutée à la liste des " "chaînes.\n" #~ msgid "Preferred audio mode" #~ msgstr "Mode sonore préféré" #~ msgid "Mono" #~ msgstr "Mono" #~ msgid "Stereo" #~ msgstr "Stéréo" #~ msgid "SAP" #~ msgstr "SAP" #~ msgid "Primary Language" #~ msgstr "Première langue" #~ msgid "Secondary Language" #~ msgstr "Deuxième langue" #~ msgid "" #~ "\n" #~ " You are using the bttv driver, but have not configured enough\n" #~ " buffers for tvtime to process the video optimally. This is\n" #~ " true by default with bttv in kernels before 2.4.21. Please\n" #~ " set the option gbuffers=4 when loading bttv. For more\n" #~ " information see our support page at %s\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Vous utilisez les pilotes bttv, mais vous n'avez pas configuré\n" #~ " assez de buffers pour que tvtime fonctionne correctement. Ceci\n" #~ " est le cas par défaut dans bttv pour les kernels avant le 2.4.21.\n" #~ " Merci de mettre l'option gbuffers=4 au chargement de bttv. Pour\n" #~ " plus d'informations, voir notre page : %s\n" #~ "\n" tvtime-1.0.11/po/de.po0000664000175000017500000011113312663345675011414 00000000000000# German locale file for tvtime # Copyright (C) 2004 Billy Biggs, Ingo van Lil # This file is distributed under the same license as the PACKAGE package. # Ingo van Lil , 2004. # msgid "" msgstr "" "Project-Id-Version: tvtime 0.9.14\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2015-10-17 12:15-0300\n" "Last-Translator: Mauro Carvalho Chehab \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.5\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "De-Interlacer konfigurieren" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "Zurück" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "Volle Bildrate: %.2f Bilder/s" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "Halbe Bildrate, oberes Halbbild: %.2f Bilder/s" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "Halbe Bildrate, unteres Halbbild: %.2f Bilder/s" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "Überstehender Bildbereich" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "Bildränder abblenden" #: src/tvtime.c:909 msgid "16:9 output" msgstr "Bildformat 16:9" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "Fenstergröße anpassen" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "Vollbild" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "Vollbild-Position" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "Immer im Vordergrund" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Keine Meldung bei Bildschirmfoto" #: src/tvtime.c:968 msgid "Centre" msgstr "Mittig" #: src/tvtime.c:975 msgid "Top" msgstr "Oben" #: src/tvtime.c:981 msgid "Bottom" msgstr "Unten" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "Angestrebte Bildfrequenz" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "Geschätzte Leistungsdaten" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "De-Interlacing" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "Signal: %s mit %dx%d Bildpunkten" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "Angestrebte Bildfrequenz: %.2f Bilder/s" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "Mittlere Darstelldauer: %.2f ms (%.0f MB/s)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "Mittlere Berechnungsdauer: %5.2f ms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Übersprungene Bilder: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Bildintervall: %4.1f/%4.1f ms (ideal: %4.1f ms)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + Overscan" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1.85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2.35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 zentriert" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "16:10" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + Overscan" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "Bildblende (anamorphes Signal)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "Bildblende (4:3 Signal)" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: Speicheranforderung fehlgeschlagen.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "Kann Signalquelle nicht öffnen: %s." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " Ihr TV-Kartentreiber (%s) unterstützt\n" " kein Auslesen des TV-Signals mit voller Bildfrequenz. Bitte\n" " überprüfen Sie, ob der Treiber falsch konfiguriert ist oder Sie\n" " das falsche Gerät gewählt haben (%s).\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " Ihr TV-Kartentreiber (%s) stellt nicht ausreichend\n" " Pufferspeicher für tvtime zur Verfügung. Bitte sehen Sie in der\n" " Dokumentation Ihrer Treiber nach, ob Sie die Anzahl der Puffer-\n" " speicher erhöhen können und melden Sie dies dem tvtime-Bugtracker\n" " auf %s\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "Initialisieren des Bildschirmmenüs fehlgeschlagen.\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "Keine TV-Signalquelle" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "Kann FIFO nicht öffnen, Fernsteuerung deaktiviert.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "Initialisieren der Untertitel fehlgeschlagen.\n" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "Immer im Vordergrund aktiviert." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "Immer im Vordergrund deaktiviert." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "Bildformat 16:9" #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "Bildformat 4:3" #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "Meldung bei Bildschirmfoto deaktiviert." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "Meldung bei Bildschirmfoto aktiviert." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "2-3 pulldown inversion deaktiviert." #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "2-3 pulldown inversion aktiviert." #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "2-3 pulldown inversion ist bei dieser Fernsehnorm nicht möglich." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Bildschirmfoto: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "Starte tvtime neu.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "Danke, daß Sie tvtime gewählt haben.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " Ablegen der root-Rechte fehlgeschlagen: %s.\n" " tvtime wird beendet, um Sicherheitsprobleme zu vermeiden.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "Starte %s.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "Momentan" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "Keine Programminformationen verfügbar" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "Danach: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "Auf neuen Senderplatz verschieben" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "In Liste aktiver Programme" #: src/commands.c:346 msgid "Stop channel scan" msgstr "Kanalsuche abbrechen" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "Kanalsuche starten" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "Alle Kanäle aktivieren" #: src/commands.c:364 msgid "Finetune current channel" msgstr "Feineinstellung" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "NTSC-Kabelmodus" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "Auf SECAM umstellen" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "Auf PAL umstellen" #: src/commands.c:393 msgid "Switch audio standard" msgstr "Audiostandard wechseln" #: src/commands.c:400 msgid "Change frequency table" msgstr "Andere Frequenztabelle wählen" #: src/commands.c:406 msgid "Disable signal detection" msgstr "Signalprüfung deaktivieren" #: src/commands.c:407 msgid "Enable signal detection" msgstr "Signalprüfung aktivieren" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "Standardsprache" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "Unbekannte Sprache" #: src/commands.c:623 msgid "Change default audio standard" msgstr "Voreingestellter Audiostandard" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "Lautstärke steigern" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "Fernsehnorm" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "Horizontale Auflösung" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Kabel" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Antenne" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Kabel inkl. Kanäle über 100" #: src/commands.c:709 msgid "Europe" msgstr "Europa" #: src/commands.c:717 msgid "Russia" msgstr "Russland" #: src/commands.c:724 msgid "France" msgstr "Frankreich" #: src/commands.c:731 msgid "Australia" msgstr "Australien" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "Australien (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "Neuseeland" #: src/commands.c:752 msgid "China Broadcast" msgstr "Chinesicher Rundfunk" #: src/commands.c:759 msgid "South Africa" msgstr "Südafrika" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "Benutzerdefiniert (Starten Sie vorher tvtime-scanner)" #: src/commands.c:783 msgid "Disabled" msgstr "Deaktiviert" #: src/commands.c:789 msgid "Quiet" msgstr "Ruhig" #: src/commands.c:795 msgid "Medium" msgstr "Mittel" #: src/commands.c:801 msgid "Full" msgstr "Voll" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s Momentan: %d Bildpunkte" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "Niedrig (360 Bildpunkte)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "Mittel (576 Bildpunkte)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Standard (720 Bildpunkte)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Hoch (768 Bildpunkte)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s Maximal (%d Bildpunkte)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "Mit dieser Einstellung neu starten" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "Erhöhen" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "Verringern" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "2-3 pulldown inversion" #: src/commands.c:962 msgid "Colour invert" msgstr "Farbinvertierung" #: src/commands.c:970 msgid "Mirror" msgstr "Spiegeln" #: src/commands.c:978 msgid "Chroma killer" msgstr "Farbe entfernen" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "Einstellungen" #: src/commands.c:1131 msgid "Last Channel" msgstr "" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "Senderplätze einstellen" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "Eingangssignal" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "Bildeinstellungen" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Bildverarbeitung" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Bilddarstellung" #: src/commands.c:1161 msgid "Quit" msgstr "" #: src/commands.c:1192 msgid "Exit menu" msgstr "Menü verlassen" #: src/commands.c:1221 msgid "Frequency table" msgstr "Frequenztabelle" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "Feineinstellung" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "Videoquelle wählen" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "Untertitel ein/aus" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "XDS-Dekodierung ein/aus" #: src/commands.c:1392 msgid "Overscan" msgstr "Überstehender Bildbereich" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Vollbild-Position" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "Beschreibung des aktiven De-Interlacers" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Signalfilter" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "Beschreibung des De-Interlacers" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Bild" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "Helligkeit" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "Kontrast" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "Sättigung" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Farbton" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "Momentane Einstellungen als Standard speichern" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "Auf globale Standardeinstellungen zurücksetzen" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "Als globalen Standard speichern" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "Als Standard für diesen Kanal speichern" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "Bevorzugte Sprache für XMLTV-Daten" #: src/commands.c:1825 msgid "Favorites" msgstr "Favoriten" #: src/commands.c:1832 msgid "Add current channel" msgstr "Diesen Kanal hinzufügen" #: src/commands.c:1834 msgid "Exit" msgstr "Verlassen" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Schlafmodus in %d Minuten." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "Schlafmodus deaktiviert." #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "PAL-I Audiodekodierung für diesen Kanal gewählt." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "PAL-DK Audiodekodierung für diesen Kanal gewählt." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "PAL-BG Audiodekodierung für diesen Kanal gewählt." #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "PAL-I Audiodekodierung als Standard gewählt." #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "PAL-DK Audiodekodierung als Standard gewählt." #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "PAL-BG Audiodekodierung als Standard gewählt." #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "In Liste aktiver Kanäle aufgenommen." #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "Aus Liste aktiver Kanäle entfernt." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "Lautstärke der TV-Karte wird nicht durch tvtime gesetzt." #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "Lautstärke der TV-Karte auf %d%% eingestellt." #: src/commands.c:2380 msgid "Processing every input field." msgstr "Alle Halbbilder verwenden." #: src/commands.c:2383 msgid "Processing every top field." msgstr "Nur obere Halbbilder verwenden." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "Nur untere Halbbilder verwenden." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "Horizontale Auflösung beim nächsten Start: %d Bildpunkte." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "Fernsehnorm beim nächsten Start: %s." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "Verwende XMLTV-Daten in Standardsprache." #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "Verwende XMLTV-Daten in unbekannter Sprace (%s)." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "Sprache für XMLTV-Daten: %s (%s)." #: src/commands.c:2527 msgid "All channels re-activated." msgstr "Alle Kanäle reaktiviert." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "Neuen Senderplatz für Kanal %d wählen." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "Kanalsuche ohne Signalprüfung nicht möglich." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "Suche nach aktiven Kanälen." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "Untertitel deaktiviert." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "Untertitel aktiviert." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "Kein VBI-Gerät für Untertitel-Dekodierung konfiguriert." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "Farbdekodierung für diesen Kanal: %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "Starte: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "Signalprüfung aktiviert." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "Signalprüfung deaktiviert." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "XDS-Dekodierung aktiviert." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "XDS-Dekodierung deaktiviert." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "Farbinvertierung aktiviert." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "Farbinvertierung deaktiviert." #: src/commands.c:2822 msgid "Mirror enabled." msgstr "Gespiegeltes Bild aktiviert." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "Gespiegeltes Bild deaktiviert." #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "Farbentfernung aktiviert." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "Farbentfernung deaktiviert." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "Überstehender Bereich: %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "Bildeinstellungen auf Standard zurückgesetzt." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "Verwende NTSC-Kabelfrequenzen." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "Verwende IRC-Kabelfrequenzen." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "Verwende HRC-Kabelfrequenzen." #: src/commands.c:3029 msgid "Volume" msgstr "Lautstärke" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "Bildeinstellungen als globalen Standard gespeichert.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "Bildeinstellungen für Kanal %d gespeichert.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Pause." #: src/commands.c:3310 msgid "Resumed." msgstr "Fortsetzen." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "Fehler beim Lesen der Konfigurationsdatei: %s.\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "Kein XML-Wurzelelement in %s gefunden.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s ist keine tvtime-Konfigurationsdatei.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "" "Konfigurationsdatei nicht lesbar, Einstellungen werden nicht gespeichert.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "Kann Konfigurationsdatei nicht erzeugen.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "Fehler beim Erzeugen der Konfigurationsdatei.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "Kann Eigentümer von %s nicht ändern: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "tvtime ist freie Software, geschrieben von Billy Biggs, Doug Bell und\n" "vielen anderen. Genauere Angaben und Bedingungen für die Weitergabe\n" "finden Sie auf http://tvtime.net/.\n" "\n" "Copyright (C) 2001, 2002, 2003: Billy Biggs, Doug Bell,\n" " Alexander S. Belov und Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "Aufruf: %s [OPTION]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen 16:9-Modus.\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen 4:3-Modus.\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr " -b, --vbidevice=DEVICE VBI-Gerät (Standard: /dev/vbi0).\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr " -c, --channel=KANAL Gewählten Kanal beim Start aktivieren.\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 #, fuzzy msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr "" " -d, --device=GERÄT video4linux-Gerät (Standard: /dev/video0).\n" #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=NAME Frequenztabelle für TV-Tuner.\n" " (Standard: us-cable).\n" "\n" " Zulässige Werte:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (erst tvtime-scanner starten)\n" "\n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" " -F, --configfile=FILE Zusätzliche Konfigurationsdatei einlesen.\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help Diesen Hilfetext anzeigen.\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr " -g, --geometry=GEOMETRY Fenstergröße setzen.\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr " -i, --input=NUMMER video4linux-Signalnummer (Standard: 0).\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=BREITE Horizontale Signalauflösung\n" " (Standard: 720 Bildpunkte).\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" " -k, --slave Signalverarbeitung in tvtime deaktivieren\n" " (Slave-Modus).\n" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr " -m, --fullscreen Im Vollbildmodus starten.\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 #, fuzzy msgid " -l, --borderless Start tvtime without a window border.\n" msgstr " -M, --window Im Fenster starten.\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window Im Fenster starten.\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=NORM Fernsehnorm festlegen. Zugelassene Werte:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (Standard: NTSC).\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops Statistik über übersprungene Bilder anzeigen.\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" " -S, --saveoptions Kommandozeilenparameter in Konfigurationsdatei\n" " speichern.\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" " -t, --xmltv=DATEI XMLTV-Programminformationen aus dieser\n" " Datei lesen.\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=LANG XMLTV-Daten in dieser Sprache bevorzugen.\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr " -v, --verbose Debug-Meldungen auf stderr ausgeben.\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr " -X, --display=DISPLAY Auf angegebenem X-Display darstellen.\n" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 #, fuzzy msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer=GERÄT[:KANAL] Zu verwendendes Mixer-Gerät und -Kanal.\n" " (Standard: /dev/mixer:line)\n" "\n" " Zulässige Werte:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr " -R, --priority=PRI Priorität für den tvtime-Prozeß setzen.\n" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "Lese Konfiguration aus %s\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "" "Es ist nicht möglich, zwei tvtime-Instanzen mit gleicher Konfiguration\n" "zu starten.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "Schreibe Kommandozeilenoptionen.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "" "Schreiben der Konfigurationsdatei nicht möglich, solange tvtime läuft.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "Kein Signal" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "Stumm" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "Kann %s nicht anlegen: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "Kann %s nicht öffnen: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" "Kann UTF-8-%s-Konverter nicht initialisieren: iconv_open fehlgeschlagen " "(%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " Fehler beim Wechsel in den UTF-8-Modus durch bind_textdomain_codeset()\n" " (Grund: %s). Hierdurch können Meldungen verkehrt\n" " dargestellt werden! Bitten melden Sie diesen Fehler an\n" " %s.\n" "\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "Verfügbare Kommandos:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "tvtime läuft nicht.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: Kann %s nicht öffnen: %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: Ungültiges Kommandos '%s'\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: Sende Kommando %s mit Argument %s.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: Sende Kommando %s.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "Kanalsuche mit %s-Fernsehnorm.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " Kein Tuner bei Signalquelle %d gefunden. Bitte verwenden Sie eine\n" " andere Signalquelle über --input=.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "Kanalsuche von %6.2f MHz bis %6.2fMHz.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "Prüfe %6.2f MHz:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "Signal vorhanden" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "Kanal auf %6.2f MHz (%.2f - %.2f MHz) gefunden, zur Kanalliste hinzugefügt.\n" #~ msgid "Preferred audio mode" #~ msgstr "Bevorzugter Audiomodus" #~ msgid "Mono" #~ msgstr "Mono" #~ msgid "Stereo" #~ msgstr "Stereo" #~ msgid "SAP" #~ msgstr "SAP (Zweiter Audiokanal)" #~ msgid "Primary Language" #~ msgstr "Erster Sprachkanal" #~ msgid "Secondary Language" #~ msgstr "Zweiter Sprachkanal" #~ msgid "" #~ "\n" #~ " You are using the bttv driver, but have not configured enough\n" #~ " buffers for tvtime to process the video optimally. This is\n" #~ " true by default with bttv in kernels before 2.4.21. Please\n" #~ " set the option gbuffers=4 when loading bttv. For more\n" #~ " information see our support page at %s\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Sie verwenden den bttv-Treiber, haben allerdings nicht ausreichend\n" #~ " Pufferspeicher eingestellt, um eine optimale Arbeit von tvtime\n" #~ " zu gewährleisten. Dies ist die Standardeinstellung bei Kernel-\n" #~ " versionen vor 2.4.21. Bitte fügen Sie beim Laden des bttv-Moduls\n" #~ " die Option gbuffers=4 hinzu. Weitere Informationen finden Sie auf\n" #~ " unserer Supportseite: %s\n" #~ "\n" tvtime-1.0.11/po/en@boldquot.header0000644000175000017500000000247112522224716014076 00000000000000# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # # This catalog furthermore displays the text between the quotation marks in # bold face, assuming the VT100/XTerm escape sequences. # tvtime-1.0.11/po/cs.gmo0000664000175000017500000005720312663345675011604 00000000000000Þ•ï”K 8_9±™qKŽƒ¡ ·'ÅKís9:­IèK2D~(ÃAìG.1v:¨5ãGMaM¯>ýÖ< I!F]!A¤!æ!ý!'"="Z"r")Œ"¶"Ï"Ö"Ü"á"ñ" ## .#O#6o#¦#­# ¼#Ç#à#ô# $$5$ L$X$l$Š$ $§$(¹$â$%,%2% 9% D%N%T%m%%7£%Û%ï%@&2O&.‚&±&¸&Ï&í&'&'?',R''“'£'¹' Î'7Ü'(.(+G( s((™(:°(ë("ô()) >)!_))Š)$›)$À)#å) **1*J*c*l**#—*%»*á*è* í*D÷* <+F+O+Hh+±+¸+È+Í+ á+ì+.,+/,[,m,3ƒ,·,»,Ä, Ø,æ,-- +-L-S-Z-k-{-‘- –-¢-)«-!Õ- ÷- .".22.e.z.ƒ.”.¥.­.Ã.Ë.#Ü.//8/V/r/x/Š/(©/Ò/ë/0!0A0[0o0 x0 …0‘0 ˜0)£0!Í0(ï031.L1{1™12²1&å1& 232S2q2Ž22¸2Õ2$í233(3C3]3 r3 }3Š3 3²3È3*Ü34$484O4S4d44-ž4-Ì4,ú4&'5%N5+t5 5±5¸5Ï5å566o16z¡7Ç8wä8ê\9G:c; z;'›<SÃ<x=>=OÏ=_>9>(¹>Fâ>E)?Ao?B±B7ôBK,CWxCTÐCG%DÎmDXYK˜KŸK&½KäKL"L7L+HLtLŠL L¼LØL:ëL&M»Q=úQ8RLR5gRR ¥R¯RÂRÒRëR!ÿR*!S LS VS`SsS†SœS ¤S ²S=¾S3üS%0T VTcT6tT«TÀTÉTÞTïTöTUU8 UYU-rU U,ÀUíUõUV1(V&ZVV1žV-ÐV"þV!W 8WBWTWeWkWJtW?¿WJÿWMJX/˜X*ÈXóX?Y*RY/}Y0­Y'ÞY'Z.ZDZ^Z*zZ3¥Z ÙZäZõZ[)[=[Q[a[x[”[«[(¿[#è[! \.\F\N\^\~\<ž\<Û\;].T],ƒ]0°]á] ô]þ]^ 4^U^h^ØÇÒ ë¨ÐÄ—¹dÔz¸(7p€81-x±Nì^HÊ ÌÍYäÏB,. ªbè›Ñ5M‡K6Fƒ¢ÀG@ß?íˬ'¤¶ÖE° ç …¡‹ŽÞ•»†Úéu4Ý%Á’¾}˜\·e>Q+åÙ~²mckâ«jq|Vy;µR¥OêD´Ušœ!iÕ”ï–h‰_Éãaæ¿ÆPgº×rt³sÅŒ¼:àvo"„IÎwX*n`3¯Ó“$=îT®C]2á#W§<Afl‚™Ü½ÂS ÛŸ&{ÃÈ/0¦ZŠ) ­L£[9‘ž©ˆJ Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -X, --display=DISPLAY Use the given X display to connect to. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -f, --frequencies=NAME The frequency table to use for the tuner. (defaults to us-cable). Valid values are: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (first run tvtime-scanner) -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -k, --slave Disables input handling in tvtime (slave mode). -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:1016:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange NTSC cable modeChange default audio standardChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed caption display failed to initialize, disabled. Closed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.Defaulting to PAL-I audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.South AfricaStandard (720 pixels)Stop channel scanSwitch audio standardTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using PAL-I audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: tvtime 0.9.12 Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2005-04-14 00:16+0200 Last-Translator: Lukáš Slánský Language-Team: Lukáš Slánský Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Nelze se zbavit rootových prilegií: %s. tvtime se nyní ukonÄí, aby pÅ™edeÅ¡el bezpeÄnostním problémům. Nelze zapnout mód UTF-8 pomocí bind_textdomain_codeset() (vrátil %s). To může způsobit, že nÄ›které zprávy budou zobrazeny neÄitelnÄ›! OhlaÅ¡te prosím tuto chybu na %s. Na vstupu %d nebyl nalezen tuner. Pokud máte tuner, nastavte prosím jiný vstup pomocí --input=<Äíslo>. Váš ovladaÄ zachytávací karty (%s) nejspíš nepodporuje zachytávání plnou rychlostí. Zkontrolujte prosím zda není Å¡patnÄ› nakonfigurován nebo zda jste nezvolili Å¡patné zachytávací zařízení (%s). Váš ovladaÄ zachytávací karty (%s) nenabízí dostatek bufferů, aby tvtime zpracoval video. PÅ™eÄtÄ›te si prosím dokumentaci k VaÅ¡emu ovladaÄi, zda můžete zvýšit poÄet bufferů poskytovaných aplikacím a sdÄ›lte nám to do tvtime bug trackeru na %s Dostupné příkazy: tvtime je free software napsaný Billy Biggsem, Dougem Bellem a mnoha jinými lidmi. Detailní informace a podmínky šíření jsou na naší webové adrese http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen mód 4:3. -F, --configfile=SOUBOR Další konfiguraÄní soubor pro Ätení nastavení. -I, --inputwidth=Å ÃŘKA Horizontální rozliÅ¡ení vstupu (standardnÄ› 720 bodů). -M, --window Zapnout tvtime v okenním módu. -R, --priority=PRIORITA Nastavit prioritu, pod kterou má tvtime běžet. -S, --saveoptions Uložit volby z příkazové řádky do konfiguraÄního souboru. -X, --display=DISPLAY Používat daný X display. -a, --widescreen mód 16:9. -b, --vbidevice=DEVICE zařízení VBI (standardnÄ› /dev/vbi0). -c, --channel=KANÃL Naladit urÄený kanál pÅ™i zapnutí. -f, --frequencies=JMÉNO FrekvenÄní tabulka, kterou používá tuner. (standardnÄ› us-cable). Možné hodnoty jsou: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (nejprve spuÅ¥te tvtime-scanner) -g, --geometry=GEOMETRIE Nastaví velikost výstupního okna. -h, --help Zobrazit tuto nápovÄ›du. -i, --input=ÄŒÃSLOVSTUPU Äíslo vstupu video4linux (standardnÄ› 0). -k, --slave Vypnout zpracování vstupu v tvtime (podřízený mód). -l, --xmltvlanguage=JAZYK Použít data XMLTV v daném jazyce - je-li dostupný. -m, --fullscreen Zapnout tvtime v celoobrazovkovém módu. -n, --norm=NORMA Norma vstupu, kterou tvtime podporuje: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N nebo PAL-60 (standardnÄ› NTSC). -s, --showdrops Zobrazovat statistiky zahozených snímků (pro ladÄ›ní). -t, --xmltv=SOUBOR PÅ™eÄte seznamy XMLTV z daného souboru. -v, --verbose Tisknout ladící zprávy na stderr. %s SouÄasnÄ›: %d bodů%s Maximum: (%d bodů)%s není konfiguraÄní souborem tvtime. %s: Nelze naalokovat paměť. %s: Nelze otevřít %s: %s %s: Neznámý příkaz '%s' %s: Odeslání příkazu %s s argumentem %s. %s: Odeslání příkazu %s. 1,85:116:1016:916:9 + OverscanObrazový mód 16:9 zapnut.Výstup 16:92-3 pulldown inverze2-3 pulldown inverze vypnuta.2-3 pulldown inverze zapnuta.2-3 pulldown inverze s vaší TV normou nefunguje.2,35:14:3 + Overscan4:3 centrováníObrazový mód 4:3 zapnut.PÅ™idej souÄasný kanálVÅ¡echny kanály byly aktivovány.Vždy navrchuMód Vždy navrchu vypnut.Mód Vždy navrchu zapnut.Používat oÅ™ezáníZkouÅ¡ená obnovovací frekvenceZkouÅ¡ená obnovovací frekvence: %.2f fpsZvýraznÄ›ní síly zvukuAustrálieAustrálie (Optus)PrůmÄ›rná rychlost pÅ™ekreslení: %.2f ms (%.0f MB/sec)PrůmÄ›rná rychlost rendrování: %5.2f msZpÄ›tInterval pÅ™ekreslení: %4.1f/%4.1f ms (potÅ™ebujeme %4.1f ms)DoleJasVysíláníKabelKabel s kanály nad 100Nelze zmÄ›nit vlastníka %s: %s. Nelze vytvoÅ™it %s: %s Nemohu vytvoÅ™it FIFO. Dálkové ovládání tvtime vypnuto. Nelze otevřít %s: %s Nelze otevřít zachytávací zařízení %s.Nelze spustit dvÄ› instance tvtime se stejnou konfigurací. Není možné zmÄ›nit konfiguraci za bÄ›hu tvtime. Hlasitost zachytávací karty nebude nastavena pomocí tvtime.StÅ™edZmÄ›na kabelového módu NTSCZmÄ›nit pÅ™ednastavený standard audiaZmÄ›na frekvenÄní tabulkyZmÄ›na zdroje videaV seznamu byl kanál deaktivován.Správa kanálůV seznamu byl kanál oznaÄen jako aktivníKontroluji %6.2f MHz:Čínské vysíláníOdstranÄ›ní barev vypnuto.OdstranÄ›ní barev zapnuto.OdstranÄ›ní barevZobrazování titulků nejde inicializovat. Bylo vypnuto. Titulky byly vypnuty.Titulky byly zapnuty.Dekódování barev tohoto kanálu bylo nastaveno na %s.Inverze barevInverze barev vypnuta.Inverze barev zapnuta.KonfiguraÄní soubor nelze zpracovat. Nastavení nebude uloženo. KontrastNelze vytvoÅ™it nový konfiguraÄní soubor.. SouÄasnýSouÄasný kanál je aktivní v seznamuPopis souÄasného prokládaÄeVlastní (nejprve spuÅ¥te tvtime-scanner)ZmenÅ¡itPÅ™edvolený jazykPÅ™edvolené dekódování audia bude PAL-BGPÅ™edvolené dekódování audia bude PAL-DKPÅ™edvolené dekódování audia bude PAL-IProkladaÄNastavení prokládaÄePopis prokládaÄeVypnout detekci signáluVypnutoZahozené snímky: %dZapnout detekci signáluChyba pÅ™i vytváření konfiguraÄního souboru. Chyba zpracování konfiguraÄního souboru %s. EvropaKonecVypnutí nabídkyNelze inicializovat konvertor z UTF-8 do %s: iconv_open zklamal (%s). OblíbenéJemné doladÄ›níJemné ladÄ›ní souÄasného kanáluNalezen kanál na %6.2f MHz (%.2f - %.2f MHz). PÅ™idávám ho do seznamu kanálů. FrancieFrekvenÄní tabulkaNaplnoPlná rychlost: %.2f fpsCeloobrazovkový módPozice celoobrazovkového móduPoloviÄní rychlost, prokládat spodní půlsnímky: %.2f fpsPoloviÄní rychlost, prokládat horní půlsnímky: %.2f fpsVysoké (768 bodů)Horizontální rozliÅ¡eníPo restartu bude horizontální rozliÅ¡ení %d bodů.OdstínZvÄ›tÅ¡itKonfigurace vstupuVstupní filtryVstup: %s na %dx%d bodůNízké (360 bodů)Nastavení oÅ™ezání (vstup 4:3)Nastavení oÅ™ezání (Anamorfický vstup)StÅ™ednÄ›ZrcadleniZrcadleni vypnuto.Zrcadleni zapnuto.StÅ™ední (576 bodů)ZtlumitNový ZealandDalší: %sNebylo konfigurováno zařízení pro dekódování titulků.V souboru %s nebyl nalezen koÅ™enový XML element. Nejsou dostupné informace o programuBez signáluBez zdroje videaDisplej na obrazovce nelze inicializovat. Byl vypnut. Konfigurace výstupuOverscanNastavení overscanuOverscan: %.1f%%Pauza.Odhady výkonostiObrazNastavení obrazuNastavení obrazu nastaveno na pÅ™eddefinované hodnoty.PÅ™ednostní jazyk XMLTVZpracování každého spodního půlsnímku.Zpracování každého snímku.Zpracování každého horního půlsnímku.PotichuTiché snímky obrazovkyÄŒtení konfigurace z %s PÅ™emapování %d. Vložte nové Äíslo kanálu.PÅ™eÄíslování souÄasného kanáluAktivování vÅ¡ech kanálůNastavení na globální pÅ™eddefinované hodnotyZmÄ›nit velikost okna, aby odpovídala obsahuPÅ™estartovat s novým nastavenímTvtime se restartuje. Obnoveno.SpouÅ¡tí se %s. SpouÅ¡tÄ›ní: %sRuskoSaturaceUložení souÄasného nastavení jako pÅ™eddefinované hodnoty pro kanálUložení souÄasného nastavení jako pÅ™eddefinované hodnotyUložení souÄasného nastavení jako globální pÅ™eddefinované hodnotyNastavení obrazu bylo uloženo jako globální pÅ™eddefinované nastavení. Nastavení obrazu pro kanál %d bylo uloženo. Ukládání voleb z příkazové řádky. Hledání signálu v kanálechSkener kanálu není dostupný pÅ™i vypnuté kontrole signálu.Hledání kanálu, které jsou vysílány.Procházím frekvence %6.2f MHz až %6.2f MHz. Hledání stanic s použítím TV standardu %s. Zprávy o snímcích obrazovky vypnuty.Zprávy o snímcích obrazovky zapnuty.Snímek obrazovky: %sNastavení kanálu na PALNastavení kanálu na SECAMNastavení pozice celoobrazovkového móduNastavuje se hlasitost zachytávací karty na %d%%.NastaveníDetekce signáluDetekce signálu vypnuta.Detekce signálu zapnuta.Usnout za %d minut.Usínání vypnuto.Jížní AfrikaNormální (720 bodů)Vypnutí hledání kanálůZmÄ›nit standard audiaTelevizní standardPo restartu bude televizní standard %s.DÄ›kujeme za používání tvtime. Zapnout/vypnout dekódování XDSZapnout/vypnout titulkyNahoÅ™eNeznámý jazykPoužívat frekvence HRC cable.Používat frekvence IRC cable.Pro dekódování audia tohoto kanálu se používá PAL-BG.Pro dekódování audia tohoto kanálu se používá PAL-DK.Pro dekódování audia tohoto kanálu se používá PAL-I.Pro data XMLTV používám pÅ™edvolený jazyk.Používat nominální frekvence NTSC cable.Pro data XMLTV používám neznámý jazyk (%s).Zpracování videaHlasitostDekódování XDS vypnuto.Dekódování XDS zapnuto.Jazyk XMLTV nastaven na %s (%s).tvtime neběží. použití: %s [VOLBA]... tvtime-1.0.11/po/quot.sed0000644000175000017500000000023112522224716012125 00000000000000s/"\([^"]*\)"/“\1â€/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“â€/""/g tvtime-1.0.11/po/Makefile.in.in0000644000175000017500000002744112522224716013126 00000000000000# Makefile for PO directory in any package using GNU gettext. # Copyright (C) 1995-1997, 2000-2003 by Ulrich Drepper # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU General Public # License but which still want to provide support for the GNU gettext # functionality. # Please note that the actual code of GNU gettext is covered by the GNU # General Public License and is *not* in the public domain. PACKAGE = @PACKAGE@ VERSION = @VERSION@ SHELL = /bin/sh @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ datadir = @datadir@ localedir = $(datadir)/locale gettextsrcdir = $(datadir)/gettext/po INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ MKINSTALLDIRS = @MKINSTALLDIRS@ mkinstalldirs = $(SHELL) $(MKINSTALLDIRS) GMSGFMT = @GMSGFMT@ MSGFMT = @MSGFMT@ XGETTEXT = @XGETTEXT@ MSGMERGE = msgmerge MSGMERGE_UPDATE = @MSGMERGE@ --update MSGINIT = msginit MSGCONV = msgconv MSGFILTER = msgfilter POFILES = @POFILES@ GMOFILES = @GMOFILES@ UPDATEPOFILES = @UPDATEPOFILES@ DUMMYPOFILES = @DUMMYPOFILES@ DISTFILES.common = Makefile.in.in remove-potcdate.sin \ $(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) DISTFILES = $(DISTFILES.common) Makevars POTFILES.in $(DOMAIN).pot stamp-po \ $(POFILES) $(GMOFILES) \ $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) POTFILES = \ CATALOGS = @CATALOGS@ # Makevars gets inserted here. (Don't remove this line!) .SUFFIXES: .SUFFIXES: .po .gmo .mo .sed .sin .nop .po-update .po.mo: @echo "$(MSGFMT) -c -o $@ $<"; \ $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ .po.gmo: @lang=`echo $* | sed -e 's,.*/,,'`; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \ cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo .sin.sed: sed -e '/^#/d' $< > t-$@ mv t-$@ $@ all: all-@USE_NLS@ all-yes: stamp-po all-no: # stamp-po is a timestamp denoting the last time at which the CATALOGS have # been loosely updated. Its purpose is that when a developer or translator # checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, # "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent # invocations of "make" will do nothing. This timestamp would not be necessary # if updating the $(CATALOGS) would always touch them; however, the rule for # $(POFILES) has been designed to not touch files that don't need to be # changed. stamp-po: $(srcdir)/$(DOMAIN).pot test -z "$(CATALOGS)" || $(MAKE) $(CATALOGS) @echo "touch stamp-po" @echo timestamp > stamp-poT @mv stamp-poT stamp-po # Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', # otherwise packages like GCC can not be built if only parts of the source # have been downloaded. # This target rebuilds $(DOMAIN).pot; it is an expensive operation. # Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ --msgid-bugs-address='$(MSGID_BUGS_ADDRESS)' test ! -f $(DOMAIN).po || { \ if test -f $(srcdir)/$(DOMAIN).pot; then \ sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ else \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ else \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ } # This rule has no dependencies: we don't need to update $(DOMAIN).pot at # every "make" invocation, only create it when it is missing. # Only "make $(DOMAIN).pot-update" or "make dist" will force an update. $(srcdir)/$(DOMAIN).pot: $(MAKE) $(DOMAIN).pot-update # This target rebuilds a PO file if $(DOMAIN).pot has changed. # Note that a PO file is not touched if it doesn't need to be changed. $(POFILES): $(srcdir)/$(DOMAIN).pot @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \ cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot install: install-exec install-data install-exec: install-data: install-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ for file in $(DISTFILES.common) Makevars.template; do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ for file in Makevars; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi install-data-no: all install-data-yes: all $(mkinstalldirs) $(DESTDIR)$(datadir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkinstalldirs) $(DESTDIR)$$dir; \ if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ fi; \ done; \ done install-strip: install installdirs: installdirs-exec installdirs-data installdirs-exec: installdirs-data: installdirs-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi installdirs-data-no: installdirs-data-yes: $(mkinstalldirs) $(DESTDIR)$(datadir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkinstalldirs) $(DESTDIR)$$dir; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ fi; \ done; \ done # Define this as empty until I found a useful application. installcheck: uninstall: uninstall-exec uninstall-data uninstall-exec: uninstall-data: uninstall-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ for file in $(DISTFILES.common) Makevars.template; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi uninstall-data-no: uninstall-data-yes: catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ done; \ done check: all info dvi ps pdf html tags TAGS ctags CTAGS ID: mostlyclean: rm -f remove-potcdate.sed rm -f stamp-poT rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po rm -fr *.o clean: mostlyclean distclean: clean rm -f Makefile Makefile.in POTFILES *.mo maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." rm -f stamp-po $(GMOFILES) distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: $(MAKE) update-po @$(MAKE) dist2 # This is a separate target because 'update-po' must be executed before. dist2: $(DISTFILES) dists="$(DISTFILES)"; \ if test "$(PACKAGE)" = "gettext-tools"; then \ dists="$$dists Makevars.template"; \ fi; \ if test -f $(srcdir)/ChangeLog; then \ dists="$$dists ChangeLog"; \ fi; \ for i in 0 1 2 3 4 5 6 7 8 9; do \ if test -f $(srcdir)/ChangeLog.$$i; then \ dists="$$dists ChangeLog.$$i"; \ fi; \ done; \ if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ for file in $$dists; do \ if test -f $$file; then \ cp -p $$file $(distdir); \ else \ cp -p $(srcdir)/$$file $(distdir); \ fi; \ done update-po: Makefile $(MAKE) $(DOMAIN).pot-update test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) $(MAKE) update-gmo # General rule for updating PO files. .nop.po-update: @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ cd $(srcdir); \ if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "msgmerge for $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi $(DUMMYPOFILES): update-gmo: Makefile $(GMOFILES) @: Makefile: Makefile.in.in $(top_builddir)/config.status @POMAKEFILEDEPS@ cd $(top_builddir) \ && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ $(SHELL) ./config.status force: # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: tvtime-1.0.11/po/ru.gmo0000664000175000017500000007306512663345675011631 00000000000000Þ•ï”K 8_9±™qKŽƒ¡ ·'ÅKís9:­IèK2D~(ÃAìG.1v:¨5ãGMaM¯>ýÖ< I!F]!A¤!æ!ý!'"="Z"r")Œ"¶"Ï"Ö"Ü"á"ñ" ## .#O#6o#¦#­# ¼#Ç#à#ô# $$5$ L$X$l$Š$ $§$(¹$â$%,%2% 9% D%N%T%m%%7£%Û%ï%@&2O&.‚&±&¸&Ï&í&'&'?',R''“'£'¹' Î'7Ü'(.(+G( s((™(:°(ë("ô()) >)!_))Š)$›)$À)#å) **1*J*c*l**#—*%»*á*è* í*D÷* <+F+O+Hh+±+¸+È+Í+ á+ì+.,+/,[,m,3ƒ,·,»,Ä, Ø,æ,-- +-L-S-Z-k-{-‘- –-¢-)«-!Õ- ÷- .".22.e.z.ƒ.”.¥.­.Ã.Ë.#Ü.//8/V/r/x/Š/(©/Ò/ë/0!0A0[0o0 x0 …0‘0 ˜0)£0!Í0(ï031.L1{1™12²1&å1& 232S2q2Ž22¸2Õ2$í233(3C3]3 r3 }3Š3 3²3È3*Ü34$484O4S4d44-ž4-Ì4,ú4&'5%N5+t5 5±5¸5Ï5å566d16Ý–72t8³§9G[: £;$­=^Ò=-1@m_@–Í@WdAa¼A¦ByÅB.?C[nCtÊC[?DV›GIòG\oBPoN“oâoõo@p>Vp+•p)Ápëp'q:+q:fq+¡q\Íq7*r7br4šr ÏrÜr9úr94s>ns>­s=ìsF*tQqtRÃt+uBu1Uu/‡u/·uçu0vØÇÒ ë¨ÐÄ—¹dÔz¸(7p€81-x±Nì^HÊ ÌÍYäÏB,. ªbè›Ñ5M‡K6Fƒ¢ÀG@ß?íˬ'¤¶ÖE° ç …¡‹ŽÞ•»†Úéu4Ý%Á’¾}˜\·e>Q+åÙ~²mckâ«jq|Vy;µR¥OêD´Ušœ!iÕ”ï–h‰_Éãaæ¿ÆPgº×rt³sÅŒ¼:àvo"„IÎwX*n`3¯Ó“$=îT®C]2á#W§<Afl‚™Ü½ÂS ÛŸ&{ÃÈ/0¦ZŠ) ­L£[9‘ž©ˆJ Failed to drop root privileges: %s. tvtime will now exit to avoid security problems. Failed to enter UTF-8 mode using bind_textdomain_codeset() (returned %s.) This may cause messages to be displayed incorrectly! Please report this bug at %s. No tuner found on input %d. If you have a tuner, please select a different input using --input=. Your capture card driver, %s, does not seem to support full framerate capture. Please check to see if it is misconfigured, or if you have selected the wrong capture device (%s). Your capture card driver, %s, is not providing enough buffers for tvtime to process the video. Please check with your driver documentation to see if you can increase the number of buffers provided to applications, and report this to the tvtime bug tracker at %s Available commands: tvtime is free software, written by Billy Biggs, Doug Bell and many others. For details and copying conditions, please see our website at http://tvtime.net/ tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell, Alexander S. Belov, and Achim Schneider. -A, --nowidescreen 4:3 mode. -F, --configfile=FILE Additional config file to load settings from. -I, --inputwidth=SAMPLING Horizontal resolution of input (defaults to 720 pixels). -M, --window Start tvtime in window mode. -R, --priority=PRI Sets the process priority to run tvtime at. -S, --saveoptions Save command line options to the config file. -X, --display=DISPLAY Use the given X display to connect to. -a, --widescreen 16:9 mode. -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0). -c, --channel=CHANNEL Tune to the specified channel on startup. -f, --frequencies=NAME The frequency table to use for the tuner. (defaults to us-cable). Valid values are: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (first run tvtime-scanner) -g, --geometry=GEOMETRY Sets the output window size. -h, --help Show this help message. -i, --input=INPUTNUM video4linux input number (defaults to 0). -k, --slave Disables input handling in tvtime (slave mode). -l, --xmltvlanguage=LANG Use XMLTV data in given language, if available. -m, --fullscreen Start tvtime in fullscreen mode. -n, --norm=NORM The norm to use for the input. tvtime supports: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N or PAL-60 (defaults to NTSC). -s, --showdrops Print stats on frame drops (for debugging). -t, --xmltv=FILE Read XMLTV listings from the given file. -v, --verbose Print debugging messages to stderr. %s Current: %d pixels%s Maximum (%d pixels)%s is not a tvtime configuration file. %s: Cannot allocate memory. %s: Cannot open %s: %s %s: Invalid command '%s' %s: Sending command %s with argument %s. %s: Sending command %s. 1.85:116:1016:916:9 + Overscan16:9 display mode active.16:9 output2-3 pulldown inversion2-3 pulldown inversion disabled.2-3 pulldown inversion enabled.2-3 pulldown inversion is not valid with your TV norm.2.35:14:3 + Overscan4:3 centre4:3 display mode active.Add current channelAll channels re-activated.Always-on-topAlways-on-top disabled.Always-on-top enabled.Apply matteAttempted framerateAttempted framerate: %.2f fpsAudio volume boostAustraliaAustralia (Optus)Average blit time: %.2f ms (%.0f MB/sec)Average render time: %5.2f msBackBlit spacing: %4.1f/%4.1f ms (want %4.1f ms)BottomBrightnessBroadcastCableCable with channels 100+Cannot change owner of %s: %s. Cannot create %s: %s Cannot create FIFO, remote control of tvtime disabled. Cannot open %s: %s Cannot open capture device %s.Cannot run two instances of tvtime with the same configuration. Cannot update configuration while tvtime running. Capture card volume will not be set by tvtime.CentreChange NTSC cable modeChange default audio standardChange frequency tableChange video sourceChannel disabled from the browse list.Channel managementChannel marked as active in the browse list.Checking %6.2f MHz:China BroadcastChroma kill disabled.Chroma kill enabled.Chroma killerClosed caption display failed to initialize, disabled. Closed captions disabled.Closed captions enabled.Colour decoding for this channel set to %s.Colour invertColour invert disabled.Colour invert enabled.Config file cannot be parsed. Settings will not be saved. ContrastCould not create new config file. CurrentCurrent channel active in listCurrent deinterlacer descriptionCustom (first run tvtime-scanner)DecreaseDefault languageDefaulting to PAL-BG audio decoding.Defaulting to PAL-DK audio decoding.Defaulting to PAL-I audio decoding.DeinterlacerDeinterlacer configurationDeinterlacer descriptionDisable signal detectionDisabledDropped frames: %dEnable signal detectionError creating configuration file. Error parsing configuration file %s. EuropeExitExit menuFailed to initialize UTF-8 to %s converter: iconv_open failed (%s). FavoritesFinetuneFinetune current channelFound a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list. FranceFrequency tableFullFull rate: %.2f fpsFullscreenFullscreen positionHalf rate, deinterlace bottom fields: %.2f fpsHalf rate, deinterlace top fields: %.2f fpsHigh (768 pixels)Horizontal resolutionHorizontal resolution will be %d pixels on restart.HueIncreaseInput configurationInput filtersInput: %s at %dx%d pixelsLow (360 pixels)Matte setting (4:3 input)Matte setting (Anamorphic input)MediumMirrorMirror disabled.Mirror enabled.Moderate (576 pixels)MuteNew ZealandNext: %sNo VBI device configured for CC decoding.No XML root element found in %s. No program information availableNo signalNo video sourceOn screen display failed to initialize, disabled. Output configurationOverscanOverscan settingOverscan: %.1f%%Paused.Performance estimatesPicturePicture settingsPicture settings reset to defaults.Preferred XMLTV languageProcessing every bottom field.Processing every input field.Processing every top field.QuietQuiet screenshotsReading configuration from %s Remapping %d. Enter new channel number.Renumber current channelReset all channels as activeReset to global defaultsResize window to match contentsRestart with new settingsRestarting tvtime. Resumed.Running %s. Running: %sRussiaSaturationSave current settings as channel defaultsSave current settings as defaultsSave current settings as global defaultsSaved current picture settings as global defaults. Saved current picture settings on channel %d. Saving command line options. Scan channels for signalScanner unavailable with signal checking disabled.Scanning for channels being broadcast.Scanning from %6.2f MHz to %6.2f MHz. Scanning using TV standard %s. Screenshot messages disabled.Screenshot messages enabled.Screenshot: %sSet current channel as PALSet current channel as SECAMSet fullscreen positionSetting capture card volume to %d%%.SetupSignal detectedSignal detection disabled.Signal detection enabled.Sleep in %d minutes.Sleep off.South AfricaStandard (720 pixels)Stop channel scanSwitch audio standardTelevision standardTelevision standard will be %s on restart.Thank you for using tvtime. Toggle XDS decodingToggle closed captionsTopUnknown languageUsing HRC cable frequencies.Using IRC cable frequencies.Using PAL-BG audio decoding for this channel.Using PAL-DK audio decoding for this channel.Using PAL-I audio decoding for this channel.Using default language for XMLTV data.Using nominal NTSC cable frequencies.Using unknown language (%s) for XMLTV data.Video processingVolumeXDS decoding disabled.XDS decoding enabled.XMLTV language set to %s (%s).tvtime not running. usage: %s [OPTION]... Project-Id-Version: tvtime cvs Report-Msgid-Bugs-To: http://tvtime.net/ POT-Creation-Date: 2016-02-24 12:26-0300 PO-Revision-Date: 2006-12-03 09:21+0500 Last-Translator: Denis V. Sirotkin Language-Team: Alexander Belov Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ошибка Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¸Ð²ÐµÐ»ÐµÐ³Ð¸Ð¹ ÑÑƒÐ¿ÐµÑ€Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ root: %s. tvtime завершает работу Ð´Ð»Ñ Ð¸Ð·Ð±ÐµÐ¶Ð°Ð½Ð¸Ñ Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼ Ñ Ð±ÐµÐ·Ð¾Ð¿Ð°ÑноÑтью. Ошибка входа в режим UTF-8 через bind_textdomain_codeset() (возвращено %s.) Это может вызвать неправильное отображение Ñообщений! ПожалуйÑта, отправте отчёт об ошибке на %s. Ðа входе %d тюнер не обнаружен. ЕÑли тюнер ÑущеÑтвует, выберете другой вход Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ --input=. Возможно ваш драйвер платы захвата, %s, не поддерживает захват c полной чаÑтотой кадров. Возможно он неправильно наÑтроен или вы выбрали ошибочное уÑтройÑтво захвата (%s). Драйвер вашей платы захвата, %s, не предоÑтавлÑет Ð´Ð»Ñ tvtime доÑтаточного количеÑтва буферов Ð´Ð»Ñ Ð¾Ð±Ñ€Ð°Ð±Ð¾Ñ‚ÐºÐ¸ видеопотока. УбедитеÑÑŒ в документации на драйвер, можете ли вы увеличить количеÑтво буферов, предоÑтавлÑемых программам и пришлите Ñти данные разработчикам tvtime на %s ДоÑтупные команды: tvtime ÑвлÑетÑÑ Ñвободным программным обеÑпечением, напиÑанным Билли БигÑом (Billy Biggs), Даугом БÑллом (Doug Bell) и многими другими .УÑÐ»Ð¾Ð²Ð¸Ñ ÐºÐ¾Ð¿Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¸ другую информацию Ñмотрите на нашем Ñайте http://tvtime.net/ ÐвторÑкие права на tvtime (C) 2001, 2002, 2003 принадлежат Билли БигÑу, Даугу БÑллу, ÐлекÑандру С. Белову (Alexander S. Belov), и Ðчиму Шнайдеру (Achim Schneider). -A, --nowidescreen Режим 4:3. -F, --configfile=FILE Дополнительный файл Ð´Ð»Ñ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ¸ наÑтроек. -I, --inputwidth=SAMPLING Горизонтальное разрешение (по умолчанию 720 точек). -M, --window ЗапуÑтить tvtime в оконном режиме. -R, --priority=PRI УÑтановить приоритет процеÑÑа tvtime at. -S, --saveoptions Сохранить опции командной Ñтроки в конфигурационный файл. -X, --display=DISPLAY ИÑпользовать Ð´Ð»Ñ Ð¿Ð¾Ð´ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ñ‹Ð¹ Ñкран X. -a, --widescreen Режим 16:9. -b, --vbidevice=DEVICE УÑтройÑтво VBI (по умолчанию /dev/vbi0). -c, --channel=CHANNEL При загрузке переключитьÑÑ Ð½Ð° указанный канал. -f, --frequencies=NAME Таблица чаÑтот. (по умолчанию us-cable). ДоÑтупные значениÑ: us-cable us-cable100 us-broadcast china-broadcast southafrica japan-cable japan-broadcast europe australia australia-optus newzealand france russia custom (Ñначало запуÑтите tvtime-scanner) -g, --geometry=GEOMETRY УÑтановить размер окна вывода. -h, --help Показать Ñто Ñообщение. -i, --input=INPUTNUM Ðомер входа video4linux (по умолчанию 0). -k, --slave Отключить обработку входного Ñигнала в tvtime (ведомый режим). -l, --xmltvlanguage=LANG ИÑпользовать данные XMLTV в указанном Ñзыке, еÑли доÑтупно. -m, --fullscreen ЗапуÑтить tvtime в полноÑкранном режиме. -n, --norm=NORM Телевизионный Ñтандарт. tvtime поддерживает: NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M, PAL-N или PAL-60 (по умолчанию NTSC). -s, --showdrops Печатать ÑоÑтоÑние об отброшенных кадрах (Ð´Ð»Ñ Ð¾Ñ‚Ð»Ð°Ð´ÐºÐ¸). -t, --xmltv=FILE Загрузить ÑпиÑки XMLTV из указанного файла. -v, --verbose Печатать отладочные ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð² stderr. %s: %d точек%s в макÑимуме (%d точек)%s не ÑвлÑетÑÑ ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ð¾Ð½Ð½Ñ‹Ð¼ файлом tvtime. %s: не могу выделить памÑть. %s: Ðе могу открыть %s: %s %s: ÐÐµÐ²ÐµÑ€Ð½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° '%s' %s: ПоÑылаю команду %s Ñ Ð°Ñ€Ð³ÑƒÐ¼ÐµÐ½Ñ‚Ð¾Ð¼ %s. %s: ПоÑылаю команду %s. 1.85:116:1016:916:9 + приближениеВключен режим 16:9.размер 16:92-3 Ð¿Ð¾Ð½Ð¸Ð¶ÐµÐ½Ð½Ð°Ñ Ð¸Ð½Ð²ÐµÑ€ÑиÑ2-3 Ð¿Ð¾Ð½Ð¸Ð¶ÐµÐ½Ð½Ð°Ñ Ð¸Ð½Ð²ÐµÑ€ÑÐ¸Ñ Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð°.2-3 Ð¿Ð¾Ð½Ð¸Ð¶ÐµÐ½Ð½Ð°Ñ Ð¸Ð½Ð²ÐµÑ€ÑÐ¸Ñ Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½Ð°.2-3 Ð¿Ð¾Ð½Ð¸Ð¶ÐµÐ½Ð½Ð°Ñ Ð¸Ð½Ð²ÐµÑ€ÑÐ¸Ñ Ð½Ðµ работает в вашем Ñтандарте ТВ.2.35:14:3 + приближение4:3 центрВключен режим 4:3Добавить текущий каналВÑе каналы активированыВÑегда впереди других оконРежим "вÑегда впереди других окон" выключен.Режим "вÑегда впереди других окон" включен.Изменение размера изображениÑЧаÑтота кадровЧаÑтота кадров в Ñекунду: %.2fДополнительное уÑиление громкоÑти звукаÐвÑтралиÑÐвÑÑ‚Ñ€Ð°Ð»Ð¸Ñ (Optus)Среднее Ð²Ñ€ÐµÐ¼Ñ ÐºÐ¾Ð¿Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ ÐºÐ°Ð´Ñ€Ð¾Ð²: %.2f мÑек (%.0f Мб/Ñек)Среднее Ð²Ñ€ÐµÐ¼Ñ Ð¿ÐµÑ€ÐµÑ€Ð¸Ñовки: %5.2f мÑекÐазадМежкадровое времÑ: %4.1f/%4.1f мÑек (должно быть %4.1f мÑек)ВнизуЯркоÑтьШироковещательноеКабельноеКабельное Ñ ÐºÐ°Ð½Ð°Ð»Ð°Ð¼Ð¸ 100+Ðе могу изменить владельца %s: %s. Ðе могу Ñоздать %s: %s Ðе могу Ñоздать FIFO, удалённое управление tvtime отключено. Ðе могу открыть %s: %s Ðе могу открыть уÑтройÑтво захвата '%s'.ÐÐµÐ»ÑŒÐ·Ñ Ð·Ð°Ð¿ÑƒÑтить две копии tvtime Ñ Ð¾Ð´Ð¸Ð½Ð°ÐºÐ¾Ð²Ñ‹Ð¼Ð¸ наÑтройками. ÐÐµÐ»ÑŒÐ·Ñ Ð¾Ð±Ð½Ð¾Ð²Ð¸Ñ‚ÑŒ конфигурацию, пока tvtime запущен. tvtime не будет уÑтанавливать громкоÑть платы захватаВ центреИзменить режим Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ ÐºÐ°Ð±ÐµÐ»ÑŒÐ½Ð¾Ð³Ð¾ NTSCИзменить формат звука по умолчаниюИзменить таблицу каналовИзменить входной каналКанал отключенУправление каналамиКанал помечен активнымПроверÑÑŽ чаÑтоту %6.2f МГц:КитайЦветное изображениеЧернобелое изображениеЧернобелое изображениеОшибка инициализации Ñкрытыех титров, отключено. Скрытые титры выключеныСкрытые титры включеныДекодирование цвета уÑтановлено в %s.Инвертировать цветаÐормальные цветаЦвета инвертированыФайл конфигурации не может быть обработан. ÐаÑтройки Ñохранены не будут. КонтраÑноÑтьÐе могу Ñоздать новый конфигурационный файл. ТекущийТекущий канал активированОпиÑание текущего режима обработки черезÑтрочноÑтиДругое (запуÑтите tvtime-scanner)УменьшитьОÑновной ÑзыкПо умолчанию декодирование звука PAL-BG.По умолчанию декодирование звука PAL-DK.По умолчанию декодирование звука PAL-I.Ðлгоритм ÑÐ³Ð»Ð°Ð¶Ð¸Ð²Ð°Ð½Ð¸Ñ Ñ‡ÐµÑ€ÐµÐ·ÑтрочноÑтиÐаÑтройка ÑÐ³Ð»Ð°Ð¶Ð¸Ð²Ð°Ð½Ð¸Ñ Ñ‡ÐµÑ€ÐµÐ·ÑтрочноÑтиОпиÑание режима обработки черезÑтрочноÑтиВыключить обнаружение входного ÑигналаОтключеноПропущенные кадры: %dВключить обнаружение входного ÑигналаОшибка ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ð¾Ð½Ð½Ð¾Ð³Ð¾ файла. Ошибка в файле конфигурации %s. ЕвропаВыходВыход из менюОшибка инициализации конвертора UTF-8 в %s: ошибка iconv_open (%s). ИзбранноеПодÑтройкаПодÑтроить текущий каналÐа чаÑтоте %6.2f МГц (%.2f - %.2f МГц) найден канал, добавлÑÑŽ в ÑпиÑок каналов. ФранциÑЧаÑÑ‚Ð¾Ñ‚Ð½Ð°Ñ Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ð°ÐŸÐ¾Ð»Ð½Ñ‹Ð¹ÐŸÐ¾Ð»Ð½Ð°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ñ€Ð°Ð·Ð²Ñ‘Ñ€Ñ‚ÐºÐ°: %.2f кадров/Ñек.Полный ÑкранПоложение Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¸ полном ÑÐºÑ€Ð°Ð½ÐµÐŸÐ¾Ð»Ð¾Ð²Ð¸Ð½Ð½Ð°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ñ€Ð°Ð·Ð²Ñ‘Ñ€Ñ‚ÐºÐ° нижних облаÑтей: %.2f кадров/Ñек.ÐŸÐ¾Ð»Ð¾Ð²Ð¸Ð½Ð½Ð°Ñ ÑÑ‚Ñ€Ð¾Ñ‡Ð½Ð°Ñ Ñ€Ð°Ð·Ð²Ñ‘Ñ€Ñ‚ÐºÐ° верхних облаÑтей: %.2f кадров/Ñек.Ð’Ñ‹Ñокое (768 точек)Горизонтальное разрешениеПоÑле перезапуÑка горизонтальное разрешение будет %d точек.ОттенкиУвеличитьОÑновные наÑтройкиФильтрыСигнал: %s - %dx%d точекÐизкое (360 точек)УÑтановки измененного размера Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ (4:3)УÑтановки изменённого размера Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ (иÑкаженное изображение)СреднийЗеркальное отображениеÐормальное изображениеЗеркальное изображениеУмеренное (576 точек)Звук отключенÐÐ¾Ð²Ð°Ñ Ð—ÐµÐ»Ð°Ð½Ð´Ð¸ÑСледующий: %sУÑтройчтво VBI не наÑтроено Ð´Ð»Ñ Ð´ÐµÐºÐ¾Ð´Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ CCÐ’ %s не найден корневой Ñлемент XML. Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ телепрограмме отÑутÑтвуетÐет ÑигналаÐет ÑигналаОшибка инициализации Ñкрана, отключено. Дополнительные наÑтройки изображениÑПриближениеПриближениеПриближение: %.1f%%Пауза.ХарактериÑтикиИзображениеÐаÑтройки изображениÑУÑтановки Ð´Ð»Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñброшены к начальнымПредпочитаемый Ñзык XMLTVОбаботка каждой нижней облаÑти.Обработка каждой входÑщей облаÑтиОбаботка каждой верхней облаÑтиТихийСкрытные Ñнимки ÑкранаЧтение конфигурации из %s Перенумеровать канал %d. Введите новый номер каналаПеренумеровать текущий каналÐктивировать вÑе каналыСброÑить уÑтановки к начальнымИзменить размеры окна до размеров ÑодержимогоПерезапуÑтить Ñ Ð½Ð¾Ð²Ñ‹Ð¼Ð¸ уÑтановкамиПерезапуÑк tvtime. Продолжение.ЗапуÑк %s. Запущен: %sРоÑÑиÑÐаÑыщенноÑтьСохранить текущие уÑтановки Ð´Ð»Ñ Ñтого каналаСохранить текущие уÑтановкиСохранить текущие уÑтановки как начальныеТекущие уÑтановки Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñохранены как начальные. Текущие уÑтановки Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñохранены Ð´Ð»Ñ Ñтого канала %d. СохранÑÑŽ опции командной Ñтроки. Сканирование каналовСканер не работает при отключенном автоопределении входного ÑигналаСканирование каналов.Сканирую от %6.2f до %6.2f МГц. Сканирование телевизионного Ñтандарта %s. Ð¡Ð¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¸ Ñъёме Ñкрана отключены.Ð¡Ð¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¸ Ñъёме Ñкрана включены.Снимок Ñкрана: %sПоказывать Ñтот канал в режиме PALПоказывать Ñтот канал в режиме SECAMУÑтановка полноÑкранного положениÑУÑтанавливаю громкоÑти платы захвата в %d%%.ÐаÑтройкиСигнал обнаруженÐвтоопределение Ñигнала выключеноÐвтоопределение Ñигнала включеноБездейÑтвовать %d минут.Отключить бездейÑÑ‚Ð²Ð¸ÐµÐ®Ð¶Ð½Ð°Ñ ÐфрикаСтандартное (720 точек)ОÑтановка ÑÐºÐ°Ð½Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ ÐºÐ°Ð½Ð°Ð»Ð¾Ð²Ð¡Ñ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚ звука Ð´Ð»Ñ Ñтого каналаТелевизионный ÑтандартПоÑле перезапуÑка телевизионный Ñтандарт будет %s.СпаÑибо за иÑпользование tvtime. Переключение XDS декодированиÑПереключение Ñкрытых титровВверхуЯзык неизвеÑтенИÑпользую кабельные чаÑтоты HRC.ИÑпользую кабельные чаÑтоты IRC.ИÑпользование декодера звука PAL-BG.ИÑпользование декодера звука PAL-DK.ИÑпользование декодера звука PAL-I.ИÑпользую оÑновной Ñзык Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ñ‹Ñ… XMLTVИÑпользую номинальные кабельные чаÑтоты NTSC.ИÑпользую неизвеÑтный Ñзык (%s) Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ñ‹Ñ… XMLTV.Обработка видеоÑигналаГромкоÑтьДекодирование XDS выключеноДекодирование XDS включеноЯзык XMLTV уÑтановлен в %s (%s).tvtime не запущен. иÑпользование: %s [ОПЦИЯ]... tvtime-1.0.11/po/tvtime.pot0000664000175000017500000006262212663345675012530 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Billy Biggs # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "" #: src/tvtime.c:909 msgid "16:9 output" msgstr "" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "" #: src/tvtime.c:968 msgid "Centre" msgstr "" #: src/tvtime.c:975 msgid "Top" msgstr "" #: src/tvtime.c:981 msgid "Bottom" msgstr "" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "" #: src/tvtime.c:1099 msgid "16:9" msgstr "" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "" #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "" #: src/tvtime.c:1440 msgid "No video source" msgstr "" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "" #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "" #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "" #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "" #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "" #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "" #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "" #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "" #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "" #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "" #: src/commands.c:325 msgid "Renumber current channel" msgstr "" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "" #: src/commands.c:346 msgid "Stop channel scan" msgstr "" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "" #: src/commands.c:364 msgid "Finetune current channel" msgstr "" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "" #: src/commands.c:393 msgid "Switch audio standard" msgstr "" #: src/commands.c:400 msgid "Change frequency table" msgstr "" #: src/commands.c:406 msgid "Disable signal detection" msgstr "" #: src/commands.c:407 msgid "Enable signal detection" msgstr "" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "" #: src/commands.c:623 msgid "Change default audio standard" msgstr "" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "" #: src/commands.c:709 msgid "Europe" msgstr "" #: src/commands.c:717 msgid "Russia" msgstr "" #: src/commands.c:724 msgid "France" msgstr "" #: src/commands.c:731 msgid "Australia" msgstr "" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "" #: src/commands.c:745 msgid "New Zealand" msgstr "" #: src/commands.c:752 msgid "China Broadcast" msgstr "" #: src/commands.c:759 msgid "South Africa" msgstr "" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "" #: src/commands.c:783 msgid "Disabled" msgstr "" #: src/commands.c:789 msgid "Quiet" msgstr "" #: src/commands.c:795 msgid "Medium" msgstr "" #: src/commands.c:801 msgid "Full" msgstr "" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "" #: src/commands.c:962 msgid "Colour invert" msgstr "" #: src/commands.c:970 msgid "Mirror" msgstr "" #: src/commands.c:978 msgid "Chroma killer" msgstr "" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "" #: src/commands.c:1131 msgid "Last Channel" msgstr "" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "" #: src/commands.c:1161 msgid "Quit" msgstr "" #: src/commands.c:1192 msgid "Exit menu" msgstr "" #: src/commands.c:1221 msgid "Frequency table" msgstr "" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "" #: src/commands.c:1392 msgid "Overscan" msgstr "" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "" #: src/commands.c:1825 msgid "Favorites" msgstr "" #: src/commands.c:1832 msgid "Add current channel" msgstr "" #: src/commands.c:1834 msgid "Exit" msgstr "" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "" #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "" #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "" #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "" #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "" #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "" #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "" #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "" #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "" #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "" #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "" #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "" #: src/commands.c:2380 msgid "Processing every input field." msgstr "" #: src/commands.c:2383 msgid "Processing every top field." msgstr "" #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "" #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "" #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "" #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "" #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "" #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "" #: src/commands.c:2527 msgid "All channels re-activated." msgstr "" #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "" #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "" #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "" #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "" #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "" #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "" #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "" #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "" #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "" #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "" #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "" #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "" #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "" #: src/commands.c:2822 msgid "Mirror enabled." msgstr "" #: src/commands.c:2824 msgid "Mirror disabled." msgstr "" #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "" #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "" #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "" #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "" #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "" #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "" #: src/commands.c:3029 msgid "Volume" msgstr "" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "" #: src/commands.c:3310 msgid "Paused." msgstr "" #: src/commands.c:3310 msgid "Resumed." msgstr "" #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr "" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr "" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr "" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr "" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr "" #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr "" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr "" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr "" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr "" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr "" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 msgid " -l, --borderless Start tvtime without a window border.\n" msgstr "" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr "" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr "" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr "" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr "" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" tvtime-1.0.11/po/LINGUAS0000664000175000017500000000007112664122727011477 00000000000000ca cs de es fi fr hu ko lv nl nn pl pt pt_BR ru sv sk uk tvtime-1.0.11/po/hu.po0000664000175000017500000011653312663345675011451 00000000000000# Hungarian message catalog for tvtime # Copyright (C) 2003 Billy Biggs # This file is distributed under the same license as the tvtime package. # GERE Károly , 2005 msgid "" msgstr "" "Project-Id-Version: tvtime 0.99\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2005-11-02 23:07+0100\n" "Last-Translator: GERE Károly \n" "Language-Team: GERE Károly \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "Vonaleltávolító beállítások" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "Vissza" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "Teljes képkockasebesség: %.2f fps" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "Fél képkockasebesség, felsÅ‘ mezÅ‘k: %.2f fps" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "Fél képkockasebesség, alsó mezÅ‘k: %.2f fps" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "Túlnyújtási beállítások" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "Maszk alkalmazása" #: src/tvtime.c:909 msgid "16:9 output" msgstr "16:9 arány" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "Ablakméret tartalomhoz igazítása" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "Teljes képernyÅ‘" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "Teljes képernyÅ‘ pozíciója" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "A tvtime mindig látható" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Képmentés visszajelzés nélkül" #: src/tvtime.c:968 msgid "Centre" msgstr "Középen" #: src/tvtime.c:975 msgid "Top" msgstr "Fent" #: src/tvtime.c:981 msgid "Bottom" msgstr "Lent" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "Megkísérelt képkockasebesség" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "Teljesítménybecslés" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "Vonaleltávolító" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "Input: %s %dx%d pixeles mérettel" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "Megkísérelt képkockasebesség: %.2f kuvaa/s" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "Ãtlagos blit-idÅ‘: %.2f ms (%.0f MB/s)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "Ãtlagos renderelési idÅ‘: %5.2f ms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Eldobott képkocka: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Blit-köz: %4.1f/%4.1f ms (szükséges: %4.1f ms)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + túlnyújtás" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1,85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2,35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 középen" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "16:10" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + túlnyújtás" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "Képmaszkbeállítás (anamorf input)" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "Képmaszkbeállítás (4:3 input)" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: Sikertelen memóriafoglalás.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "A rögzítÅ‘eszköz (%s) megnyitása sikertelen." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " A rögzítókártya meghajtója (%s) valószínűleg nem támogatja\n" " a teljes képkockasebességű rögzítést. Kérlek, ellenÅ‘rizd, hogy\n" " megfelelÅ‘en van-e beállítva, és nézd meg, hogy a megfelelÅ‘\n" " rögzítÅ‘eszközt (%s) választottad-e.\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " A rögzítÅ‘kártya meghajtója (%s) nem szolgáltat elég pufferterületet\n" " a videófeldolgozáshoz. Kérlek, ellenÅ‘rizd a meghajtóprogram\n" " dokumentációjában, hogy lehetséges-e az alkalmazások számára nyújtott\n" " pufferek számának növelése, és küldj errÅ‘l jelentést a tvtime " "hibakövetÅ‘ rendszerébe a következÅ‘ címre: %s.\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "Az OSD inicializálása nem sikerült, letiltva.\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "Nincs videóforrás" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "FIFO létrehozása sikertelen, a távirányító letiltva.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "" "Closed Caption (CC, képfeliratok) inicializásása sikertelen, letiltva.\n" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "Mindig látható mód engedélyezve." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "Mindig látható mód letiltva." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "16:9 mód aktív." #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "4:3 mód aktív." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "Képmentési üzenetek letiltva." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "Képmentési üzenetek engedélyezve." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "2-3 pulldown inversion letiltva." #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "2-3 pulldown inversion engedélyezve." #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "A 2-3 pulldown inversion nem alkalmazható ennél a TV normánál." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Kép mentése: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "A tvtime újraindul.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "Köszönöm, hogy a tvtime-ot használod.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " Nem sikerült eldobni a root jogokat: %s.\n" " A tvtime a biztonsági problémák elkerülésének\n" " érdekében most leáll.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "Futtatás: %s.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "Jelenlegi" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "Nincs elérhetÅ‘ műsorinformáció" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "KövetkezÅ‘: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "Csatorna újraszámozása" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "A csatorna aktív a listán" #: src/commands.c:346 msgid "Stop channel scan" msgstr "Csatornakeresés leállítása" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "Csatornakeresés" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "Az összes csatorna aktívra állítása" #: src/commands.c:364 msgid "Finetune current channel" msgstr "Csatorna finomhangolása" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "NTSC kábel mód váltása" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "Csatorna SECAM-ra állítása" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "Csatorna PAL-ra állítása" #: src/commands.c:393 msgid "Switch audio standard" msgstr "Audió norma váltása" #: src/commands.c:400 msgid "Change frequency table" msgstr "Frekvenciatábla váltása" #: src/commands.c:406 msgid "Disable signal detection" msgstr "Jelérzékelés letiltása" #: src/commands.c:407 msgid "Enable signal detection" msgstr "Jelérzékelés engedélyezése" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "Alapértelmezett nyelv" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "Ismeretlen nyelv" #: src/commands.c:623 msgid "Change default audio standard" msgstr "Alapértelmezett audió norma váltása" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "Hang erÅ‘sítése" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "TV szabvány" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "Vízszintes felbontás" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Kábeltévé" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Antennás műsorszórás" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "100+ csatornás kábeltévé" #: src/commands.c:709 msgid "Europe" msgstr "Európa" #: src/commands.c:717 msgid "Russia" msgstr "Oroszország" #: src/commands.c:724 msgid "France" msgstr "Franciaország" #: src/commands.c:731 msgid "Australia" msgstr "Ausztrália" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "Ausztrália (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "Új-Zéland" #: src/commands.c:752 msgid "China Broadcast" msgstr "Kína (antennás)" #: src/commands.c:759 msgid "South Africa" msgstr "Dél-Afrika" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "Egyéni (elÅ‘ször futtasd a tvtime-scanner programot)" #: src/commands.c:783 msgid "Disabled" msgstr "Letiltva" #: src/commands.c:789 msgid "Quiet" msgstr "Alacsony" #: src/commands.c:795 msgid "Medium" msgstr "Közepes" #: src/commands.c:801 msgid "Full" msgstr "Teljes" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s Jelenleg: %d pixel" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "Alacsony (360 pixel)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "Mérsékelt (576 pixel)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Szabványos (720 pixel)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Magas (768 pixel)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s maximum (%d pixel)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "Újraindítás az új beállításokkal" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "Növel" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "Csökkent" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "2-3 pulldown inversion" #: src/commands.c:962 msgid "Colour invert" msgstr "Színek invertálása" #: src/commands.c:970 msgid "Mirror" msgstr "Tükrözés" #: src/commands.c:978 msgid "Chroma killer" msgstr "Színeltávolítás" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "Beállítás" #: src/commands.c:1131 msgid "Last Channel" msgstr "" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "Csatornakezelés" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "Input beállítások" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "Képbeállítások" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Videófeldolgozás" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Output beállítások" #: src/commands.c:1161 msgid "Quit" msgstr "" #: src/commands.c:1192 msgid "Exit menu" msgstr "Menü bezárása" #: src/commands.c:1221 msgid "Frequency table" msgstr "Frekvenciatáblázat" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "Finomhangolás" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "Videóforrás váltás" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "Closed Caption (CC) be/ki" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "XDS dekódolás be/ki" #: src/commands.c:1392 msgid "Overscan" msgstr "Túlnyújtás" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Teljes képernyÅ‘s pozíció" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "Az aktuális vonaleltávolító leírása" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Input szűrÅ‘k" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "Vonaleltávolító leírása" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Kép" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "FényerÅ‘" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "Kontraszt" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "Telítettség" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Ãrnyalat" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "Beállítások mentése alapértelmezésként" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "Globális alapbeállítások visszaállítása" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "Beállítások mentése globális alapértelmezésként" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "Beállítások mentése a csatorna alapértelmezéseként" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "ElÅ‘nyben részesített XMLTV nyelv" #: src/commands.c:1825 msgid "Favorites" msgstr "Kedvencek" #: src/commands.c:1832 msgid "Add current channel" msgstr "Aktuális csatorna hozzáadása" #: src/commands.c:1834 msgid "Exit" msgstr "Kilépés" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Leállítás %d perc múlva." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "Leállítás kikapcsolva." #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "PAL-I audió dekódolás használata ehhez a csatornához." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "PAL-DK audió dekódolás használata ehhez a csatornához." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "PAL-BG audió dekódolás használata ehhez a csatornához." #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "PAL-I audió dekódolás aktiválva." #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "PAL-DK audió dekódolás aktiválva." #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "PAL-BG audió dekódolás aktiválva." #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "A csatorna aktívként megjelölve." #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "A csatorna a böngészÅ‘listából eltávolítva." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "A rögzítÅ‘kártya hangerejét nem a tvtime állítja be." #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "RögzítÅ‘kártya hangereje: %d%%." #: src/commands.c:2380 msgid "Processing every input field." msgstr "Az összes input mezÅ‘ feldolgozása." #: src/commands.c:2383 msgid "Processing every top field." msgstr "Csak a felsÅ‘ mezÅ‘k feldolgozása." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "Csak az alsó mezÅ‘k feldolgozása." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "A vízszintes felbontás %d lesz újraindításkor." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "A TV-szabvány %s lesz újraindításkor." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "Alapértelmezett nyelv használata az XMLTV adatokhoz." #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "Ismeretlen (%s) nyelv használata az XMLTV adatokhoz." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "XMLTV nyelv beállítása: %s (%s)." #: src/commands.c:2527 msgid "All channels re-activated." msgstr "Az összes csatorna újraaktiválva." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "Add meg %d. csatorna új számát." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "A csatornakeresÅ‘ nem működik, ha a jelérzékelés le van tiltva." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "Csatornák keresése." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "Closed Caption (CC) letiltva." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "Closed Caption (CC) engedélyezve." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "Nincs VBI eszköz beállítva a CC dekódoláshoz." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "A csatorna színdekódolása: %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "Futtatás: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "Jelérzékelés engedélyezve." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "Jelérzékelés letiltva." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "XDS dekódolás engedélyezve." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "XDS dekódolás letiltva." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "Színek invertálása engedélyezve." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "Színek invertálása letiltva." #: src/commands.c:2822 msgid "Mirror enabled." msgstr "Tükrözés engedélyezve." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "Tükrözés tiltva." #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "Színeltávolítás engedélyezve." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "Színeltávolítás tiltva." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "Túlnyújtás: %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "Képbeállítások visszaállítása az alapértelmezettre." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "Névleges NTSC kábel frekvenciák használata." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "IRC kábel frekvenciák használata." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "HRC kábel frekvenciák használata." #: src/commands.c:3029 msgid "Volume" msgstr "HangerÅ‘" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "Képbeállítások mentése globális alapértelmezettként.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "Képbeállítások elmentve a %d. csatornához.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Szüneteltetve." #: src/commands.c:3310 msgid "Resumed." msgstr "Újraindítva." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "Hiba a konfigurációs fájl (%s) feldolgozása közben.\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "Nem található XML gyökérelem a(z) %s fájlban.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s nem érvényes tvtime konfigurációs fájl.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "" "A konfigurációs fájlt nem sikerült feldolgozni. A beállítások nem lesznek " "elmentve.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "Nem sikerült új konfigurációs fájlt létrehozni.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "Hiba a konfigurációs fájl létrehozása közben.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "Nem sikerült a(z) %s tulajdonosának megváltoztatása: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "A tvtime szabad szoftver, melyet Billy Biggs, Doug Bell és sokan mások\n" "készítettek. A részletek és a másolás feltétele megtalálhatók a\n" "honlapunkon: http://tvtime.net/\n" "\n" "tvtime Copyright © 2001, 2002, 2003 Billy Biggs, Doug Bell,\n" "Alexander S. Belov és Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "használat: %s [OPCIÓK]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen 16:9 mód\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen 4:3 mód\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr " -b, --vbidevice=ESZKÖZ VBI eszköz (alapért.: /dev/vbi0)\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr " -c, --channel=CSATORNA Induáskor ugrás a megadott csatornára\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 #, fuzzy msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr "" " -d, --device=ESZKÖZ video4linux eszköz (alapért.: /dev/video0)\n" #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=NÉV A használandó frekvenciatáblázat\n" " (alapért.: us-cable)\n" "\n" " Lehetséges értékek:\n" " us-cable \n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (elÅ‘tte futtasd a tvtime-scanner-t)\n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr " -F, --configfile=FÃJL További konfigurációs állomány\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help Ezen súgó kiíratása\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr " -g, --geometry=GEOMETRIA Az output ablak méretének megadása\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr " -i, --input=SZÃM video4linux input szám (alapért.: 0)\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=MÉRET Az input vízszintes felbontása.\n" " (alapért.: 720 pixel)\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr " -k, --slave Inputkezelés letiltása (slave-mód)\n" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr " -m, --fullsreen Indítás teljes képernyÅ‘s módban\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 #, fuzzy msgid " -l, --borderless Start tvtime without a window border.\n" msgstr " -M, --window Indítás ablakos módban\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window Indítás ablakos módban\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=NORMA Input norma. Lehetséges értékek:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N és PAL-60 (alapért.: NTSC)\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops Eldobott képkockák statisztikájának\n" " megjelenítése (hibakeresési céllal)\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr "" " -S, --saveoptions A parancssori opciók mentése a konfigurációs\n" " fájlba\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" " -t, --xmltv=FÃJL XMLTV listák beolvasása az adott fájlból\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=NYELV Az adott nyelvű XMLTV adatok használata,\n" " amennyiben rendelkezésre állnak\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr " -v, --verbose Debug üzenetek kiírása az stderr-re\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr " -X, --display=DISPLAY Kapcsolódás az adott X képernyÅ‘höz\n" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 #, fuzzy msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer=ESZKÖZ[:CSAT] A használandó mixer és csatorna\n" " (alapért.: /dev/mixer:line)\n" "\n" " Lehetséges csatornaértékek:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr " -R, --priority=PRI A tvtime prioritásának megadása.\n" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "Konfiguráció beolvasása: %s\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "A tvtime két példánya nem futhat ugyanazokkal a beállításokkal.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "Parancssori opciók mentése.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "A konfiguráció nem módosítható, míg a tvtime fut.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "Nincs jel" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "Néma" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "Nem sikerült létrehozni: %s: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "Nem sikerült megnyitni: %s: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" "Az UTF-8 - %s konverter inicializálása sikertelen:\n" "iconv_open (%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " Nem sikerült UTF-8 módba kapcsolni a bind_text_domain_codeset()\n" " használatával (visszatérési érték: %s). Emiatt az üzenetek\n" " helytelenül jelenhetnek meg. Kérlek, jelents ez a hibát a\n" " következÅ‘ címen: %s\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "Lehetséges parancsok:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "A tvtime nem fut.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: Nem sikerült megnyitni: %s: %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: Érvénytelen parancs: \"%s\"\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: A(z) %s parancs küldése %s paraméterrel.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: Parancs küldése: %s.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "Keresés a(z) %s norma használatával.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " A(z) %d inputon nem található tuner. Ha van tunered, válassz\n" " egy másikat a --input= paraméterrel.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "Keresés a(z) %6.2f - %6.2f MHz tartományban.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "Vizsgálat: %6.2f MHz:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "Jel érzékelhetÅ‘" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "A(z) %6.2f MHz (%.2f - %.2f MHz) frekvencián csatorna található;\n" "csatornalistához hozzáadva.\n" #~ msgid "Preferred audio mode" #~ msgstr "Audió mód" #~ msgid "Mono" #~ msgstr "Monó" #~ msgid "Stereo" #~ msgstr "Sztereó" #~ msgid "SAP" #~ msgstr "SAP" #~ msgid "Primary Language" #~ msgstr "ElsÅ‘dleges nyelv" #~ msgid "Secondary Language" #~ msgstr "Másodlagos nyelv" #~ msgid "" #~ "\n" #~ " You are using the bttv driver, but have not configured enough\n" #~ " buffers for tvtime to process the video optimally. This is\n" #~ " true by default with bttv in kernels before 2.4.21. Please\n" #~ " set the option gbuffers=4 when loading bttv. For more\n" #~ " information see our support page at %s\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " A bttv meghajtót használod, de a tvtime optimális " #~ "videófeldolgozásához\n" #~ " túl kicsi puffer van hozzá beállítva. 2.4.11-es elÅ‘tti kernelek\n" #~ " esetében ez az alapbeállítás. Kérlek, hogy a bttv modul betöltésekor\n" #~ " add meg a \"gbuffers=4\" paramétert. További információkért keresd\n" #~ " fel a következÅ‘ címet: %s\n" #~ "\n" #~ msgid "Use PAL-BG audio decoding" #~ msgstr "PAL-BG audiódekódolás használata" #~ msgid "Use PAL-DK audio decoding" #~ msgstr "PAL-DK audiódekódolás használata" #~ msgid "Default to PAL-DK audio decoding" #~ msgstr "PAL-DK audió dekódolás" #~ msgid "" #~ "\n" #~ " Enhanced Real Time Clock support in your kernel is necessary for\n" #~ " smooth video. We strongly recommend that you load the 'rtc' kernel\n" #~ " module before starting tvtime, and make sure that your user has\n" #~ " access to the device file (/dev/rtc or /dev/misc/rtc). See our\n" #~ " support page at %s for more information.\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " A folyamatos videómegjelenítéshez szükseég van az \"Enhanced Real " #~ "Time\n" #~ " Clock\" támogatásra a kernelben. ErÅ‘sen javasolt az \"rtc\" modul " #~ "betöltése\n" #~ " a tvtime elindítása elÅ‘tt, és a felhasználónak megfelelÅ‘ jogokkal " #~ "kell\n" #~ " rendelkeznie az eszköz (/dev/rtc vagy /dev/misc/rtc) fölött. További\n" #~ " információkért látogasd meg a következÅ‘ címet:\n" #~ " %s\n" #~ "\n" #~ msgid "" #~ "\n" #~ " Failed to get 1024 Hz resolution from your RTC device. High\n" #~ " resolution access is necessary for video to be smooth. Please\n" #~ " run tvtime as root, set tvtime as SUID root, or change the\n" #~ " maximum RTC resolution allowed for user processes by running this\n" #~ " command as root:\n" #~ " sysctl -w dev.rtc.max-user-freq=1024\n" #~ " See our support page at %s for more information.\n" #~ "\n" #~ msgstr "" #~ "\n" #~ " Az RTC eszköztÅ‘l nem sikerült 1024 Hz-es frekvenciűt kérni.\n" #~ " A folyamatos videóegjelenítéshez magas frekvenciára van szükség.\n" #~ " Kérlek, futtasd a tvtime-ot root-ként, állítsd be SUID root-ra,\n" #~ " vagy a következÅ‘ parancs root-ként történÅ‘ futtatásával állítsd\n" #~ " át a maximális RTC frekvenciát:\n" #~ " sysctl -w dev.rtc.max-user-freq=1024\n" #~ " További információkért látogasd meg a következÅ‘ címet:\n" #~ " %s\n" #~ "\n" tvtime-1.0.11/po/pt_BR.po0000664000175000017500000011123612664021537012023 00000000000000# translation of tvtime to Português do Brasil # Vagner Nishimoto , 2008. # Mauro Carvalho Chehab , 2011 msgid "" msgstr "" "Project-Id-Version: tvtime 1.0.4\n" "Report-Msgid-Bugs-To: http://tvtime.net/\n" "POT-Creation-Date: 2016-02-24 12:26-0300\n" "PO-Revision-Date: 2016-02-24 12:32-0300\n" "Last-Translator: Mauro Carvalho Chehab \n" "Language-Team: Português do Brasil\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.6\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: src\n" #: src/tvtime.c:792 src/commands.c:1409 src/commands.c:1434 msgid "Deinterlacer configuration" msgstr "Configuração do desentrelaçador" #: src/tvtime.c:822 src/tvtime.c:841 src/tvtime.c:876 src/tvtime.c:957 #: src/tvtime.c:985 src/tvtime.c:1120 src/commands.c:413 src/commands.c:454 #: src/commands.c:648 src/commands.c:682 src/commands.c:702 src/commands.c:771 #: src/commands.c:806 src/commands.c:864 src/commands.c:935 src/commands.c:984 #: src/commands.c:1252 src/commands.c:1299 src/commands.c:1354 #: src/commands.c:1426 src/commands.c:1506 src/commands.c:1518 #: src/commands.c:1574 src/commands.c:1587 src/commands.c:1618 #: src/commands.c:1651 src/commands.c:1684 src/commands.c:1716 msgid "Back" msgstr "Voltar" #: src/tvtime.c:854 src/tvtime.c:997 #, c-format msgid "Full rate: %.2f fps" msgstr "Taxa nominal: %.2f quadros/s" #: src/tvtime.c:862 src/tvtime.c:1001 #, c-format msgid "Half rate, deinterlace top fields: %.2f fps" msgstr "Meia taxa, desentrelaçar campo superior: %.2f quadros/s" #: src/tvtime.c:869 src/tvtime.c:1005 #, c-format msgid "Half rate, deinterlace bottom fields: %.2f fps" msgstr "Meia taxa, desentrelaçar campo inferior: %.2f quadros/s" #: src/tvtime.c:894 msgid "Overscan setting" msgstr "Preferência de sobre-amostragem" #: src/tvtime.c:901 src/commands.c:1386 msgid "Apply matte" msgstr "Aplicar relação de aspecto" #: src/tvtime.c:909 msgid "16:9 output" msgstr "Saída 16:9" #: src/tvtime.c:916 msgid "Resize window to match contents" msgstr "Redimensionar a janela de acordo com o conteúdo" #: src/tvtime.c:925 msgid "Fullscreen" msgstr "Tela cheia" #: src/tvtime.c:932 msgid "Set fullscreen position" msgstr "Definir posição da tela cheia" #: src/tvtime.c:942 msgid "Always-on-top" msgstr "Sempre no topo" #: src/tvtime.c:951 msgid "Quiet screenshots" msgstr "Capturas de tela silenciosas" #: src/tvtime.c:968 msgid "Centre" msgstr "Centro" #: src/tvtime.c:975 msgid "Top" msgstr "Topo" #: src/tvtime.c:981 msgid "Bottom" msgstr "Fundo" #: src/tvtime.c:995 src/commands.c:1418 src/commands.c:1448 msgid "Attempted framerate" msgstr "Taxa de exibição tentativa" #: src/tvtime.c:1022 msgid "Performance estimates" msgstr "Estimativa de desempenho" #: src/tvtime.c:1024 msgid "Deinterlacer" msgstr "Desentrelaçador" #: src/tvtime.c:1027 #, c-format msgid "Input: %s at %dx%d pixels" msgstr "Entrada: %s a %dx%d pontos" #: src/tvtime.c:1031 #, c-format msgid "Attempted framerate: %.2f fps" msgstr "Taxa de apresentação objetivo: %.2f quadros/s" #: src/tvtime.c:1035 #, c-format msgid "Average blit time: %.2f ms (%.0f MB/sec)" msgstr "Tempo médio de desenho: %.2f ms (%.0f MB/s)" #: src/tvtime.c:1039 #, c-format msgid "Average render time: %5.2f ms" msgstr "Tempo médio de renderização: %5.2f ms" #: src/tvtime.c:1043 #, c-format msgid "Dropped frames: %d" msgstr "Imagens não mostradas: %d" #: src/tvtime.c:1049 #, c-format msgid "Blit spacing: %4.1f/%4.1f ms (want %4.1f ms)" msgstr "Intervalo de desenho: %4.1f/%4.1f ms (pretendido %4.1f ms)" #: src/tvtime.c:1068 src/tvtime.c:1130 msgid "16:9 + Overscan" msgstr "16:9 + sobre-amostragem" #: src/tvtime.c:1073 src/tvtime.c:1109 msgid "1.85:1" msgstr "1.85:1" #: src/tvtime.c:1078 src/tvtime.c:1114 msgid "2.35:1" msgstr "2.35:1" #: src/tvtime.c:1083 src/tvtime.c:1133 msgid "4:3 centre" msgstr "4:3 centralizado" #: src/tvtime.c:1088 src/tvtime.c:1104 msgid "16:10" msgstr "16:10" #: src/tvtime.c:1094 src/tvtime.c:1137 msgid "4:3 + Overscan" msgstr "4:3 + sobre-amostragem" #: src/tvtime.c:1099 msgid "16:9" msgstr "16:9" #: src/tvtime.c:1129 msgid "Matte setting (Anamorphic input)" msgstr "Preferência de relação de aspecto: entrada anamórfica" #: src/tvtime.c:1136 msgid "Matte setting (4:3 input)" msgstr "Preferência de relação de aspecto: entrada 4:3" #: src/tvtime.c:1215 src/tvtime.c:1262 src/tvtime.c:1306 src/tvtime.c:1314 #: src/tvtime.c:1410 src/tvtime.c:1459 src/tvtime.c:1480 src/tvtime.c:1494 #: src/tvtime.c:1508 src/tvtimeconf.c:1025 src/tvtimeconf.c:1243 #: src/tvtime-command.c:56 src/tvtime-command.c:71 src/tvtime-configure.c:48 #: src/tvtime-scanner.c:67 src/tvtime-scanner.c:103 #, c-format msgid "%s: Cannot allocate memory.\n" msgstr "%s: Não é possível alocar memória.\n" #: src/tvtime.c:1327 #, c-format msgid "Cannot open capture device %s." msgstr "Não é possível abrir o dispositivo de captura %s." #: src/tvtime.c:1332 #, c-format msgid "" "\n" " Your capture card driver, %s, does not seem\n" " to support full framerate capture. Please check to see if it is\n" " misconfigured, or if you have selected the wrong capture\n" " device (%s).\n" "\n" msgstr "" "\n" " O driver da placa de captura, %s, parece não suportar\n" " captura a taxa nominal. Por favor, verifique se está mal\n" " configurado ou se selecionou o dispositivo de captura errado\n" " (%s).\n" "\n" #: src/tvtime.c:1376 #, c-format msgid "" "\n" " Your capture card driver, %s, is not providing\n" " enough buffers for tvtime to process the video. Please check with\n" " your driver documentation to see if you can increase the number\n" " of buffers provided to applications, and report this to the tvtime\n" " bug tracker at %s\n" "\n" msgstr "" "\n" " O driver da sua placa de captura, %s, não está disponibilizando\n" " memória suficiente para o tvtime processar o vídeo. Por favor,\n" " verifique na documentação do seu driver de como é possível\n" " aumentar a memória disponível à aplicações e relate-o ao tvtime\n" " bug tracker em %s\n" "\n" #: src/tvtime.c:1428 msgid "On screen display failed to initialize, disabled.\n" msgstr "A inicialização da Informação na tela falhou, desativada.\n" #: src/tvtime.c:1440 msgid "No video source" msgstr "Não há fonte de vídeo" #: src/tvtime.c:1484 msgid "Cannot create FIFO, remote control of tvtime disabled.\n" msgstr "Não foi possível criar FIFO, controle do tvtime desativado.\n" #: src/tvtime.c:1502 msgid "Closed caption display failed to initialize, disabled.\n" msgstr "A inicialização da exibição de CC falhou, desativada.\n" #: src/tvtime.c:1726 msgid "Always-on-top enabled." msgstr "Sempre no topo ativado." #: src/tvtime.c:1731 msgid "Always-on-top disabled." msgstr "Sempre no topo desativado." #: src/tvtime.c:1751 msgid "16:9 display mode active." msgstr "Modo de exibição 16:9 ativado." #: src/tvtime.c:1761 msgid "4:3 display mode active." msgstr "Modo de exibição 4:3 ativado." #: src/tvtime.c:1812 msgid "Screenshot messages disabled." msgstr "Mensagens de captura de tela desativadas." #: src/tvtime.c:1814 msgid "Screenshot messages enabled." msgstr "Mensagens de captura de tela ativadas." #: src/tvtime.c:1918 msgid "2-3 pulldown inversion disabled." msgstr "Inversão pulldown 2-3 desativada." #: src/tvtime.c:1921 msgid "2-3 pulldown inversion enabled." msgstr "Inversão pulldown 2-3 ativada." #: src/tvtime.c:1927 msgid "2-3 pulldown inversion is not valid with your TV norm." msgstr "A inversão pulldown 2-3 não é válida para a sua norma de TV." #: src/tvtime.c:2330 src/tvtime.c:2476 #, c-format msgid "Screenshot: %s" msgstr "Captura de tela: %s" #: src/tvtime.c:2617 msgid "Restarting tvtime.\n" msgstr "Reinicializando o tvtime.\n" #: src/tvtime.c:2621 msgid "Thank you for using tvtime.\n" msgstr "Obrigado por usar o tvtime.\n" #: src/tvtime.c:2639 src/tvtime.c:2698 #, c-format msgid "" "\n" " Failed to drop root privileges: %s.\n" " tvtime will now exit to avoid security problems.\n" "\n" msgstr "" "\n" " Erro ao largar os privilégios de root: %s.\n" " O tvtime sairá para evitar problemas de segurança.\n" "\n" #: src/tvtime.c:2657 #, c-format msgid "Running %s.\n" msgstr "Rodando %s.\n" #: src/commands.c:187 src/commands.c:919 src/commands.c:1236 #: src/commands.c:1602 src/commands.c:1635 src/commands.c:1668 #: src/commands.c:1701 msgid "Current" msgstr "Atual" #. TRANSLATORS: This refers to a TV program, not a computer program. #: src/commands.c:219 src/commands.c:226 msgid "No program information available" msgstr "Não há informação do programa disponível" #: src/commands.c:282 #, c-format msgid "Next: %s" msgstr "Próximo: %s" #: src/commands.c:325 msgid "Renumber current channel" msgstr "Renumerar o canal atual" #: src/commands.c:333 src/commands.c:336 msgid "Current channel active in list" msgstr "Canal atual ativado" #: src/commands.c:346 msgid "Stop channel scan" msgstr "Parar a pesquisa de canais" #: src/commands.c:350 msgid "Scan channels for signal" msgstr "Pesquisar canais" #: src/commands.c:358 msgid "Reset all channels as active" msgstr "Ativar todos os canais" #: src/commands.c:364 msgid "Finetune current channel" msgstr "Ajustar o canal atual" #: src/commands.c:371 msgid "Change NTSC cable mode" msgstr "Alterar o modo NTSC cabo" #: src/commands.c:377 msgid "Set current channel as SECAM" msgstr "Definir o canal atual como SECAM" #: src/commands.c:378 msgid "Set current channel as PAL" msgstr "Definir o canal atual como PAL" #: src/commands.c:393 msgid "Switch audio standard" msgstr "Mudar norma do audio" #: src/commands.c:400 msgid "Change frequency table" msgstr "Alterar a tabela de freqüências" #: src/commands.c:406 msgid "Disable signal detection" msgstr "Desativar a detecção de sinal" #: src/commands.c:407 msgid "Enable signal detection" msgstr "Ativar a detecção de sinal" #: src/commands.c:431 src/commands.c:1994 msgid "Default language" msgstr "Idioma padrão" #: src/commands.c:447 src/commands.c:1999 msgid "Unknown language" msgstr "Idioma desconhecido" #: src/commands.c:623 msgid "Change default audio standard" msgstr "Mudar padrão da norma de audio" #: src/commands.c:630 src/commands.c:1274 src/commands.c:1336 msgid "Audio volume boost" msgstr "Controle do volume" #: src/commands.c:636 src/commands.c:1279 src/commands.c:1345 msgid "Television standard" msgstr "Norma da televisão" #: src/commands.c:642 src/commands.c:1284 src/commands.c:1326 msgid "Horizontal resolution" msgstr "Resolução horizontal" #: src/commands.c:662 src/commands.c:689 msgid "Cable" msgstr "Cabo" #: src/commands.c:670 src/commands.c:697 msgid "Broadcast" msgstr "Antena" #: src/commands.c:677 msgid "Cable with channels 100+" msgstr "Cabo com mais de 100 canais" #: src/commands.c:709 msgid "Europe" msgstr "Europa" #: src/commands.c:717 msgid "Russia" msgstr "Rússia" #: src/commands.c:724 msgid "France" msgstr "França" #: src/commands.c:731 msgid "Australia" msgstr "Austrália" #: src/commands.c:738 msgid "Australia (Optus)" msgstr "Austrália (Optus)" #: src/commands.c:745 msgid "New Zealand" msgstr "Nova Zelândia" #: src/commands.c:752 msgid "China Broadcast" msgstr "China Broadcast" #: src/commands.c:759 msgid "South Africa" msgstr "Ãfrica do Sul" #: src/commands.c:766 msgid "Custom (first run tvtime-scanner)" msgstr "Personalizado (rodar tvtime-scanner antes)" #: src/commands.c:783 msgid "Disabled" msgstr "Desativado" #: src/commands.c:789 msgid "Quiet" msgstr "Discreto" #: src/commands.c:795 msgid "Medium" msgstr "Médio" #: src/commands.c:801 msgid "Full" msgstr "Total" #: src/commands.c:817 #, c-format msgid "%s Current: %d pixels" msgstr "%s Atual: %d pontos" #: src/commands.c:824 msgid "Low (360 pixels)" msgstr "Baixo (360 pontos)" #: src/commands.c:830 msgid "Moderate (576 pixels)" msgstr "Moderado (576 pontos)" #: src/commands.c:836 msgid "Standard (720 pixels)" msgstr "Padrão (720 pontos)" #: src/commands.c:842 msgid "High (768 pixels)" msgstr "Alto (768 pixels)" #: src/commands.c:848 #, c-format msgid "%s Maximum (%d pixels)" msgstr "%s Máximo (%d pontos)" #: src/commands.c:858 src/commands.c:1349 msgid "Restart with new settings" msgstr "Reiniciar com as novas preferências" #: src/commands.c:925 src/commands.c:1242 src/commands.c:1608 #: src/commands.c:1641 src/commands.c:1674 src/commands.c:1706 msgid "Increase" msgstr "Aumentar" #: src/commands.c:930 src/commands.c:1247 src/commands.c:1613 #: src/commands.c:1646 src/commands.c:1679 src/commands.c:1711 msgid "Decrease" msgstr "Diminuir" #: src/commands.c:953 msgid "2-3 pulldown inversion" msgstr "Inversão pulldown 2-3" #: src/commands.c:962 msgid "Colour invert" msgstr "Inversão de cores" #: src/commands.c:970 msgid "Mirror" msgstr "Espelho" #: src/commands.c:978 msgid "Chroma killer" msgstr "Preto e branco" #: src/commands.c:1128 src/commands.c:1168 src/commands.c:1200 #: src/commands.c:1220 src/commands.c:1232 src/commands.c:1260 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 src/commands.c:1380 src/commands.c:1386 #: src/commands.c:1392 src/commands.c:1399 src/commands.c:1405 #: src/commands.c:1433 src/commands.c:1439 src/commands.c:1447 #: src/commands.c:1453 src/commands.c:1464 src/commands.c:1525 #: src/commands.c:1598 src/commands.c:1631 src/commands.c:1664 #: src/commands.c:1697 msgid "Setup" msgstr "Configuração" #: src/commands.c:1131 msgid "Last Channel" msgstr "Último canal" #: src/commands.c:1136 src/commands.c:1200 src/commands.c:1221 #: src/commands.c:1233 msgid "Channel management" msgstr "Gestão de canais" #: src/commands.c:1141 src/commands.c:1172 src/commands.c:1261 #: src/commands.c:1308 src/commands.c:1326 src/commands.c:1336 #: src/commands.c:1345 msgid "Input configuration" msgstr "Configuração da entrada" #: src/commands.c:1146 src/commands.c:1177 msgid "Picture settings" msgstr "Preferências da imagem" #: src/commands.c:1151 src/commands.c:1182 src/commands.c:1405 #: src/commands.c:1434 src/commands.c:1440 src/commands.c:1448 #: src/commands.c:1454 msgid "Video processing" msgstr "Processamento de vídeo" #: src/commands.c:1156 src/commands.c:1187 src/commands.c:1380 #: src/commands.c:1386 src/commands.c:1392 src/commands.c:1399 msgid "Output configuration" msgstr "Configuração da saída" #: src/commands.c:1161 msgid "Quit" msgstr "Sair" #: src/commands.c:1192 msgid "Exit menu" msgstr "Sair do menu" #: src/commands.c:1221 msgid "Frequency table" msgstr "Tabela de freqüências" #: src/commands.c:1233 src/commands.c:2956 msgid "Finetune" msgstr "Ajuste fino" #: src/commands.c:1265 src/commands.c:1268 src/commands.c:1312 #: src/commands.c:1315 src/commands.c:3063 src/commands.c:3093 msgid "Change video source" msgstr "Alterar a fonte de vídeo" #: src/commands.c:1289 msgid "Toggle closed captions" msgstr "(Des)ativar CC" #: src/commands.c:1294 msgid "Toggle XDS decoding" msgstr "(Des)ativar decodificação XDS" #: src/commands.c:1392 msgid "Overscan" msgstr "Sobre-amostragem" #: src/commands.c:1399 msgid "Fullscreen position" msgstr "Posição da tela cheia" #: src/commands.c:1414 msgid "Current deinterlacer description" msgstr "Descrição da desentrelaçamento corrente" #: src/commands.c:1422 src/commands.c:1454 msgid "Input filters" msgstr "Filtros de entrada" #: src/commands.c:1440 msgid "Deinterlacer description" msgstr "Descrição do desentrelaçamento" #: src/commands.c:1464 src/commands.c:1525 src/commands.c:1598 #: src/commands.c:1631 src/commands.c:1664 src/commands.c:1697 msgid "Picture" msgstr "Imagem" #: src/commands.c:1468 src/commands.c:1530 src/commands.c:1598 #: src/commands.c:3123 src/commands.c:3164 msgid "Brightness" msgstr "Brilho" #: src/commands.c:1473 src/commands.c:1535 src/commands.c:1631 #: src/commands.c:3137 src/commands.c:3167 msgid "Contrast" msgstr "Contraste" #: src/commands.c:1477 src/commands.c:1539 src/commands.c:1664 #: src/commands.c:3151 src/commands.c:3170 msgid "Saturation" msgstr "Saturação" #: src/commands.c:1485 src/commands.c:1546 src/commands.c:1697 #: src/commands.c:3109 src/commands.c:3173 msgid "Hue" msgstr "Cor" #: src/commands.c:1494 msgid "Save current settings as defaults" msgstr "Gravar as preferências atuais como padrão" #: src/commands.c:1500 src/commands.c:1512 src/commands.c:1568 #: src/commands.c:1581 msgid "Reset to global defaults" msgstr "Recarregar valores padrão globais" #: src/commands.c:1555 msgid "Save current settings as global defaults" msgstr "Gravar as preferências atuais como padrão global" #: src/commands.c:1562 msgid "Save current settings as channel defaults" msgstr "Gravar as preferências atuais como padrão do canal" #: src/commands.c:1730 src/commands.c:1993 msgid "Preferred XMLTV language" msgstr "Idioma XMLTV preferido" #: src/commands.c:1825 msgid "Favorites" msgstr "Favoritos" #: src/commands.c:1832 msgid "Add current channel" msgstr "Adicionar o canal atual" #: src/commands.c:1834 msgid "Exit" msgstr "Sair" #: src/commands.c:2196 #, c-format msgid "Sleep in %d minutes." msgstr "Sleep em %d minutos." #: src/commands.c:2199 #, c-format msgid "Sleep off." msgstr "Sleep terminado" #: src/commands.c:2238 #, c-format msgid "Using PAL-I audio decoding for this channel." msgstr "Usando a decodificação de audio PAL-I para este canal." #: src/commands.c:2241 #, c-format msgid "Using PAL-DK audio decoding for this channel." msgstr "Usando a decodificação de audio PAL-DK para este canal." #: src/commands.c:2244 #, c-format msgid "Using PAL-BG audio decoding for this channel." msgstr "Usando a decodificação de audio PAL-BG para este canal." #: src/commands.c:2275 #, c-format msgid "Defaulting to PAL-I audio decoding." msgstr "Padronizando a decodificação de audio PAL-I." #: src/commands.c:2278 #, c-format msgid "Defaulting to PAL-DK audio decoding." msgstr "Padronizando a decodificação de audio PAL-DK." #: src/commands.c:2281 #, c-format msgid "Defaulting to PAL-BG audio decoding." msgstr "Padronizando a decodificação de audio PAL-BG." #: src/commands.c:2309 msgid "Channel marked as active in the browse list." msgstr "Canal ativado." #: src/commands.c:2312 msgid "Channel disabled from the browse list." msgstr "Canal desativado." #: src/commands.c:2344 #, c-format msgid "Capture card volume will not be set by tvtime." msgstr "O volume da placa de captura não será ajustado pelo tvtime." #: src/commands.c:2347 #, c-format msgid "Setting capture card volume to %d%%." msgstr "Definindo o volume da placa de captura para %d%%." #: src/commands.c:2380 msgid "Processing every input field." msgstr "Processando todos os campos de entrada." #: src/commands.c:2383 msgid "Processing every top field." msgstr "Processando todos os campo superior." #: src/commands.c:2386 msgid "Processing every bottom field." msgstr "Processando todos os campo inferior." #: src/commands.c:2400 #, c-format msgid "Horizontal resolution will be %d pixels on restart." msgstr "A resolução horizontal será de %d pontos no reinício." #: src/commands.c:2457 #, c-format msgid "Television standard will be %s on restart." msgstr "O padrão de televisão será %s no reinício." #: src/commands.c:2485 #, c-format msgid "Using default language for XMLTV data." msgstr "Usando o idioma padrão para os dados do XMLTV." #: src/commands.c:2488 #, c-format msgid "Using unknown language (%s) for XMLTV data." msgstr "Usando um idioma desconhecido (%s) para os dados do XMLTV." #: src/commands.c:2492 #, c-format msgid "XMLTV language set to %s (%s)." msgstr "Idioma XMLTV definido como %s (%s)." #: src/commands.c:2527 msgid "All channels re-activated." msgstr "Todos os canais foram reativados." #: src/commands.c:2548 #, c-format msgid "Remapping %d. Enter new channel number." msgstr "Renumerando o canal %d. Insira o novo número do canal." #: src/commands.c:2560 msgid "Scanner unavailable with signal checking disabled." msgstr "Pesquisa indisponivel com verificador de sinal desativado." #: src/commands.c:2590 msgid "Scanning for channels being broadcast." msgstr "Pesquisando por canais em transmissão." #: src/commands.c:2608 msgid "Closed captions disabled." msgstr "CC desativada." #: src/commands.c:2614 msgid "Closed captions enabled." msgstr "CC ativada." #: src/commands.c:2626 msgid "No VBI device configured for CC decoding." msgstr "Não há dispositivo VBI configurado para decodificação CC." #: src/commands.c:2642 #, c-format msgid "Colour decoding for this channel set to %s." msgstr "Decodificação de cor para este canal definida como %s." #: src/commands.c:2691 #, c-format msgid "Running: %s" msgstr "Rodando: %s" #: src/commands.c:2735 msgid "Signal detection enabled." msgstr "Detecção de sinal ativada." #: src/commands.c:2738 msgid "Signal detection disabled." msgstr "Detecção de sinal desativada." #: src/commands.c:2751 msgid "XDS decoding enabled." msgstr "Decodificação XDS ativada." #: src/commands.c:2754 msgid "XDS decoding disabled." msgstr "Decodificação XDS desativada." #: src/commands.c:2799 msgid "Colour invert enabled." msgstr "Inversão de cores ativada." #: src/commands.c:2801 msgid "Colour invert disabled." msgstr "Inversão de cores desativada." #: src/commands.c:2822 msgid "Mirror enabled." msgstr "Espelho ativado." #: src/commands.c:2824 msgid "Mirror disabled." msgstr "Espelho desativado." #: src/commands.c:2845 msgid "Chroma kill enabled." msgstr "Preto e branco ativado." #: src/commands.c:2847 msgid "Chroma kill disabled." msgstr "Preto e branco desativado." #: src/commands.c:2859 #, c-format msgid "Overscan: %.1f%%" msgstr "Sobre-amostragem: %.1f%%" #: src/commands.c:2891 msgid "Picture settings reset to defaults." msgstr "As preferências de imagem retornaram aos valores padrão." #: src/commands.c:2919 msgid "Using nominal NTSC cable frequencies." msgstr "Usando freqüências de cabo NTSC nominais." #: src/commands.c:2925 msgid "Using IRC cable frequencies." msgstr "Usando freqüências de cabo IRC." #: src/commands.c:2931 msgid "Using HRC cable frequencies." msgstr "Usando freqüências de cabo HRC." #: src/commands.c:3029 msgid "Volume" msgstr "Volume" #: src/commands.c:3210 msgid "Saved current picture settings as global defaults.\n" msgstr "Preferências de imagem atuais gravadas como padrão global.\n" #: src/commands.c:3223 #, c-format msgid "Saved current picture settings on channel %d.\n" msgstr "Preferências de imagem atuais gravadas no canal %d.\n" #: src/commands.c:3310 msgid "Paused." msgstr "Pausado." #: src/commands.c:3310 msgid "Resumed." msgstr "Resumido." #: src/tvtimeconf.c:503 #, c-format msgid "Error parsing configuration file %s.\n" msgstr "Ocorreu um erro ao ler o arquivo de configuração %s.\n" #: src/tvtimeconf.c:510 #, c-format msgid "No XML root element found in %s.\n" msgstr "Não foi encontrado um elemento raiz XML em %s.\n" #: src/tvtimeconf.c:518 src/tvtimeconf.c:592 #, c-format msgid "%s is not a tvtime configuration file.\n" msgstr "%s não é um arquivo de configuração do tvtime.\n" #: src/tvtimeconf.c:550 msgid "Config file cannot be parsed. Settings will not be saved.\n" msgstr "" "Arquivo de configuração não pode ser lido. Preferências não serão gravadas.\n" #: src/tvtimeconf.c:557 msgid "Could not create new config file.\n" msgstr "Não foi possível criar um novo arquivo de configuração.\n" #: src/tvtimeconf.c:581 msgid "Error creating configuration file.\n" msgstr "Ocorreu um erro ao criar o arquivo de configuração.\n" #: src/tvtimeconf.c:602 src/utils.c:134 #, c-format msgid "Cannot change owner of %s: %s.\n" msgstr "Não foi possível alterar o dono de %s: %s.\n" #: src/tvtimeconf.c:611 msgid "" "\n" "tvtime is free software, written by Billy Biggs, Doug Bell and many\n" "others. For details and copying conditions, please see our website\n" "at http://tvtime.net/\n" "\n" "tvtime is Copyright (C) 2001, 2002, 2003 by Billy Biggs, Doug Bell,\n" "Alexander S. Belov, and Achim Schneider.\n" msgstr "" "\n" "O tvtime é um programa livre, desenvolvido por Billy Biggs, Doug Bell\n" "e muitos outros. Para detalhes e condições de cópia, por favor, veja\n" "a nossa página em http://tvtime.net/\n" "\n" "O tvtime tem Copyright (C) 2001, 2002, 2003 por Billy Biggs, Doug Bell,\n" "Alexander S. Belov e Achim Schneider.\n" #: src/tvtimeconf.c:622 src/tvtimeconf.c:677 src/tvtimeconf.c:737 #, c-format msgid "" "usage: %s [OPTION]...\n" "\n" msgstr "" "utilização: %s [OPÇÃO]...\n" "\n" #: src/tvtimeconf.c:623 src/tvtimeconf.c:678 msgid " -a, --widescreen 16:9 mode.\n" msgstr " -a, --widescreen modo 16:9.\n" #: src/tvtimeconf.c:624 src/tvtimeconf.c:679 msgid " -A, --nowidescreen 4:3 mode.\n" msgstr " -A, --nowidescreen modo 4:3.\n" #: src/tvtimeconf.c:625 src/tvtimeconf.c:680 msgid " -b, --vbidevice=DEVICE VBI device (defaults to /dev/vbi0).\n" msgstr "" " -b, --vbidevice=DISPOS. dispositivo VBI (por omissão: /dev/vbi0).\n" #: src/tvtimeconf.c:626 src/tvtimeconf.c:681 msgid "" " -c, --channel=CHANNEL Tune to the specified channel on startup.\n" msgstr "" " -c, --channel=CANAL Sintonizar o canal especificado no início.\n" #: src/tvtimeconf.c:627 src/tvtimeconf.c:682 src/tvtimeconf.c:738 msgid " -d, --device=DEVICE video4linux device (defaults to " msgstr " -d, --device=DISPOSITIVO dispositivo video4linux (default: " #: src/tvtimeconf.c:628 src/tvtimeconf.c:683 msgid "" " -f, --frequencies=NAME The frequency table to use for the tuner.\n" " (defaults to us-cable).\n" "\n" " Valid values are:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " southafrica\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (first run tvtime-scanner)\n" "\n" msgstr "" " -f, --frequencies=NOME A tabela de freqüências para a sintonia.\n" " (por omissão: us-cable).\n" "\n" " Valores válidos:\n" " us-cable\n" " us-cable100\n" " us-broadcast\n" " china-broadcast\n" " japan-cable\n" " japan-broadcast\n" " europe\n" " australia\n" " australia-optus\n" " newzealand\n" " france\n" " russia\n" " custom (rodar tvtime-scanner antes)\n" #: src/tvtimeconf.c:645 src/tvtimeconf.c:700 src/tvtimeconf.c:739 msgid "" " -F, --configfile=FILE Additional config file to load settings from.\n" msgstr " -F, --configfile=FICHEIRO Arquivo de configuração adicional.\n" #: src/tvtimeconf.c:646 src/tvtimeconf.c:701 src/tvtimeconf.c:740 msgid " -h, --help Show this help message.\n" msgstr " -h, --help Mostrar esta ajuda.\n" #: src/tvtimeconf.c:647 src/tvtimeconf.c:702 msgid " -g, --geometry=GEOMETRY Sets the output window size.\n" msgstr " -g, --geometry=GEOMETRIA Define o tamanho da janela.\n" #: src/tvtimeconf.c:648 src/tvtimeconf.c:703 src/tvtimeconf.c:741 msgid "" " -i, --input=INPUTNUM video4linux input number (defaults to 0).\n" msgstr "" " -i, --input=NUMENTRADA Número do dispositivo video4linux (por omissão: " "0).\n" #: src/tvtimeconf.c:649 src/tvtimeconf.c:704 msgid "" " -I, --inputwidth=SAMPLING Horizontal resolution of input\n" " (defaults to 720 pixels).\n" msgstr "" " -I, --inputwidth=AMOSTRAG. Resolução horizontal da entrada\n" " (padrão: 720 pontos).\n" #: src/tvtimeconf.c:651 msgid "" " -k, --slave Disables input handling in tvtime (slave " "mode).\n" msgstr "" " -k, --slave Desativa o tratamento de entrada (modo " "escravo).\n" #: src/tvtimeconf.c:652 src/tvtimeconf.c:706 msgid " -m, --fullscreen Start tvtime in fullscreen mode.\n" msgstr " -m, --fullscreen Inicia em modo de tela cheia.\n" #: src/tvtimeconf.c:653 src/tvtimeconf.c:707 msgid " -l, --borderless Start tvtime without a window border.\n" msgstr " -M, --window Inicia tvtime sem borda na janela.\n" #: src/tvtimeconf.c:654 src/tvtimeconf.c:708 msgid " -M, --window Start tvtime in window mode.\n" msgstr " -M, --window Inicia em modo de janela.\n" #: src/tvtimeconf.c:655 src/tvtimeconf.c:709 src/tvtimeconf.c:742 msgid "" " -n, --norm=NORM The norm to use for the input. tvtime " "supports:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N or PAL-60 (defaults to NTSC).\n" msgstr "" " -n, --norm=NORMA A norma usada na entrada. O tvtime suporta:\n" " NTSC, NTSC-JP, SECAM, PAL, PAL-Nc, PAL-M,\n" " PAL-N ou PAL-60 (por omissão: NTSC).\n" #: src/tvtimeconf.c:658 msgid "" " -s, --showdrops Print stats on frame drops (for debugging).\n" msgstr "" " -s, --showdrops Exibe estatísticas de abdicação de imagens.\n" #: src/tvtimeconf.c:659 msgid "" " -S, --saveoptions Save command line options to the config file.\n" msgstr " -S, --saveoptions Gravar as opções da linha de comando.\n" #: src/tvtimeconf.c:660 src/tvtimeconf.c:713 msgid " -t, --xmltv=FILE Read XMLTV listings from the given file.\n" msgstr "" " -t, --xmltv=FICHEIRO Ler as programações XMLTV do arquivo " "informado.\n" #: src/tvtimeconf.c:661 src/tvtimeconf.c:714 msgid "" " -l, --xmltvlanguage=LANG Use XMLTV data in given language, if " "available.\n" msgstr "" " -l, --xmltvlanguage=LING Usar dados XMLTV no idioma informado, se " "disponível.\n" #: src/tvtimeconf.c:662 msgid " -v, --verbose Print debugging messages to stderr.\n" msgstr " -v, --verbose Exibe mensagens de erro para o stderr.\n" #: src/tvtimeconf.c:663 msgid " -X, --display=DISPLAY Use the given X display to connect to.\n" msgstr "" " -X, --display=DISPLAY Usar o display X informado para conectar.\n" #: src/tvtimeconf.c:664 src/tvtimeconf.c:715 msgid "" " -x, --mixer=|\n" " The mixer device and channel to control. The " "first\n" " variant sets the OSS mixer the second one " "ALSA.\n" " (defaults to default/Master)\n" "\n" " Valid channels for OSS are:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" msgstr "" " -x, --mixer=DISPOS[:CN] O dispositivo mixer e canal para controle.\n" " (padrão:/dev/mixer:line)\n" "\n" " Canais válidos:\n" " vol, bass, treble, synth, pcm, speaker, " "line,\n" " mic, cd, mix, pcm2, rec, igain, ogain, " "line1,\n" " line2, line3, dig1, dig2, dig3, phin, " "phout,\n" " video, radio, monitor\n" #: src/tvtimeconf.c:712 msgid "" " -R, --priority=PRI Sets the process priority to run tvtime at.\n" msgstr " -R, --priority=PRI Define a prioridade do processo.\n" #: src/tvtimeconf.c:724 msgid "" " -p, --alsainputdev=DEV Specifies an ALSA device to read input on\n" " Examples:\n" " " msgstr "" " -p, --alsainputdev=DEV Especifica um dispositivo ALSA para entrada.\n" " Exemplos:\n" " " #: src/tvtimeconf.c:728 msgid "" " -P, --alsaoutputdev=DEV Specifies an ALSA device to write output to\n" " Examples:\n" " hw:0,0\n" " disabled\n" msgstr "" " -p, --alsaoutputdev=DEV Especifica um dispositivo ALSA para saída.\n" " Exemplos:\n" " hw:0,0\n" " disabled\n" #: src/tvtimeconf.c:732 msgid "" " -z, --alsalatency=LATENCY Specifies ALSA loopback latency in milli-" "seconds\n" msgstr "" " -z, --alsalatency=LATÊNCIA Especifica a latência do dispositivo ALSA de " "loopback em milisegundos\n" #: src/tvtimeconf.c:911 src/tvtimeconf.c:920 src/tvtimeconf.c:994 #: src/tvtimeconf.c:1136 src/tvtimeconf.c:1332 #, c-format msgid "Reading configuration from %s\n" msgstr "Lendo a configuração de %s\n" #: src/tvtimeconf.c:1032 msgid "Cannot run two instances of tvtime with the same configuration.\n" msgstr "" "Não é possível executar duas instâncias do tvtime com a mesma configuração.\n" #: src/tvtimeconf.c:1043 msgid "Saving command line options.\n" msgstr "Gravando opções da linha de comando.\n" #: src/tvtimeconf.c:1250 msgid "Cannot update configuration while tvtime running.\n" msgstr "Não é possível alterar a configuração com o tvtime em execução.\n" #: src/tvtimeosd.c:344 src/tvtime-scanner.c:146 msgid "No signal" msgstr "Sem sinal" #: src/tvtimeosd.c:455 msgid "Mute" msgstr "Sem som" #: src/utils.c:118 #, c-format msgid "Cannot create %s: %s\n" msgstr "Erro ao criar %s: %s\n" #: src/utils.c:124 #, c-format msgid "Cannot open %s: %s\n" msgstr "Erro ao abrir %s: %s\n" #: src/utils.c:663 #, c-format msgid "Failed to initialize UTF-8 to %s converter: iconv_open failed (%s).\n" msgstr "" "Falhou a inicialização do conversor de UTF-8 para %s: iconv_open " "falhou(%s).\n" #: src/utils.c:674 #, c-format msgid "" "\n" " Failed to enter UTF-8 mode using bind_textdomain_codeset()\n" " (returned %s.) This may cause messages\n" " to be displayed incorrectly! Please report this bug at\n" " %s.\n" "\n" msgstr "" "\n" " Erro ao entrar em modo UTF-8 usando\n" " bind_textdomain_codeset() (retornou %s). Isto pode causar uma\n" " exibição incorreta de mensagens\n" " Por favor, relate este problema em\n" " %s.\n" "\n" #: src/tvtime-command.c:61 #, c-format msgid "" "\n" "Available commands:\n" msgstr "" "\n" "Comandos disponíveis:\n" #: src/tvtime-command.c:80 #, c-format msgid "tvtime not running.\n" msgstr "O tvtime não está em execução.\n" #: src/tvtime-command.c:82 src/tvtime-command.c:92 #, c-format msgid "%s: Cannot open %s: %s\n" msgstr "%s: Erro ao abrir %s: %s\n" #: src/tvtime-command.c:103 #, c-format msgid "%s: Invalid command '%s'\n" msgstr "%s: Comando inválido '%s'\n" #: src/tvtime-command.c:108 #, c-format msgid "%s: Sending command %s with argument %s.\n" msgstr "%s: Enviando o comando %s com argumento %s.\n" #: src/tvtime-command.c:113 #, c-format msgid "%s: Sending command %s.\n" msgstr "%s: Enviando o comando %s.\n" #: src/tvtime-scanner.c:97 #, c-format msgid "Scanning using TV standard %s.\n" msgstr "Pesquisando usando a norma de TV %s.\n" #: src/tvtime-scanner.c:118 #, c-format msgid "" "\n" " No tuner found on input %d. If you have a tuner, please\n" " select a different input using --input=.\n" "\n" msgstr "" "\n" " Nenhum sintonizador encontrado na entrada %d. Se tiver um,\n" " selecione outra entrada usando --input=.\n" "\n" #: src/tvtime-scanner.c:129 #, c-format msgid "Scanning from %6.2f MHz to %6.2f MHz.\n" msgstr "Pesquisando de %6.2f MHz até %6.2f MHz.\n" #: src/tvtime-scanner.c:139 #, c-format msgid "Checking %6.2f MHz:" msgstr "Verificando %6.2f MHz:" #: src/tvtime-scanner.c:150 src/tvtime-scanner.c:156 msgid "Signal detected" msgstr "Sinal detectado" #: src/tvtime-scanner.c:167 #, c-format msgid "" "Found a channel at %6.2f MHz (%.2f - %.2f MHz), adding to channel list.\n" msgstr "" "Encontrado um canal em %6.2f MHz (%.2f - %.2f MHz), adicionando à lista de " "canais.\n" #~ msgid "Preferred audio mode" #~ msgstr "Modo de audio preferido" #~ msgid "Mono" #~ msgstr "Mono" #~ msgid "Stereo" #~ msgstr "Estéreo" #~ msgid "SAP" #~ msgstr "SAP" #~ msgid "Primary Language" #~ msgstr "Idioma Primário" #~ msgid "Secondary Language" #~ msgstr "Idioma Secundário" tvtime-1.0.11/intl/0000775000175000017500000000000013026503655011060 500000000000000tvtime-1.0.11/intl/relocatable.h0000664000175000017500000000512612354244126013430 00000000000000/* Provide relocatable packages. Copyright (C) 2003 Free Software Foundation, Inc. Written by Bruno Haible , 2003. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _RELOCATABLE_H #define _RELOCATABLE_H /* This can be enabled through the configure --enable-relocatable option. */ #if ENABLE_RELOCATABLE /* When building a DLL, we must export some functions. Note that because this is a private .h file, we don't need to use __declspec(dllimport) in any case. */ #if defined _MSC_VER && BUILDING_DLL # define RELOCATABLE_DLL_EXPORTED __declspec(dllexport) #else # define RELOCATABLE_DLL_EXPORTED #endif /* Sets the original and the current installation prefix of the package. Relocation simply replaces a pathname starting with the original prefix by the corresponding pathname with the current prefix instead. Both prefixes should be directory names without trailing slash (i.e. use "" instead of "/"). */ extern RELOCATABLE_DLL_EXPORTED void set_relocation_prefix (const char *orig_prefix, const char *curr_prefix); /* Returns the pathname, relocated according to the current installation directory. */ extern const char * relocate (const char *pathname); /* Memory management: relocate() leaks memory, because it has to construct a fresh pathname. If this is a problem because your program calls relocate() frequently, think about caching the result. */ /* Convenience function: Computes the current installation prefix, based on the original installation prefix, the original installation directory of a particular file, and the current pathname of this file. Returns NULL upon failure. */ extern const char * compute_curr_prefix (const char *orig_installprefix, const char *orig_installdir, const char *curr_pathname); #else /* By default, we use the hardwired pathnames. */ #define relocate(pathname) (pathname) #endif #endif /* _RELOCATABLE_H */ tvtime-1.0.11/intl/log.c0000664000175000017500000000543412354244126011731 00000000000000/* Log file output. Copyright (C) 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Written by Bruno Haible . */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include /* Print an ASCII string with quotes and escape sequences where needed. */ static void print_escaped (stream, str) FILE *stream; const char *str; { putc ('"', stream); for (; *str != '\0'; str++) if (*str == '\n') { fputs ("\\n\"", stream); if (str[1] == '\0') return; fputs ("\n\"", stream); } else { if (*str == '"' || *str == '\\') putc ('\\', stream); putc (*str, stream); } putc ('"', stream); } /* Add to the log file an entry denoting a failed translation. */ void _nl_log_untranslated (logfilename, domainname, msgid1, msgid2, plural) const char *logfilename; const char *domainname; const char *msgid1; const char *msgid2; int plural; { static char *last_logfilename = NULL; static FILE *last_logfile = NULL; FILE *logfile; /* Can we reuse the last opened logfile? */ if (last_logfilename == NULL || strcmp (logfilename, last_logfilename) != 0) { /* Close the last used logfile. */ if (last_logfilename != NULL) { if (last_logfile != NULL) { fclose (last_logfile); last_logfile = NULL; } free (last_logfilename); last_logfilename = NULL; } /* Open the logfile. */ last_logfilename = (char *) malloc (strlen (logfilename) + 1); if (last_logfilename == NULL) return; strcpy (last_logfilename, logfilename); last_logfile = fopen (logfilename, "a"); if (last_logfile == NULL) return; } logfile = last_logfile; fprintf (logfile, "domain "); print_escaped (logfile, domainname); fprintf (logfile, "\nmsgid "); print_escaped (logfile, msgid1); if (plural) { fprintf (logfile, "\nmsgid_plural "); print_escaped (logfile, msgid2); fprintf (logfile, "\nmsgstr[0] \"\"\n"); } else fprintf (logfile, "\nmsgstr \"\"\n"); putc ('\n', logfile); } tvtime-1.0.11/intl/config.charset0000775000175000017500000003345312354244126013631 00000000000000#! /bin/sh # Output a system dependent table of character encoding aliases. # # Copyright (C) 2000-2003 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library General Public License as published # by the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. # # The table consists of lines of the form # ALIAS CANONICAL # # ALIAS is the (system dependent) result of "nl_langinfo (CODESET)". # ALIAS is compared in a case sensitive way. # # CANONICAL is the GNU canonical name for this character encoding. # It must be an encoding supported by libiconv. Support by GNU libc is # also desirable. CANONICAL is case insensitive. Usually an upper case # MIME charset name is preferred. # The current list of GNU canonical charset names is as follows. # # name used by which systems a MIME name? # ASCII, ANSI_X3.4-1968 glibc solaris freebsd # ISO-8859-1 glibc aix hpux irix osf solaris freebsd yes # ISO-8859-2 glibc aix hpux irix osf solaris freebsd yes # ISO-8859-3 glibc solaris yes # ISO-8859-4 osf solaris freebsd yes # ISO-8859-5 glibc aix hpux irix osf solaris freebsd yes # ISO-8859-6 glibc aix hpux solaris yes # ISO-8859-7 glibc aix hpux irix osf solaris yes # ISO-8859-8 glibc aix hpux osf solaris yes # ISO-8859-9 glibc aix hpux irix osf solaris yes # ISO-8859-13 glibc # ISO-8859-14 glibc # ISO-8859-15 glibc aix osf solaris freebsd # KOI8-R glibc solaris freebsd yes # KOI8-U glibc freebsd yes # KOI8-T glibc # CP437 dos # CP775 dos # CP850 aix osf dos # CP852 dos # CP855 dos # CP856 aix # CP857 dos # CP861 dos # CP862 dos # CP864 dos # CP865 dos # CP866 freebsd dos # CP869 dos # CP874 woe32 dos # CP922 aix # CP932 aix woe32 dos # CP943 aix # CP949 osf woe32 dos # CP950 woe32 dos # CP1046 aix # CP1124 aix # CP1125 dos # CP1129 aix # CP1250 woe32 # CP1251 glibc solaris woe32 # CP1252 aix woe32 # CP1253 woe32 # CP1254 woe32 # CP1255 glibc woe32 # CP1256 woe32 # CP1257 woe32 # GB2312 glibc aix hpux irix solaris freebsd yes # EUC-JP glibc aix hpux irix osf solaris freebsd yes # EUC-KR glibc aix hpux irix osf solaris freebsd yes # EUC-TW glibc aix hpux irix osf solaris # BIG5 glibc aix hpux osf solaris freebsd yes # BIG5-HKSCS glibc solaris # GBK glibc aix osf solaris woe32 dos # GB18030 glibc solaris # SHIFT_JIS hpux osf solaris freebsd yes # JOHAB glibc solaris woe32 # TIS-620 glibc aix hpux osf solaris # VISCII glibc yes # TCVN5712-1 glibc # GEORGIAN-PS glibc # HP-ROMAN8 hpux # HP-ARABIC8 hpux # HP-GREEK8 hpux # HP-HEBREW8 hpux # HP-TURKISH8 hpux # HP-KANA8 hpux # DEC-KANJI osf # DEC-HANYU osf # UTF-8 glibc aix hpux osf solaris yes # # Note: Names which are not marked as being a MIME name should not be used in # Internet protocols for information interchange (mail, news, etc.). # # Note: ASCII and ANSI_X3.4-1968 are synonymous canonical names. Applications # must understand both names and treat them as equivalent. # # The first argument passed to this file is the canonical host specification, # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM host="$1" os=`echo "$host" | sed -e 's/^[^-]*-[^-]*-\(.*\)$/\1/'` echo "# This file contains a table of character encoding aliases," echo "# suitable for operating system '${os}'." echo "# It was automatically generated from config.charset." # List of references, updated during installation: echo "# Packages using this file: " case "$os" in linux* | *-gnu*) # With glibc-2.1 or newer, we don't need any canonicalization, # because glibc has iconv and both glibc and libiconv support all # GNU canonical names directly. Therefore, the Makefile does not # need to install the alias file at all. # The following applies only to glibc-2.0.x and older libcs. echo "ISO_646.IRV:1983 ASCII" ;; aix*) echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-6 ISO-8859-6" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-8 ISO-8859-8" echo "ISO8859-9 ISO-8859-9" echo "ISO8859-15 ISO-8859-15" echo "IBM-850 CP850" echo "IBM-856 CP856" echo "IBM-921 ISO-8859-13" echo "IBM-922 CP922" echo "IBM-932 CP932" echo "IBM-943 CP943" echo "IBM-1046 CP1046" echo "IBM-1124 CP1124" echo "IBM-1129 CP1129" echo "IBM-1252 CP1252" echo "IBM-eucCN GB2312" echo "IBM-eucJP EUC-JP" echo "IBM-eucKR EUC-KR" echo "IBM-eucTW EUC-TW" echo "big5 BIG5" echo "GBK GBK" echo "TIS-620 TIS-620" echo "UTF-8 UTF-8" ;; hpux*) echo "iso88591 ISO-8859-1" echo "iso88592 ISO-8859-2" echo "iso88595 ISO-8859-5" echo "iso88596 ISO-8859-6" echo "iso88597 ISO-8859-7" echo "iso88598 ISO-8859-8" echo "iso88599 ISO-8859-9" echo "iso885915 ISO-8859-15" echo "roman8 HP-ROMAN8" echo "arabic8 HP-ARABIC8" echo "greek8 HP-GREEK8" echo "hebrew8 HP-HEBREW8" echo "turkish8 HP-TURKISH8" echo "kana8 HP-KANA8" echo "tis620 TIS-620" echo "big5 BIG5" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" echo "hp15CN GB2312" #echo "ccdc ?" # what is this? echo "SJIS SHIFT_JIS" echo "utf8 UTF-8" ;; irix*) echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-9 ISO-8859-9" echo "eucCN GB2312" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" ;; osf*) echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-4 ISO-8859-4" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-8 ISO-8859-8" echo "ISO8859-9 ISO-8859-9" echo "ISO8859-15 ISO-8859-15" echo "cp850 CP850" echo "big5 BIG5" echo "dechanyu DEC-HANYU" echo "dechanzi GB2312" echo "deckanji DEC-KANJI" echo "deckorean EUC-KR" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" echo "GBK GBK" echo "KSC5601 CP949" echo "sdeckanji EUC-JP" echo "SJIS SHIFT_JIS" echo "TACTIS TIS-620" echo "UTF-8 UTF-8" ;; solaris*) echo "646 ASCII" echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-3 ISO-8859-3" echo "ISO8859-4 ISO-8859-4" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-6 ISO-8859-6" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-8 ISO-8859-8" echo "ISO8859-9 ISO-8859-9" echo "ISO8859-15 ISO-8859-15" echo "koi8-r KOI8-R" echo "ansi-1251 CP1251" echo "BIG5 BIG5" echo "Big5-HKSCS BIG5-HKSCS" echo "gb2312 GB2312" echo "GBK GBK" echo "GB18030 GB18030" echo "cns11643 EUC-TW" echo "5601 EUC-KR" echo "ko_KR.johap92 JOHAB" echo "eucJP EUC-JP" echo "PCK SHIFT_JIS" echo "TIS620.2533 TIS-620" #echo "sun_eu_greek ?" # what is this? echo "UTF-8 UTF-8" ;; freebsd* | os2*) # FreeBSD 4.2 doesn't have nl_langinfo(CODESET); therefore # localcharset.c falls back to using the full locale name # from the environment variables. # Likewise for OS/2. OS/2 has XFree86 just like FreeBSD. Just # reuse FreeBSD's locale data for OS/2. echo "C ASCII" echo "US-ASCII ASCII" for l in la_LN lt_LN; do echo "$l.ASCII ASCII" done for l in da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_US es_ES \ fi_FI fr_BE fr_CA fr_CH fr_FR is_IS it_CH it_IT la_LN \ lt_LN nl_BE nl_NL no_NO pt_PT sv_SE; do echo "$l.ISO_8859-1 ISO-8859-1" echo "$l.DIS_8859-15 ISO-8859-15" done for l in cs_CZ hr_HR hu_HU la_LN lt_LN pl_PL sl_SI; do echo "$l.ISO_8859-2 ISO-8859-2" done for l in la_LN lt_LT; do echo "$l.ISO_8859-4 ISO-8859-4" done for l in ru_RU ru_SU; do echo "$l.KOI8-R KOI8-R" echo "$l.ISO_8859-5 ISO-8859-5" echo "$l.CP866 CP866" done echo "uk_UA.KOI8-U KOI8-U" echo "zh_TW.BIG5 BIG5" echo "zh_TW.Big5 BIG5" echo "zh_CN.EUC GB2312" echo "ja_JP.EUC EUC-JP" echo "ja_JP.SJIS SHIFT_JIS" echo "ja_JP.Shift_JIS SHIFT_JIS" echo "ko_KR.EUC EUC-KR" ;; netbsd*) echo "646 ASCII" echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-4 ISO-8859-4" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-15 ISO-8859-15" echo "eucCN GB2312" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" echo "BIG5 BIG5" echo "SJIS SHIFT_JIS" ;; beos*) # BeOS has a single locale, and it has UTF-8 encoding. echo "* UTF-8" ;; msdosdjgpp*) # DJGPP 2.03 doesn't have nl_langinfo(CODESET); therefore # localcharset.c falls back to using the full locale name # from the environment variables. echo "#" echo "# The encodings given here may not all be correct." echo "# If you find that the encoding given for your language and" echo "# country is not the one your DOS machine actually uses, just" echo "# correct it in this file, and send a mail to" echo "# Juan Manuel Guerrero " echo "# and Bruno Haible ." echo "#" echo "C ASCII" # ISO-8859-1 languages echo "ca CP850" echo "ca_ES CP850" echo "da CP865" # not CP850 ?? echo "da_DK CP865" # not CP850 ?? echo "de CP850" echo "de_AT CP850" echo "de_CH CP850" echo "de_DE CP850" echo "en CP850" echo "en_AU CP850" # not CP437 ?? echo "en_CA CP850" echo "en_GB CP850" echo "en_NZ CP437" echo "en_US CP437" echo "en_ZA CP850" # not CP437 ?? echo "es CP850" echo "es_AR CP850" echo "es_BO CP850" echo "es_CL CP850" echo "es_CO CP850" echo "es_CR CP850" echo "es_CU CP850" echo "es_DO CP850" echo "es_EC CP850" echo "es_ES CP850" echo "es_GT CP850" echo "es_HN CP850" echo "es_MX CP850" echo "es_NI CP850" echo "es_PA CP850" echo "es_PY CP850" echo "es_PE CP850" echo "es_SV CP850" echo "es_UY CP850" echo "es_VE CP850" echo "et CP850" echo "et_EE CP850" echo "eu CP850" echo "eu_ES CP850" echo "fi CP850" echo "fi_FI CP850" echo "fr CP850" echo "fr_BE CP850" echo "fr_CA CP850" echo "fr_CH CP850" echo "fr_FR CP850" echo "ga CP850" echo "ga_IE CP850" echo "gd CP850" echo "gd_GB CP850" echo "gl CP850" echo "gl_ES CP850" echo "id CP850" # not CP437 ?? echo "id_ID CP850" # not CP437 ?? echo "is CP861" # not CP850 ?? echo "is_IS CP861" # not CP850 ?? echo "it CP850" echo "it_CH CP850" echo "it_IT CP850" echo "lt CP775" echo "lt_LT CP775" echo "lv CP775" echo "lv_LV CP775" echo "nb CP865" # not CP850 ?? echo "nb_NO CP865" # not CP850 ?? echo "nl CP850" echo "nl_BE CP850" echo "nl_NL CP850" echo "nn CP865" # not CP850 ?? echo "nn_NO CP865" # not CP850 ?? echo "no CP865" # not CP850 ?? echo "no_NO CP865" # not CP850 ?? echo "pt CP850" echo "pt_BR CP850" echo "pt_PT CP850" echo "sv CP850" echo "sv_SE CP850" # ISO-8859-2 languages echo "cs CP852" echo "cs_CZ CP852" echo "hr CP852" echo "hr_HR CP852" echo "hu CP852" echo "hu_HU CP852" echo "pl CP852" echo "pl_PL CP852" echo "ro CP852" echo "ro_RO CP852" echo "sk CP852" echo "sk_SK CP852" echo "sl CP852" echo "sl_SI CP852" echo "sq CP852" echo "sq_AL CP852" echo "sr CP852" # CP852 or CP866 or CP855 ?? echo "sr_YU CP852" # CP852 or CP866 or CP855 ?? # ISO-8859-3 languages echo "mt CP850" echo "mt_MT CP850" # ISO-8859-5 languages echo "be CP866" echo "be_BE CP866" echo "bg CP866" # not CP855 ?? echo "bg_BG CP866" # not CP855 ?? echo "mk CP866" # not CP855 ?? echo "mk_MK CP866" # not CP855 ?? echo "ru CP866" echo "ru_RU CP866" echo "uk CP1125" echo "uk_UA CP1125" # ISO-8859-6 languages echo "ar CP864" echo "ar_AE CP864" echo "ar_DZ CP864" echo "ar_EG CP864" echo "ar_IQ CP864" echo "ar_IR CP864" echo "ar_JO CP864" echo "ar_KW CP864" echo "ar_MA CP864" echo "ar_OM CP864" echo "ar_QA CP864" echo "ar_SA CP864" echo "ar_SY CP864" # ISO-8859-7 languages echo "el CP869" echo "el_GR CP869" # ISO-8859-8 languages echo "he CP862" echo "he_IL CP862" # ISO-8859-9 languages echo "tr CP857" echo "tr_TR CP857" # Japanese echo "ja CP932" echo "ja_JP CP932" # Chinese echo "zh_CN GBK" echo "zh_TW CP950" # not CP938 ?? # Korean echo "kr CP949" # not CP934 ?? echo "kr_KR CP949" # not CP934 ?? # Thai echo "th CP874" echo "th_TH CP874" # Other echo "eo CP850" echo "eo_EO CP850" ;; esac tvtime-1.0.11/intl/gettextP.h0000664000175000017500000001524412354244126012761 00000000000000/* Header describing internals of libintl library. Copyright (C) 1995-1999, 2000-2003 Free Software Foundation, Inc. Written by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _GETTEXTP_H #define _GETTEXTP_H #include /* Get size_t. */ #ifdef _LIBC # include "../iconv/gconv_int.h" #else # if HAVE_ICONV # include # endif #endif #include "loadinfo.h" #include "gmo.h" /* Get nls_uint32. */ /* @@ end of prolog @@ */ #ifndef PARAMS # if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES # define PARAMS(args) args # else # define PARAMS(args) () # endif #endif #ifndef internal_function # define internal_function #endif #ifndef attribute_hidden # define attribute_hidden #endif /* Tell the compiler when a conditional or integer expression is almost always true or almost always false. */ #ifndef HAVE_BUILTIN_EXPECT # define __builtin_expect(expr, val) (expr) #endif #ifndef W # define W(flag, data) ((flag) ? SWAP (data) : (data)) #endif #ifdef _LIBC # include # define SWAP(i) bswap_32 (i) #else static inline nls_uint32 SWAP (i) nls_uint32 i; { return (i << 24) | ((i & 0xff00) << 8) | ((i >> 8) & 0xff00) | (i >> 24); } #endif /* In-memory representation of system dependent string. */ struct sysdep_string_desc { /* Length of addressed string, including the trailing NUL. */ size_t length; /* Pointer to addressed string. */ const char *pointer; }; /* The representation of an opened message catalog. */ struct loaded_domain { /* Pointer to memory containing the .mo file. */ const char *data; /* 1 if the memory is mmap()ed, 0 if the memory is malloc()ed. */ int use_mmap; /* Size of mmap()ed memory. */ size_t mmap_size; /* 1 if the .mo file uses a different endianness than this machine. */ int must_swap; /* Pointer to additional malloc()ed memory. */ void *malloced; /* Number of static strings pairs. */ nls_uint32 nstrings; /* Pointer to descriptors of original strings in the file. */ const struct string_desc *orig_tab; /* Pointer to descriptors of translated strings in the file. */ const struct string_desc *trans_tab; /* Number of system dependent strings pairs. */ nls_uint32 n_sysdep_strings; /* Pointer to descriptors of original sysdep strings. */ const struct sysdep_string_desc *orig_sysdep_tab; /* Pointer to descriptors of translated sysdep strings. */ const struct sysdep_string_desc *trans_sysdep_tab; /* Size of hash table. */ nls_uint32 hash_size; /* Pointer to hash table. */ const nls_uint32 *hash_tab; /* 1 if the hash table uses a different endianness than this machine. */ int must_swap_hash_tab; int codeset_cntr; #ifdef _LIBC __gconv_t conv; #else # if HAVE_ICONV iconv_t conv; # endif #endif char **conv_tab; struct expression *plural; unsigned long int nplurals; }; /* We want to allocate a string at the end of the struct. But ISO C doesn't allow zero sized arrays. */ #ifdef __GNUC__ # define ZERO 0 #else # define ZERO 1 #endif /* A set of settings bound to a message domain. Used to store settings from bindtextdomain() and bind_textdomain_codeset(). */ struct binding { struct binding *next; char *dirname; int codeset_cntr; /* Incremented each time codeset changes. */ char *codeset; char domainname[ZERO]; }; /* A counter which is incremented each time some previous translations become invalid. This variable is part of the external ABI of the GNU libintl. */ extern int _nl_msg_cat_cntr; #ifndef _LIBC const char *_nl_locale_name PARAMS ((int category, const char *categoryname)); #endif struct loaded_l10nfile *_nl_find_domain PARAMS ((const char *__dirname, char *__locale, const char *__domainname, struct binding *__domainbinding)) internal_function; void _nl_load_domain PARAMS ((struct loaded_l10nfile *__domain, struct binding *__domainbinding)) internal_function; void _nl_unload_domain PARAMS ((struct loaded_domain *__domain)) internal_function; const char *_nl_init_domain_conv PARAMS ((struct loaded_l10nfile *__domain_file, struct loaded_domain *__domain, struct binding *__domainbinding)) internal_function; void _nl_free_domain_conv PARAMS ((struct loaded_domain *__domain)) internal_function; char *_nl_find_msg PARAMS ((struct loaded_l10nfile *domain_file, struct binding *domainbinding, const char *msgid, size_t *lengthp)) internal_function; #ifdef _LIBC extern char *__gettext PARAMS ((const char *__msgid)); extern char *__dgettext PARAMS ((const char *__domainname, const char *__msgid)); extern char *__dcgettext PARAMS ((const char *__domainname, const char *__msgid, int __category)); extern char *__ngettext PARAMS ((const char *__msgid1, const char *__msgid2, unsigned long int __n)); extern char *__dngettext PARAMS ((const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int n)); extern char *__dcngettext PARAMS ((const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category)); extern char *__dcigettext PARAMS ((const char *__domainname, const char *__msgid1, const char *__msgid2, int __plural, unsigned long int __n, int __category)); extern char *__textdomain PARAMS ((const char *__domainname)); extern char *__bindtextdomain PARAMS ((const char *__domainname, const char *__dirname)); extern char *__bind_textdomain_codeset PARAMS ((const char *__domainname, const char *__codeset)); #else /* Declare the exported libintl_* functions, in a way that allows us to call them under their real name. */ # define _INTL_REDIRECT_MACROS # include "libgnuintl.h" extern char *libintl_dcigettext PARAMS ((const char *__domainname, const char *__msgid1, const char *__msgid2, int __plural, unsigned long int __n, int __category)); #endif /* @@ begin of epilog @@ */ #endif /* gettextP.h */ tvtime-1.0.11/intl/gettext.c0000664000175000017500000000357312354244126012636 00000000000000/* Implementation of gettext(3) function. Copyright (C) 1995, 1997, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #ifdef _LIBC # define __need_NULL # include #else # include /* Just for NULL. */ #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define GETTEXT __gettext # define DCGETTEXT INTUSE(__dcgettext) #else # define GETTEXT libintl_gettext # define DCGETTEXT libintl_dcgettext #endif /* Look up MSGID in the current default message catalog for the current LC_MESSAGES locale. If not found, returns MSGID itself (the default text). */ char * GETTEXT (msgid) const char *msgid; { return DCGETTEXT (NULL, msgid, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__gettext, gettext); #endif tvtime-1.0.11/intl/localcharset.c0000664000175000017500000002435512354244126013617 00000000000000/* Determine a canonical name for the current locale's character encoding. Copyright (C) 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Written by Bruno Haible . */ #ifdef HAVE_CONFIG_H # include #endif /* Specification. */ #include "localcharset.h" #if HAVE_STDDEF_H # include #endif #include #if HAVE_STRING_H # include #else # include #endif #if HAVE_STDLIB_H # include #endif #if defined _WIN32 || defined __WIN32__ # undef WIN32 /* avoid warning on mingw32 */ # define WIN32 #endif #if defined __EMX__ /* Assume EMX program runs on OS/2, even if compiled under DOS. */ # define OS2 #endif #if !defined WIN32 # if HAVE_LANGINFO_CODESET # include # else # if HAVE_SETLOCALE # include # endif # endif #elif defined WIN32 # define WIN32_LEAN_AND_MEAN # include #endif #if defined OS2 # define INCL_DOS # include #endif #if ENABLE_RELOCATABLE # include "relocatable.h" #else # define relocate(pathname) (pathname) #endif #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') #endif #ifndef DIRECTORY_SEPARATOR # define DIRECTORY_SEPARATOR '/' #endif #ifndef ISSLASH # define ISSLASH(C) ((C) == DIRECTORY_SEPARATOR) #endif #ifdef HAVE_GETC_UNLOCKED # undef getc # define getc getc_unlocked #endif /* The following static variable is declared 'volatile' to avoid a possible multithread problem in the function get_charset_aliases. If we are running in a threaded environment, and if two threads initialize 'charset_aliases' simultaneously, both will produce the same value, and everything will be ok if the two assignments to 'charset_aliases' are atomic. But I don't know what will happen if the two assignments mix. */ #if __STDC__ != 1 # define volatile /* empty */ #endif /* Pointer to the contents of the charset.alias file, if it has already been read, else NULL. Its format is: ALIAS_1 '\0' CANONICAL_1 '\0' ... ALIAS_n '\0' CANONICAL_n '\0' '\0' */ static const char * volatile charset_aliases; /* Return a pointer to the contents of the charset.alias file. */ static const char * get_charset_aliases () { const char *cp; cp = charset_aliases; if (cp == NULL) { #if !(defined VMS || defined WIN32) FILE *fp; const char *dir = relocate (LIBDIR); const char *base = "charset.alias"; char *file_name; /* Concatenate dir and base into freshly allocated file_name. */ { size_t dir_len = strlen (dir); size_t base_len = strlen (base); int add_slash = (dir_len > 0 && !ISSLASH (dir[dir_len - 1])); file_name = (char *) malloc (dir_len + add_slash + base_len + 1); if (file_name != NULL) { memcpy (file_name, dir, dir_len); if (add_slash) file_name[dir_len] = DIRECTORY_SEPARATOR; memcpy (file_name + dir_len + add_slash, base, base_len + 1); } } if (file_name == NULL || (fp = fopen (file_name, "r")) == NULL) /* Out of memory or file not found, treat it as empty. */ cp = ""; else { /* Parse the file's contents. */ int c; char buf1[50+1]; char buf2[50+1]; char *res_ptr = NULL; size_t res_size = 0; size_t l1, l2; for (;;) { c = getc (fp); if (c == EOF) break; if (c == '\n' || c == ' ' || c == '\t') continue; if (c == '#') { /* Skip comment, to end of line. */ do c = getc (fp); while (!(c == EOF || c == '\n')); if (c == EOF) break; continue; } ungetc (c, fp); if (fscanf (fp, "%50s %50s", buf1, buf2) < 2) break; l1 = strlen (buf1); l2 = strlen (buf2); if (res_size == 0) { res_size = l1 + 1 + l2 + 1; res_ptr = (char *) malloc (res_size + 1); } else { res_size += l1 + 1 + l2 + 1; res_ptr = (char *) realloc (res_ptr, res_size + 1); } if (res_ptr == NULL) { /* Out of memory. */ res_size = 0; break; } strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1); strcpy (res_ptr + res_size - (l2 + 1), buf2); } fclose (fp); if (res_size == 0) cp = ""; else { *(res_ptr + res_size) = '\0'; cp = res_ptr; } } if (file_name != NULL) free (file_name); #else # if defined VMS /* To avoid the troubles of an extra file charset.alias_vms in the sources of many GNU packages, simply inline the aliases here. */ /* The list of encodings is taken from the OpenVMS 7.3-1 documentation "Compaq C Run-Time Library Reference Manual for OpenVMS systems" section 10.7 "Handling Different Character Sets". */ cp = "ISO8859-1" "\0" "ISO-8859-1" "\0" "ISO8859-2" "\0" "ISO-8859-2" "\0" "ISO8859-5" "\0" "ISO-8859-5" "\0" "ISO8859-7" "\0" "ISO-8859-7" "\0" "ISO8859-8" "\0" "ISO-8859-8" "\0" "ISO8859-9" "\0" "ISO-8859-9" "\0" /* Japanese */ "eucJP" "\0" "EUC-JP" "\0" "SJIS" "\0" "SHIFT_JIS" "\0" "DECKANJI" "\0" "DEC-KANJI" "\0" "SDECKANJI" "\0" "EUC-JP" "\0" /* Chinese */ "eucTW" "\0" "EUC-TW" "\0" "DECHANYU" "\0" "DEC-HANYU" "\0" "DECHANZI" "\0" "GB2312" "\0" /* Korean */ "DECKOREAN" "\0" "EUC-KR" "\0"; # endif # if defined WIN32 /* To avoid the troubles of installing a separate file in the same directory as the DLL and of retrieving the DLL's directory at runtime, simply inline the aliases here. */ cp = "CP936" "\0" "GBK" "\0" "CP1361" "\0" "JOHAB" "\0" "CP20127" "\0" "ASCII" "\0" "CP20866" "\0" "KOI8-R" "\0" "CP21866" "\0" "KOI8-RU" "\0" "CP28591" "\0" "ISO-8859-1" "\0" "CP28592" "\0" "ISO-8859-2" "\0" "CP28593" "\0" "ISO-8859-3" "\0" "CP28594" "\0" "ISO-8859-4" "\0" "CP28595" "\0" "ISO-8859-5" "\0" "CP28596" "\0" "ISO-8859-6" "\0" "CP28597" "\0" "ISO-8859-7" "\0" "CP28598" "\0" "ISO-8859-8" "\0" "CP28599" "\0" "ISO-8859-9" "\0" "CP28605" "\0" "ISO-8859-15" "\0"; # endif #endif charset_aliases = cp; } return cp; } /* Determine the current locale's character encoding, and canonicalize it into one of the canonical names listed in config.charset. The result must not be freed; it is statically allocated. If the canonical name cannot be determined, the result is a non-canonical name. */ #ifdef STATIC STATIC #endif const char * locale_charset () { const char *codeset; const char *aliases; #if !(defined WIN32 || defined OS2) # if HAVE_LANGINFO_CODESET /* Most systems support nl_langinfo (CODESET) nowadays. */ codeset = nl_langinfo (CODESET); # else /* On old systems which lack it, use setlocale or getenv. */ const char *locale = NULL; /* But most old systems don't have a complete set of locales. Some (like SunOS 4 or DJGPP) have only the C locale. Therefore we don't use setlocale here; it would return "C" when it doesn't support the locale name the user has set. */ # if HAVE_SETLOCALE && 0 locale = setlocale (LC_CTYPE, NULL); # endif if (locale == NULL || locale[0] == '\0') { locale = getenv ("LC_ALL"); if (locale == NULL || locale[0] == '\0') { locale = getenv ("LC_CTYPE"); if (locale == NULL || locale[0] == '\0') locale = getenv ("LANG"); } } /* On some old systems, one used to set locale = "iso8859_1". On others, you set it to "language_COUNTRY.charset". In any case, we resolve it through the charset.alias file. */ codeset = locale; # endif #elif defined WIN32 static char buf[2 + 10 + 1]; /* Woe32 has a function returning the locale's codepage as a number. */ sprintf (buf, "CP%u", GetACP ()); codeset = buf; #elif defined OS2 const char *locale; static char buf[2 + 10 + 1]; ULONG cp[3]; ULONG cplen; /* Allow user to override the codeset, as set in the operating system, with standard language environment variables. */ locale = getenv ("LC_ALL"); if (locale == NULL || locale[0] == '\0') { locale = getenv ("LC_CTYPE"); if (locale == NULL || locale[0] == '\0') locale = getenv ("LANG"); } if (locale != NULL && locale[0] != '\0') { /* If the locale name contains an encoding after the dot, return it. */ const char *dot = strchr (locale, '.'); if (dot != NULL) { const char *modifier; dot++; /* Look for the possible @... trailer and remove it, if any. */ modifier = strchr (dot, '@'); if (modifier == NULL) return dot; if (modifier - dot < sizeof (buf)) { memcpy (buf, dot, modifier - dot); buf [modifier - dot] = '\0'; return buf; } } /* Resolve through the charset.alias file. */ codeset = locale; } else { /* OS/2 has a function returning the locale's codepage as a number. */ if (DosQueryCp (sizeof (cp), cp, &cplen)) codeset = ""; else { sprintf (buf, "CP%u", cp[0]); codeset = buf; } } #endif if (codeset == NULL) /* The canonical name cannot be determined. */ codeset = ""; /* Resolve alias. */ for (aliases = get_charset_aliases (); *aliases != '\0'; aliases += strlen (aliases) + 1, aliases += strlen (aliases) + 1) if (strcmp (codeset, aliases) == 0 || (aliases[0] == '*' && aliases[1] == '\0')) { codeset = aliases + strlen (aliases) + 1; break; } /* Don't return an empty string. GNU libc and GNU libiconv interpret the empty string as denoting "the locale's character encoding", thus GNU libiconv would call this function a second time. */ if (codeset[0] == '\0') codeset = "ASCII"; return codeset; } tvtime-1.0.11/intl/libgnuintl.h.in0000664000175000017500000002546212354244126013734 00000000000000/* Message catalogs for internationalization. Copyright (C) 1995-1997, 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _LIBINTL_H #define _LIBINTL_H 1 #include /* The LC_MESSAGES locale category is the category used by the functions gettext() and dgettext(). It is specified in POSIX, but not in ANSI C. On systems that don't define it, use an arbitrary value instead. On Solaris, defines __LOCALE_H (or _LOCALE_H in Solaris 2.5) then includes (i.e. this file!) and then only defines LC_MESSAGES. To avoid a redefinition warning, don't define LC_MESSAGES in this case. */ #if !defined LC_MESSAGES && !(defined __LOCALE_H || (defined _LOCALE_H && defined __sun)) # define LC_MESSAGES 1729 #endif /* We define an additional symbol to signal that we use the GNU implementation of gettext. */ #define __USE_GNU_GETTEXT 1 /* Provide information about the supported file formats. Returns the maximum minor revision number supported for a given major revision. */ #define __GNU_GETTEXT_SUPPORTED_REVISION(major) \ ((major) == 0 ? 1 : -1) /* Resolve a platform specific conflict on DJGPP. GNU gettext takes precedence over _conio_gettext. */ #ifdef __DJGPP__ # undef gettext #endif /* Use _INTL_PARAMS, not PARAMS, in order to avoid clashes with identifiers used by programs. Similarly, test __PROTOTYPES, not PROTOTYPES. */ #ifndef _INTL_PARAMS # if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES # define _INTL_PARAMS(args) args # else # define _INTL_PARAMS(args) () # endif #endif #ifdef __cplusplus extern "C" { #endif /* We redirect the functions to those prefixed with "libintl_". This is necessary, because some systems define gettext/textdomain/... in the C library (namely, Solaris 2.4 and newer, and GNU libc 2.0 and newer). If we used the unprefixed names, there would be cases where the definition in the C library would override the one in the libintl.so shared library. Recall that on ELF systems, the symbols are looked up in the following order: 1. in the executable, 2. in the shared libraries specified on the link command line, in order, 3. in the dependencies of the shared libraries specified on the link command line, 4. in the dlopen()ed shared libraries, in the order in which they were dlopen()ed. The definition in the C library would override the one in libintl.so if either * -lc is given on the link command line and -lintl isn't, or * -lc is given on the link command line before -lintl, or * libintl.so is a dependency of a dlopen()ed shared library but not linked to the executable at link time. Since Solaris gettext() behaves differently than GNU gettext(), this would be unacceptable. The redirection happens by default through macros in C, so that &gettext is independent of the compilation unit, but through inline functions in C++, in order not to interfere with the name mangling of class fields or class methods called 'gettext'. */ /* The user can define _INTL_REDIRECT_INLINE or _INTL_REDIRECT_MACROS. If he doesn't, we choose the method. A third possible method is _INTL_REDIRECT_ASM, supported only by GCC. */ #if !(defined _INTL_REDIRECT_INLINE || defined _INTL_REDIRECT_MACROS) # if __GNUC__ >= 2 && !defined __APPLE_CC__ && (defined __STDC__ || defined __cplusplus) # define _INTL_REDIRECT_ASM # else # ifdef __cplusplus # define _INTL_REDIRECT_INLINE # else # define _INTL_REDIRECT_MACROS # endif # endif #endif /* Auxiliary macros. */ #ifdef _INTL_REDIRECT_ASM # define _INTL_ASM(cname) __asm__ (_INTL_ASMNAME (__USER_LABEL_PREFIX__, #cname)) # define _INTL_ASMNAME(prefix,cnamestring) _INTL_STRINGIFY (prefix) cnamestring # define _INTL_STRINGIFY(prefix) #prefix #else # define _INTL_ASM(cname) #endif /* Look up MSGID in the current default message catalog for the current LC_MESSAGES locale. If not found, returns MSGID itself (the default text). */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_gettext (const char *__msgid); static inline char *gettext (const char *__msgid) { return libintl_gettext (__msgid); } #else #ifdef _INTL_REDIRECT_MACROS # define gettext libintl_gettext #endif extern char *gettext _INTL_PARAMS ((const char *__msgid)) _INTL_ASM (libintl_gettext); #endif /* Look up MSGID in the DOMAINNAME message catalog for the current LC_MESSAGES locale. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dgettext (const char *__domainname, const char *__msgid); static inline char *dgettext (const char *__domainname, const char *__msgid) { return libintl_dgettext (__domainname, __msgid); } #else #ifdef _INTL_REDIRECT_MACROS # define dgettext libintl_dgettext #endif extern char *dgettext _INTL_PARAMS ((const char *__domainname, const char *__msgid)) _INTL_ASM (libintl_dgettext); #endif /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dcgettext (const char *__domainname, const char *__msgid, int __category); static inline char *dcgettext (const char *__domainname, const char *__msgid, int __category) { return libintl_dcgettext (__domainname, __msgid, __category); } #else #ifdef _INTL_REDIRECT_MACROS # define dcgettext libintl_dcgettext #endif extern char *dcgettext _INTL_PARAMS ((const char *__domainname, const char *__msgid, int __category)) _INTL_ASM (libintl_dcgettext); #endif /* Similar to `gettext' but select the plural form corresponding to the number N. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_ngettext (const char *__msgid1, const char *__msgid2, unsigned long int __n); static inline char *ngettext (const char *__msgid1, const char *__msgid2, unsigned long int __n) { return libintl_ngettext (__msgid1, __msgid2, __n); } #else #ifdef _INTL_REDIRECT_MACROS # define ngettext libintl_ngettext #endif extern char *ngettext _INTL_PARAMS ((const char *__msgid1, const char *__msgid2, unsigned long int __n)) _INTL_ASM (libintl_ngettext); #endif /* Similar to `dgettext' but select the plural form corresponding to the number N. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n); static inline char *dngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n) { return libintl_dngettext (__domainname, __msgid1, __msgid2, __n); } #else #ifdef _INTL_REDIRECT_MACROS # define dngettext libintl_dngettext #endif extern char *dngettext _INTL_PARAMS ((const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n)) _INTL_ASM (libintl_dngettext); #endif /* Similar to `dcgettext' but select the plural form corresponding to the number N. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dcngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category); static inline char *dcngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category) { return libintl_dcngettext (__domainname, __msgid1, __msgid2, __n, __category); } #else #ifdef _INTL_REDIRECT_MACROS # define dcngettext libintl_dcngettext #endif extern char *dcngettext _INTL_PARAMS ((const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category)) _INTL_ASM (libintl_dcngettext); #endif /* Set the current default message catalog to DOMAINNAME. If DOMAINNAME is null, return the current default. If DOMAINNAME is "", reset to the default of "messages". */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_textdomain (const char *__domainname); static inline char *textdomain (const char *__domainname) { return libintl_textdomain (__domainname); } #else #ifdef _INTL_REDIRECT_MACROS # define textdomain libintl_textdomain #endif extern char *textdomain _INTL_PARAMS ((const char *__domainname)) _INTL_ASM (libintl_textdomain); #endif /* Specify that the DOMAINNAME message catalog will be found in DIRNAME rather than in the system locale data base. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_bindtextdomain (const char *__domainname, const char *__dirname); static inline char *bindtextdomain (const char *__domainname, const char *__dirname) { return libintl_bindtextdomain (__domainname, __dirname); } #else #ifdef _INTL_REDIRECT_MACROS # define bindtextdomain libintl_bindtextdomain #endif extern char *bindtextdomain _INTL_PARAMS ((const char *__domainname, const char *__dirname)) _INTL_ASM (libintl_bindtextdomain); #endif /* Specify the character encoding in which the messages from the DOMAINNAME message catalog will be returned. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_bind_textdomain_codeset (const char *__domainname, const char *__codeset); static inline char *bind_textdomain_codeset (const char *__domainname, const char *__codeset) { return libintl_bind_textdomain_codeset (__domainname, __codeset); } #else #ifdef _INTL_REDIRECT_MACROS # define bind_textdomain_codeset libintl_bind_textdomain_codeset #endif extern char *bind_textdomain_codeset _INTL_PARAMS ((const char *__domainname, const char *__codeset)) _INTL_ASM (libintl_bind_textdomain_codeset); #endif /* Support for relocatable packages. */ /* Sets the original and the current installation prefix of the package. Relocation simply replaces a pathname starting with the original prefix by the corresponding pathname with the current prefix instead. Both prefixes should be directory names without trailing slash (i.e. use "" instead of "/"). */ #define libintl_set_relocation_prefix libintl_set_relocation_prefix extern void libintl_set_relocation_prefix _INTL_PARAMS ((const char *orig_prefix, const char *curr_prefix)); #ifdef __cplusplus } #endif #endif /* libintl.h */ tvtime-1.0.11/intl/localealias.c0000664000175000017500000002352112354244126013416 00000000000000/* Handle aliases for locale names. Copyright (C) 1995-1999, 2000-2001, 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Tell glibc's to provide a prototype for mempcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #if defined _LIBC || defined HAVE___FSETLOCKING # include #endif #include #ifdef __GNUC__ # undef alloca # define alloca __builtin_alloca # define HAVE_ALLOCA 1 #else # ifdef _MSC_VER # include # define alloca _alloca # else # if defined HAVE_ALLOCA_H || defined _LIBC # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca char *alloca (); # endif # endif # endif # endif #endif #include #include #include "gettextP.h" #if ENABLE_RELOCATABLE # include "relocatable.h" #else # define relocate(pathname) (pathname) #endif /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ANSI C functions. This is required by the standard because some ANSI C functions will require linking with this object file and the name space must not be polluted. */ # define strcasecmp __strcasecmp # ifndef mempcpy # define mempcpy __mempcpy # endif # define HAVE_MEMPCPY 1 # define HAVE___FSETLOCKING 1 /* We need locking here since we can be called from different places. */ # include __libc_lock_define_initialized (static, lock); #endif #ifndef internal_function # define internal_function #endif /* Some optimizations for glibc. */ #ifdef _LIBC # define FEOF(fp) feof_unlocked (fp) # define FGETS(buf, n, fp) fgets_unlocked (buf, n, fp) #else # define FEOF(fp) feof (fp) # define FGETS(buf, n, fp) fgets (buf, n, fp) #endif /* For those losing systems which don't have `alloca' we have to add some additional code emulating it. */ #ifdef HAVE_ALLOCA # define freea(p) /* nothing */ #else # define alloca(n) malloc (n) # define freea(p) free (p) #endif #if defined _LIBC_REENTRANT || defined HAVE_FGETS_UNLOCKED # undef fgets # define fgets(buf, len, s) fgets_unlocked (buf, len, s) #endif #if defined _LIBC_REENTRANT || defined HAVE_FEOF_UNLOCKED # undef feof # define feof(s) feof_unlocked (s) #endif struct alias_map { const char *alias; const char *value; }; #ifndef _LIBC # define libc_freeres_ptr(decl) decl #endif libc_freeres_ptr (static char *string_space); static size_t string_space_act; static size_t string_space_max; libc_freeres_ptr (static struct alias_map *map); static size_t nmap; static size_t maxmap; /* Prototypes for local functions. */ static size_t read_alias_file PARAMS ((const char *fname, int fname_len)) internal_function; static int extend_alias_table PARAMS ((void)); static int alias_compare PARAMS ((const struct alias_map *map1, const struct alias_map *map2)); const char * _nl_expand_alias (name) const char *name; { static const char *locale_alias_path; struct alias_map *retval; const char *result = NULL; size_t added; #ifdef _LIBC __libc_lock_lock (lock); #endif if (locale_alias_path == NULL) locale_alias_path = LOCALE_ALIAS_PATH; do { struct alias_map item; item.alias = name; if (nmap > 0) retval = (struct alias_map *) bsearch (&item, map, nmap, sizeof (struct alias_map), (int (*) PARAMS ((const void *, const void *)) ) alias_compare); else retval = NULL; /* We really found an alias. Return the value. */ if (retval != NULL) { result = retval->value; break; } /* Perhaps we can find another alias file. */ added = 0; while (added == 0 && locale_alias_path[0] != '\0') { const char *start; while (locale_alias_path[0] == PATH_SEPARATOR) ++locale_alias_path; start = locale_alias_path; while (locale_alias_path[0] != '\0' && locale_alias_path[0] != PATH_SEPARATOR) ++locale_alias_path; if (start < locale_alias_path) added = read_alias_file (start, locale_alias_path - start); } } while (added != 0); #ifdef _LIBC __libc_lock_unlock (lock); #endif return result; } static size_t internal_function read_alias_file (fname, fname_len) const char *fname; int fname_len; { FILE *fp; char *full_fname; size_t added; static const char aliasfile[] = "/locale.alias"; full_fname = (char *) alloca (fname_len + sizeof aliasfile); #ifdef HAVE_MEMPCPY mempcpy (mempcpy (full_fname, fname, fname_len), aliasfile, sizeof aliasfile); #else memcpy (full_fname, fname, fname_len); memcpy (&full_fname[fname_len], aliasfile, sizeof aliasfile); #endif fp = fopen (relocate (full_fname), "r"); freea (full_fname); if (fp == NULL) return 0; #ifdef HAVE___FSETLOCKING /* No threads present. */ __fsetlocking (fp, FSETLOCKING_BYCALLER); #endif added = 0; while (!FEOF (fp)) { /* It is a reasonable approach to use a fix buffer here because a) we are only interested in the first two fields b) these fields must be usable as file names and so must not be that long We avoid a multi-kilobyte buffer here since this would use up stack space which we might not have if the program ran out of memory. */ char buf[400]; char *alias; char *value; char *cp; if (FGETS (buf, sizeof buf, fp) == NULL) /* EOF reached. */ break; cp = buf; /* Ignore leading white space. */ while (isspace ((unsigned char) cp[0])) ++cp; /* A leading '#' signals a comment line. */ if (cp[0] != '\0' && cp[0] != '#') { alias = cp++; while (cp[0] != '\0' && !isspace ((unsigned char) cp[0])) ++cp; /* Terminate alias name. */ if (cp[0] != '\0') *cp++ = '\0'; /* Now look for the beginning of the value. */ while (isspace ((unsigned char) cp[0])) ++cp; if (cp[0] != '\0') { size_t alias_len; size_t value_len; value = cp++; while (cp[0] != '\0' && !isspace ((unsigned char) cp[0])) ++cp; /* Terminate value. */ if (cp[0] == '\n') { /* This has to be done to make the following test for the end of line possible. We are looking for the terminating '\n' which do not overwrite here. */ *cp++ = '\0'; *cp = '\n'; } else if (cp[0] != '\0') *cp++ = '\0'; if (nmap >= maxmap) if (__builtin_expect (extend_alias_table (), 0)) return added; alias_len = strlen (alias) + 1; value_len = strlen (value) + 1; if (string_space_act + alias_len + value_len > string_space_max) { /* Increase size of memory pool. */ size_t new_size = (string_space_max + (alias_len + value_len > 1024 ? alias_len + value_len : 1024)); char *new_pool = (char *) realloc (string_space, new_size); if (new_pool == NULL) return added; if (__builtin_expect (string_space != new_pool, 0)) { size_t i; for (i = 0; i < nmap; i++) { map[i].alias += new_pool - string_space; map[i].value += new_pool - string_space; } } string_space = new_pool; string_space_max = new_size; } map[nmap].alias = memcpy (&string_space[string_space_act], alias, alias_len); string_space_act += alias_len; map[nmap].value = memcpy (&string_space[string_space_act], value, value_len); string_space_act += value_len; ++nmap; ++added; } } /* Possibly not the whole line fits into the buffer. Ignore the rest of the line. */ while (strchr (buf, '\n') == NULL) if (FGETS (buf, sizeof buf, fp) == NULL) /* Make sure the inner loop will be left. The outer loop will exit at the `feof' test. */ break; } /* Should we test for ferror()? I think we have to silently ignore errors. --drepper */ fclose (fp); if (added > 0) qsort (map, nmap, sizeof (struct alias_map), (int (*) PARAMS ((const void *, const void *))) alias_compare); return added; } static int extend_alias_table () { size_t new_size; struct alias_map *new_map; new_size = maxmap == 0 ? 100 : 2 * maxmap; new_map = (struct alias_map *) realloc (map, (new_size * sizeof (struct alias_map))); if (new_map == NULL) /* Simply don't extend: we don't have any more core. */ return -1; map = new_map; maxmap = new_size; return 0; } static int alias_compare (map1, map2) const struct alias_map *map1; const struct alias_map *map2; { #if defined _LIBC || defined HAVE_STRCASECMP return strcasecmp (map1->alias, map2->alias); #else const unsigned char *p1 = (const unsigned char *) map1->alias; const unsigned char *p2 = (const unsigned char *) map2->alias; unsigned char c1, c2; if (p1 == p2) return 0; do { /* I know this seems to be odd but the tolower() function in some systems libc cannot handle nonalpha characters. */ c1 = isupper (*p1) ? tolower (*p1) : *p1; c2 = isupper (*p2) ? tolower (*p2) : *p2; if (c1 == '\0') break; ++p1; ++p2; } while (c1 == c2); return c1 - c2; #endif } tvtime-1.0.11/intl/plural-exp.c0000664000175000017500000000771412354244126013244 00000000000000/* Expression parsing for plural form selection. Copyright (C) 2000, 2001 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include "plural-exp.h" #if (defined __GNUC__ && !defined __APPLE_CC__) \ || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) /* These structs are the constant expression for the germanic plural form determination. It represents the expression "n != 1". */ static const struct expression plvar = { .nargs = 0, .operation = var, }; static const struct expression plone = { .nargs = 0, .operation = num, .val = { .num = 1 } }; struct expression GERMANIC_PLURAL = { .nargs = 2, .operation = not_equal, .val = { .args = { [0] = (struct expression *) &plvar, [1] = (struct expression *) &plone } } }; # define INIT_GERMANIC_PLURAL() #else /* For compilers without support for ISO C 99 struct/union initializers: Initialization at run-time. */ static struct expression plvar; static struct expression plone; struct expression GERMANIC_PLURAL; static void init_germanic_plural () { if (plone.val.num == 0) { plvar.nargs = 0; plvar.operation = var; plone.nargs = 0; plone.operation = num; plone.val.num = 1; GERMANIC_PLURAL.nargs = 2; GERMANIC_PLURAL.operation = not_equal; GERMANIC_PLURAL.val.args[0] = &plvar; GERMANIC_PLURAL.val.args[1] = &plone; } } # define INIT_GERMANIC_PLURAL() init_germanic_plural () #endif void internal_function EXTRACT_PLURAL_EXPRESSION (nullentry, pluralp, npluralsp) const char *nullentry; struct expression **pluralp; unsigned long int *npluralsp; { if (nullentry != NULL) { const char *plural; const char *nplurals; plural = strstr (nullentry, "plural="); nplurals = strstr (nullentry, "nplurals="); if (plural == NULL || nplurals == NULL) goto no_plural; else { char *endp; unsigned long int n; struct parse_args args; /* First get the number. */ nplurals += 9; while (*nplurals != '\0' && isspace ((unsigned char) *nplurals)) ++nplurals; if (!(*nplurals >= '0' && *nplurals <= '9')) goto no_plural; #if defined HAVE_STRTOUL || defined _LIBC n = strtoul (nplurals, &endp, 10); #else for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++) n = n * 10 + (*endp - '0'); #endif if (nplurals == endp) goto no_plural; *npluralsp = n; /* Due to the restrictions bison imposes onto the interface of the scanner function we have to put the input string and the result passed up from the parser into the same structure which address is passed down to the parser. */ plural += 7; args.cp = plural; if (PLURAL_PARSE (&args) != 0) goto no_plural; *pluralp = args.res; } } else { /* By default we are using the Germanic form: singular form only for `one', the plural form otherwise. Yes, this is also what English is using since English is a Germanic language. */ no_plural: INIT_GERMANIC_PLURAL (); *pluralp = &GERMANIC_PLURAL; *npluralsp = 2; } } tvtime-1.0.11/intl/dcngettext.c0000664000175000017500000000356712354244126013326 00000000000000/* Implementation of the dcngettext(3) function. Copyright (C) 1995-1999, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DCNGETTEXT __dcngettext # define DCIGETTEXT __dcigettext #else # define DCNGETTEXT libintl_dcngettext # define DCIGETTEXT libintl_dcigettext #endif /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale. */ char * DCNGETTEXT (domainname, msgid1, msgid2, n, category) const char *domainname; const char *msgid1; const char *msgid2; unsigned long int n; int category; { return DCIGETTEXT (domainname, msgid1, msgid2, 1, n, category); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__dcngettext, dcngettext); #endif tvtime-1.0.11/intl/loadmsgcat.c0000664000175000017500000010333012354244126013260 00000000000000/* Load needed message catalogs. Copyright (C) 1995-1999, 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Tell glibc's to provide a prototype for mempcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include #include #ifdef __GNUC__ # undef alloca # define alloca __builtin_alloca # define HAVE_ALLOCA 1 #else # ifdef _MSC_VER # include # define alloca _alloca # else # if defined HAVE_ALLOCA_H || defined _LIBC # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca char *alloca (); # endif # endif # endif # endif #endif #include #include #if defined HAVE_UNISTD_H || defined _LIBC # include #endif #ifdef _LIBC # include # include #endif #if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \ || (defined _LIBC && defined _POSIX_MAPPED_FILES) # include # undef HAVE_MMAP # define HAVE_MMAP 1 #else # undef HAVE_MMAP #endif #if defined HAVE_STDINT_H_WITH_UINTMAX || defined _LIBC # include #endif #if defined HAVE_INTTYPES_H || defined _LIBC # include #endif #include "gmo.h" #include "gettextP.h" #include "hash-string.h" #include "plural-exp.h" #ifdef _LIBC # include "../locale/localeinfo.h" #endif /* Provide fallback values for macros that ought to be defined in . Note that our fallback values need not be literal strings, because we don't use them with preprocessor string concatenation. */ #if !defined PRId8 || PRI_MACROS_BROKEN # undef PRId8 # define PRId8 "d" #endif #if !defined PRIi8 || PRI_MACROS_BROKEN # undef PRIi8 # define PRIi8 "i" #endif #if !defined PRIo8 || PRI_MACROS_BROKEN # undef PRIo8 # define PRIo8 "o" #endif #if !defined PRIu8 || PRI_MACROS_BROKEN # undef PRIu8 # define PRIu8 "u" #endif #if !defined PRIx8 || PRI_MACROS_BROKEN # undef PRIx8 # define PRIx8 "x" #endif #if !defined PRIX8 || PRI_MACROS_BROKEN # undef PRIX8 # define PRIX8 "X" #endif #if !defined PRId16 || PRI_MACROS_BROKEN # undef PRId16 # define PRId16 "d" #endif #if !defined PRIi16 || PRI_MACROS_BROKEN # undef PRIi16 # define PRIi16 "i" #endif #if !defined PRIo16 || PRI_MACROS_BROKEN # undef PRIo16 # define PRIo16 "o" #endif #if !defined PRIu16 || PRI_MACROS_BROKEN # undef PRIu16 # define PRIu16 "u" #endif #if !defined PRIx16 || PRI_MACROS_BROKEN # undef PRIx16 # define PRIx16 "x" #endif #if !defined PRIX16 || PRI_MACROS_BROKEN # undef PRIX16 # define PRIX16 "X" #endif #if !defined PRId32 || PRI_MACROS_BROKEN # undef PRId32 # define PRId32 "d" #endif #if !defined PRIi32 || PRI_MACROS_BROKEN # undef PRIi32 # define PRIi32 "i" #endif #if !defined PRIo32 || PRI_MACROS_BROKEN # undef PRIo32 # define PRIo32 "o" #endif #if !defined PRIu32 || PRI_MACROS_BROKEN # undef PRIu32 # define PRIu32 "u" #endif #if !defined PRIx32 || PRI_MACROS_BROKEN # undef PRIx32 # define PRIx32 "x" #endif #if !defined PRIX32 || PRI_MACROS_BROKEN # undef PRIX32 # define PRIX32 "X" #endif #if !defined PRId64 || PRI_MACROS_BROKEN # undef PRId64 # define PRId64 (sizeof (long) == 8 ? "ld" : "lld") #endif #if !defined PRIi64 || PRI_MACROS_BROKEN # undef PRIi64 # define PRIi64 (sizeof (long) == 8 ? "li" : "lli") #endif #if !defined PRIo64 || PRI_MACROS_BROKEN # undef PRIo64 # define PRIo64 (sizeof (long) == 8 ? "lo" : "llo") #endif #if !defined PRIu64 || PRI_MACROS_BROKEN # undef PRIu64 # define PRIu64 (sizeof (long) == 8 ? "lu" : "llu") #endif #if !defined PRIx64 || PRI_MACROS_BROKEN # undef PRIx64 # define PRIx64 (sizeof (long) == 8 ? "lx" : "llx") #endif #if !defined PRIX64 || PRI_MACROS_BROKEN # undef PRIX64 # define PRIX64 (sizeof (long) == 8 ? "lX" : "llX") #endif #if !defined PRIdLEAST8 || PRI_MACROS_BROKEN # undef PRIdLEAST8 # define PRIdLEAST8 "d" #endif #if !defined PRIiLEAST8 || PRI_MACROS_BROKEN # undef PRIiLEAST8 # define PRIiLEAST8 "i" #endif #if !defined PRIoLEAST8 || PRI_MACROS_BROKEN # undef PRIoLEAST8 # define PRIoLEAST8 "o" #endif #if !defined PRIuLEAST8 || PRI_MACROS_BROKEN # undef PRIuLEAST8 # define PRIuLEAST8 "u" #endif #if !defined PRIxLEAST8 || PRI_MACROS_BROKEN # undef PRIxLEAST8 # define PRIxLEAST8 "x" #endif #if !defined PRIXLEAST8 || PRI_MACROS_BROKEN # undef PRIXLEAST8 # define PRIXLEAST8 "X" #endif #if !defined PRIdLEAST16 || PRI_MACROS_BROKEN # undef PRIdLEAST16 # define PRIdLEAST16 "d" #endif #if !defined PRIiLEAST16 || PRI_MACROS_BROKEN # undef PRIiLEAST16 # define PRIiLEAST16 "i" #endif #if !defined PRIoLEAST16 || PRI_MACROS_BROKEN # undef PRIoLEAST16 # define PRIoLEAST16 "o" #endif #if !defined PRIuLEAST16 || PRI_MACROS_BROKEN # undef PRIuLEAST16 # define PRIuLEAST16 "u" #endif #if !defined PRIxLEAST16 || PRI_MACROS_BROKEN # undef PRIxLEAST16 # define PRIxLEAST16 "x" #endif #if !defined PRIXLEAST16 || PRI_MACROS_BROKEN # undef PRIXLEAST16 # define PRIXLEAST16 "X" #endif #if !defined PRIdLEAST32 || PRI_MACROS_BROKEN # undef PRIdLEAST32 # define PRIdLEAST32 "d" #endif #if !defined PRIiLEAST32 || PRI_MACROS_BROKEN # undef PRIiLEAST32 # define PRIiLEAST32 "i" #endif #if !defined PRIoLEAST32 || PRI_MACROS_BROKEN # undef PRIoLEAST32 # define PRIoLEAST32 "o" #endif #if !defined PRIuLEAST32 || PRI_MACROS_BROKEN # undef PRIuLEAST32 # define PRIuLEAST32 "u" #endif #if !defined PRIxLEAST32 || PRI_MACROS_BROKEN # undef PRIxLEAST32 # define PRIxLEAST32 "x" #endif #if !defined PRIXLEAST32 || PRI_MACROS_BROKEN # undef PRIXLEAST32 # define PRIXLEAST32 "X" #endif #if !defined PRIdLEAST64 || PRI_MACROS_BROKEN # undef PRIdLEAST64 # define PRIdLEAST64 PRId64 #endif #if !defined PRIiLEAST64 || PRI_MACROS_BROKEN # undef PRIiLEAST64 # define PRIiLEAST64 PRIi64 #endif #if !defined PRIoLEAST64 || PRI_MACROS_BROKEN # undef PRIoLEAST64 # define PRIoLEAST64 PRIo64 #endif #if !defined PRIuLEAST64 || PRI_MACROS_BROKEN # undef PRIuLEAST64 # define PRIuLEAST64 PRIu64 #endif #if !defined PRIxLEAST64 || PRI_MACROS_BROKEN # undef PRIxLEAST64 # define PRIxLEAST64 PRIx64 #endif #if !defined PRIXLEAST64 || PRI_MACROS_BROKEN # undef PRIXLEAST64 # define PRIXLEAST64 PRIX64 #endif #if !defined PRIdFAST8 || PRI_MACROS_BROKEN # undef PRIdFAST8 # define PRIdFAST8 "d" #endif #if !defined PRIiFAST8 || PRI_MACROS_BROKEN # undef PRIiFAST8 # define PRIiFAST8 "i" #endif #if !defined PRIoFAST8 || PRI_MACROS_BROKEN # undef PRIoFAST8 # define PRIoFAST8 "o" #endif #if !defined PRIuFAST8 || PRI_MACROS_BROKEN # undef PRIuFAST8 # define PRIuFAST8 "u" #endif #if !defined PRIxFAST8 || PRI_MACROS_BROKEN # undef PRIxFAST8 # define PRIxFAST8 "x" #endif #if !defined PRIXFAST8 || PRI_MACROS_BROKEN # undef PRIXFAST8 # define PRIXFAST8 "X" #endif #if !defined PRIdFAST16 || PRI_MACROS_BROKEN # undef PRIdFAST16 # define PRIdFAST16 "d" #endif #if !defined PRIiFAST16 || PRI_MACROS_BROKEN # undef PRIiFAST16 # define PRIiFAST16 "i" #endif #if !defined PRIoFAST16 || PRI_MACROS_BROKEN # undef PRIoFAST16 # define PRIoFAST16 "o" #endif #if !defined PRIuFAST16 || PRI_MACROS_BROKEN # undef PRIuFAST16 # define PRIuFAST16 "u" #endif #if !defined PRIxFAST16 || PRI_MACROS_BROKEN # undef PRIxFAST16 # define PRIxFAST16 "x" #endif #if !defined PRIXFAST16 || PRI_MACROS_BROKEN # undef PRIXFAST16 # define PRIXFAST16 "X" #endif #if !defined PRIdFAST32 || PRI_MACROS_BROKEN # undef PRIdFAST32 # define PRIdFAST32 "d" #endif #if !defined PRIiFAST32 || PRI_MACROS_BROKEN # undef PRIiFAST32 # define PRIiFAST32 "i" #endif #if !defined PRIoFAST32 || PRI_MACROS_BROKEN # undef PRIoFAST32 # define PRIoFAST32 "o" #endif #if !defined PRIuFAST32 || PRI_MACROS_BROKEN # undef PRIuFAST32 # define PRIuFAST32 "u" #endif #if !defined PRIxFAST32 || PRI_MACROS_BROKEN # undef PRIxFAST32 # define PRIxFAST32 "x" #endif #if !defined PRIXFAST32 || PRI_MACROS_BROKEN # undef PRIXFAST32 # define PRIXFAST32 "X" #endif #if !defined PRIdFAST64 || PRI_MACROS_BROKEN # undef PRIdFAST64 # define PRIdFAST64 PRId64 #endif #if !defined PRIiFAST64 || PRI_MACROS_BROKEN # undef PRIiFAST64 # define PRIiFAST64 PRIi64 #endif #if !defined PRIoFAST64 || PRI_MACROS_BROKEN # undef PRIoFAST64 # define PRIoFAST64 PRIo64 #endif #if !defined PRIuFAST64 || PRI_MACROS_BROKEN # undef PRIuFAST64 # define PRIuFAST64 PRIu64 #endif #if !defined PRIxFAST64 || PRI_MACROS_BROKEN # undef PRIxFAST64 # define PRIxFAST64 PRIx64 #endif #if !defined PRIXFAST64 || PRI_MACROS_BROKEN # undef PRIXFAST64 # define PRIXFAST64 PRIX64 #endif #if !defined PRIdMAX || PRI_MACROS_BROKEN # undef PRIdMAX # define PRIdMAX (sizeof (uintmax_t) == sizeof (long) ? "ld" : "lld") #endif #if !defined PRIiMAX || PRI_MACROS_BROKEN # undef PRIiMAX # define PRIiMAX (sizeof (uintmax_t) == sizeof (long) ? "li" : "lli") #endif #if !defined PRIoMAX || PRI_MACROS_BROKEN # undef PRIoMAX # define PRIoMAX (sizeof (uintmax_t) == sizeof (long) ? "lo" : "llo") #endif #if !defined PRIuMAX || PRI_MACROS_BROKEN # undef PRIuMAX # define PRIuMAX (sizeof (uintmax_t) == sizeof (long) ? "lu" : "llu") #endif #if !defined PRIxMAX || PRI_MACROS_BROKEN # undef PRIxMAX # define PRIxMAX (sizeof (uintmax_t) == sizeof (long) ? "lx" : "llx") #endif #if !defined PRIXMAX || PRI_MACROS_BROKEN # undef PRIXMAX # define PRIXMAX (sizeof (uintmax_t) == sizeof (long) ? "lX" : "llX") #endif #if !defined PRIdPTR || PRI_MACROS_BROKEN # undef PRIdPTR # define PRIdPTR \ (sizeof (void *) == sizeof (long) ? "ld" : \ sizeof (void *) == sizeof (int) ? "d" : \ "lld") #endif #if !defined PRIiPTR || PRI_MACROS_BROKEN # undef PRIiPTR # define PRIiPTR \ (sizeof (void *) == sizeof (long) ? "li" : \ sizeof (void *) == sizeof (int) ? "i" : \ "lli") #endif #if !defined PRIoPTR || PRI_MACROS_BROKEN # undef PRIoPTR # define PRIoPTR \ (sizeof (void *) == sizeof (long) ? "lo" : \ sizeof (void *) == sizeof (int) ? "o" : \ "llo") #endif #if !defined PRIuPTR || PRI_MACROS_BROKEN # undef PRIuPTR # define PRIuPTR \ (sizeof (void *) == sizeof (long) ? "lu" : \ sizeof (void *) == sizeof (int) ? "u" : \ "llu") #endif #if !defined PRIxPTR || PRI_MACROS_BROKEN # undef PRIxPTR # define PRIxPTR \ (sizeof (void *) == sizeof (long) ? "lx" : \ sizeof (void *) == sizeof (int) ? "x" : \ "llx") #endif #if !defined PRIXPTR || PRI_MACROS_BROKEN # undef PRIXPTR # define PRIXPTR \ (sizeof (void *) == sizeof (long) ? "lX" : \ sizeof (void *) == sizeof (int) ? "X" : \ "llX") #endif /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ISO C functions. This is required by the standard because some ISO C functions will require linking with this object file and the name space must not be polluted. */ # define open __open # define close __close # define read __read # define mmap __mmap # define munmap __munmap #endif /* For those losing systems which don't have `alloca' we have to add some additional code emulating it. */ #ifdef HAVE_ALLOCA # define freea(p) /* nothing */ #else # define alloca(n) malloc (n) # define freea(p) free (p) #endif /* For systems that distinguish between text and binary I/O. O_BINARY is usually declared in . */ #if !defined O_BINARY && defined _O_BINARY /* For MSC-compatible compilers. */ # define O_BINARY _O_BINARY # define O_TEXT _O_TEXT #endif #ifdef __BEOS__ /* BeOS 5 has O_BINARY and O_TEXT, but they have no effect. */ # undef O_BINARY # undef O_TEXT #endif /* On reasonable systems, binary I/O is the default. */ #ifndef O_BINARY # define O_BINARY 0 #endif /* Prototypes for local functions. Needed to ensure compiler checking of function argument counts despite of K&R C function definition syntax. */ static const char *get_sysdep_segment_value PARAMS ((const char *name)); /* We need a sign, whether a new catalog was loaded, which can be associated with all translations. This is important if the translations are cached by one of GCC's features. */ int _nl_msg_cat_cntr; /* Expand a system dependent string segment. Return NULL if unsupported. */ static const char * get_sysdep_segment_value (name) const char *name; { /* Test for an ISO C 99 section 7.8.1 format string directive. Syntax: P R I { d | i | o | u | x | X } { { | LEAST | FAST } { 8 | 16 | 32 | 64 } | MAX | PTR } */ /* We don't use a table of 14 times 6 'const char *' strings here, because data relocations cost startup time. */ if (name[0] == 'P' && name[1] == 'R' && name[2] == 'I') { if (name[3] == 'd' || name[3] == 'i' || name[3] == 'o' || name[3] == 'u' || name[3] == 'x' || name[3] == 'X') { if (name[4] == '8' && name[5] == '\0') { if (name[3] == 'd') return PRId8; if (name[3] == 'i') return PRIi8; if (name[3] == 'o') return PRIo8; if (name[3] == 'u') return PRIu8; if (name[3] == 'x') return PRIx8; if (name[3] == 'X') return PRIX8; abort (); } if (name[4] == '1' && name[5] == '6' && name[6] == '\0') { if (name[3] == 'd') return PRId16; if (name[3] == 'i') return PRIi16; if (name[3] == 'o') return PRIo16; if (name[3] == 'u') return PRIu16; if (name[3] == 'x') return PRIx16; if (name[3] == 'X') return PRIX16; abort (); } if (name[4] == '3' && name[5] == '2' && name[6] == '\0') { if (name[3] == 'd') return PRId32; if (name[3] == 'i') return PRIi32; if (name[3] == 'o') return PRIo32; if (name[3] == 'u') return PRIu32; if (name[3] == 'x') return PRIx32; if (name[3] == 'X') return PRIX32; abort (); } if (name[4] == '6' && name[5] == '4' && name[6] == '\0') { if (name[3] == 'd') return PRId64; if (name[3] == 'i') return PRIi64; if (name[3] == 'o') return PRIo64; if (name[3] == 'u') return PRIu64; if (name[3] == 'x') return PRIx64; if (name[3] == 'X') return PRIX64; abort (); } if (name[4] == 'L' && name[5] == 'E' && name[6] == 'A' && name[7] == 'S' && name[8] == 'T') { if (name[9] == '8' && name[10] == '\0') { if (name[3] == 'd') return PRIdLEAST8; if (name[3] == 'i') return PRIiLEAST8; if (name[3] == 'o') return PRIoLEAST8; if (name[3] == 'u') return PRIuLEAST8; if (name[3] == 'x') return PRIxLEAST8; if (name[3] == 'X') return PRIXLEAST8; abort (); } if (name[9] == '1' && name[10] == '6' && name[11] == '\0') { if (name[3] == 'd') return PRIdLEAST16; if (name[3] == 'i') return PRIiLEAST16; if (name[3] == 'o') return PRIoLEAST16; if (name[3] == 'u') return PRIuLEAST16; if (name[3] == 'x') return PRIxLEAST16; if (name[3] == 'X') return PRIXLEAST16; abort (); } if (name[9] == '3' && name[10] == '2' && name[11] == '\0') { if (name[3] == 'd') return PRIdLEAST32; if (name[3] == 'i') return PRIiLEAST32; if (name[3] == 'o') return PRIoLEAST32; if (name[3] == 'u') return PRIuLEAST32; if (name[3] == 'x') return PRIxLEAST32; if (name[3] == 'X') return PRIXLEAST32; abort (); } if (name[9] == '6' && name[10] == '4' && name[11] == '\0') { if (name[3] == 'd') return PRIdLEAST64; if (name[3] == 'i') return PRIiLEAST64; if (name[3] == 'o') return PRIoLEAST64; if (name[3] == 'u') return PRIuLEAST64; if (name[3] == 'x') return PRIxLEAST64; if (name[3] == 'X') return PRIXLEAST64; abort (); } } if (name[4] == 'F' && name[5] == 'A' && name[6] == 'S' && name[7] == 'T') { if (name[8] == '8' && name[9] == '\0') { if (name[3] == 'd') return PRIdFAST8; if (name[3] == 'i') return PRIiFAST8; if (name[3] == 'o') return PRIoFAST8; if (name[3] == 'u') return PRIuFAST8; if (name[3] == 'x') return PRIxFAST8; if (name[3] == 'X') return PRIXFAST8; abort (); } if (name[8] == '1' && name[9] == '6' && name[10] == '\0') { if (name[3] == 'd') return PRIdFAST16; if (name[3] == 'i') return PRIiFAST16; if (name[3] == 'o') return PRIoFAST16; if (name[3] == 'u') return PRIuFAST16; if (name[3] == 'x') return PRIxFAST16; if (name[3] == 'X') return PRIXFAST16; abort (); } if (name[8] == '3' && name[9] == '2' && name[10] == '\0') { if (name[3] == 'd') return PRIdFAST32; if (name[3] == 'i') return PRIiFAST32; if (name[3] == 'o') return PRIoFAST32; if (name[3] == 'u') return PRIuFAST32; if (name[3] == 'x') return PRIxFAST32; if (name[3] == 'X') return PRIXFAST32; abort (); } if (name[8] == '6' && name[9] == '4' && name[10] == '\0') { if (name[3] == 'd') return PRIdFAST64; if (name[3] == 'i') return PRIiFAST64; if (name[3] == 'o') return PRIoFAST64; if (name[3] == 'u') return PRIuFAST64; if (name[3] == 'x') return PRIxFAST64; if (name[3] == 'X') return PRIXFAST64; abort (); } } if (name[4] == 'M' && name[5] == 'A' && name[6] == 'X' && name[7] == '\0') { if (name[3] == 'd') return PRIdMAX; if (name[3] == 'i') return PRIiMAX; if (name[3] == 'o') return PRIoMAX; if (name[3] == 'u') return PRIuMAX; if (name[3] == 'x') return PRIxMAX; if (name[3] == 'X') return PRIXMAX; abort (); } if (name[4] == 'P' && name[5] == 'T' && name[6] == 'R' && name[7] == '\0') { if (name[3] == 'd') return PRIdPTR; if (name[3] == 'i') return PRIiPTR; if (name[3] == 'o') return PRIoPTR; if (name[3] == 'u') return PRIuPTR; if (name[3] == 'x') return PRIxPTR; if (name[3] == 'X') return PRIXPTR; abort (); } } } /* Other system dependent strings are not valid. */ return NULL; } /* Initialize the codeset dependent parts of an opened message catalog. Return the header entry. */ const char * internal_function _nl_init_domain_conv (domain_file, domain, domainbinding) struct loaded_l10nfile *domain_file; struct loaded_domain *domain; struct binding *domainbinding; { /* Find out about the character set the file is encoded with. This can be found (in textual form) in the entry "". If this entry does not exist or if this does not contain the `charset=' information, we will assume the charset matches the one the current locale and we don't have to perform any conversion. */ char *nullentry; size_t nullentrylen; /* Preinitialize fields, to avoid recursion during _nl_find_msg. */ domain->codeset_cntr = (domainbinding != NULL ? domainbinding->codeset_cntr : 0); #ifdef _LIBC domain->conv = (__gconv_t) -1; #else # if HAVE_ICONV domain->conv = (iconv_t) -1; # endif #endif domain->conv_tab = NULL; /* Get the header entry. */ nullentry = _nl_find_msg (domain_file, domainbinding, "", &nullentrylen); if (nullentry != NULL) { #if defined _LIBC || HAVE_ICONV const char *charsetstr; charsetstr = strstr (nullentry, "charset="); if (charsetstr != NULL) { size_t len; char *charset; const char *outcharset; charsetstr += strlen ("charset="); len = strcspn (charsetstr, " \t\n"); charset = (char *) alloca (len + 1); # if defined _LIBC || HAVE_MEMPCPY *((char *) mempcpy (charset, charsetstr, len)) = '\0'; # else memcpy (charset, charsetstr, len); charset[len] = '\0'; # endif /* The output charset should normally be determined by the locale. But sometimes the locale is not used or not correctly set up, so we provide a possibility for the user to override this. Moreover, the value specified through bind_textdomain_codeset overrides both. */ if (domainbinding != NULL && domainbinding->codeset != NULL) outcharset = domainbinding->codeset; else { outcharset = getenv ("OUTPUT_CHARSET"); if (outcharset == NULL || outcharset[0] == '\0') { # ifdef _LIBC outcharset = _NL_CURRENT (LC_CTYPE, CODESET); # else # if HAVE_ICONV extern const char *locale_charset PARAMS ((void)); outcharset = locale_charset (); # endif # endif } } # ifdef _LIBC /* We always want to use transliteration. */ outcharset = norm_add_slashes (outcharset, "TRANSLIT"); charset = norm_add_slashes (charset, NULL); if (__gconv_open (outcharset, charset, &domain->conv, GCONV_AVOID_NOCONV) != __GCONV_OK) domain->conv = (__gconv_t) -1; # else # if HAVE_ICONV /* When using GNU libc >= 2.2 or GNU libiconv >= 1.5, we want to use transliteration. */ # if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2) || __GLIBC__ > 2 \ || _LIBICONV_VERSION >= 0x0105 if (strchr (outcharset, '/') == NULL) { char *tmp; len = strlen (outcharset); tmp = (char *) alloca (len + 10 + 1); memcpy (tmp, outcharset, len); memcpy (tmp + len, "//TRANSLIT", 10 + 1); outcharset = tmp; domain->conv = iconv_open (outcharset, charset); freea (outcharset); } else # endif domain->conv = iconv_open (outcharset, charset); # endif # endif freea (charset); } #endif /* _LIBC || HAVE_ICONV */ } return nullentry; } /* Frees the codeset dependent parts of an opened message catalog. */ void internal_function _nl_free_domain_conv (domain) struct loaded_domain *domain; { if (domain->conv_tab != NULL && domain->conv_tab != (char **) -1) free (domain->conv_tab); #ifdef _LIBC if (domain->conv != (__gconv_t) -1) __gconv_close (domain->conv); #else # if HAVE_ICONV if (domain->conv != (iconv_t) -1) iconv_close (domain->conv); # endif #endif } /* Load the message catalogs specified by FILENAME. If it is no valid message catalog do nothing. */ void internal_function _nl_load_domain (domain_file, domainbinding) struct loaded_l10nfile *domain_file; struct binding *domainbinding; { int fd; size_t size; #ifdef _LIBC struct stat64 st; #else struct stat st; #endif struct mo_file_header *data = (struct mo_file_header *) -1; int use_mmap = 0; struct loaded_domain *domain; int revision; const char *nullentry; domain_file->decided = 1; domain_file->data = NULL; /* Note that it would be useless to store domainbinding in domain_file because domainbinding might be == NULL now but != NULL later (after a call to bind_textdomain_codeset). */ /* If the record does not represent a valid locale the FILENAME might be NULL. This can happen when according to the given specification the locale file name is different for XPG and CEN syntax. */ if (domain_file->filename == NULL) return; /* Try to open the addressed file. */ fd = open (domain_file->filename, O_RDONLY | O_BINARY); if (fd == -1) return; /* We must know about the size of the file. */ if ( #ifdef _LIBC __builtin_expect (fstat64 (fd, &st) != 0, 0) #else __builtin_expect (fstat (fd, &st) != 0, 0) #endif || __builtin_expect ((size = (size_t) st.st_size) != st.st_size, 0) || __builtin_expect (size < sizeof (struct mo_file_header), 0)) { /* Something went wrong. */ close (fd); return; } #ifdef HAVE_MMAP /* Now we are ready to load the file. If mmap() is available we try this first. If not available or it failed we try to load it. */ data = (struct mo_file_header *) mmap (NULL, size, PROT_READ, MAP_PRIVATE, fd, 0); if (__builtin_expect (data != (struct mo_file_header *) -1, 1)) { /* mmap() call was successful. */ close (fd); use_mmap = 1; } #endif /* If the data is not yet available (i.e. mmap'ed) we try to load it manually. */ if (data == (struct mo_file_header *) -1) { size_t to_read; char *read_ptr; data = (struct mo_file_header *) malloc (size); if (data == NULL) return; to_read = size; read_ptr = (char *) data; do { long int nb = (long int) read (fd, read_ptr, to_read); if (nb <= 0) { #ifdef EINTR if (nb == -1 && errno == EINTR) continue; #endif close (fd); return; } read_ptr += nb; to_read -= nb; } while (to_read > 0); close (fd); } /* Using the magic number we can test whether it really is a message catalog file. */ if (__builtin_expect (data->magic != _MAGIC && data->magic != _MAGIC_SWAPPED, 0)) { /* The magic number is wrong: not a message catalog file. */ #ifdef HAVE_MMAP if (use_mmap) munmap ((caddr_t) data, size); else #endif free (data); return; } domain = (struct loaded_domain *) malloc (sizeof (struct loaded_domain)); if (domain == NULL) return; domain_file->data = domain; domain->data = (char *) data; domain->use_mmap = use_mmap; domain->mmap_size = size; domain->must_swap = data->magic != _MAGIC; domain->malloced = NULL; /* Fill in the information about the available tables. */ revision = W (domain->must_swap, data->revision); /* We support only the major revision 0. */ switch (revision >> 16) { case 0: domain->nstrings = W (domain->must_swap, data->nstrings); domain->orig_tab = (const struct string_desc *) ((char *) data + W (domain->must_swap, data->orig_tab_offset)); domain->trans_tab = (const struct string_desc *) ((char *) data + W (domain->must_swap, data->trans_tab_offset)); domain->hash_size = W (domain->must_swap, data->hash_tab_size); domain->hash_tab = (domain->hash_size > 2 ? (const nls_uint32 *) ((char *) data + W (domain->must_swap, data->hash_tab_offset)) : NULL); domain->must_swap_hash_tab = domain->must_swap; /* Now dispatch on the minor revision. */ switch (revision & 0xffff) { case 0: domain->n_sysdep_strings = 0; domain->orig_sysdep_tab = NULL; domain->trans_sysdep_tab = NULL; break; case 1: default: { nls_uint32 n_sysdep_strings; if (domain->hash_tab == NULL) /* This is invalid. These minor revisions need a hash table. */ goto invalid; n_sysdep_strings = W (domain->must_swap, data->n_sysdep_strings); if (n_sysdep_strings > 0) { nls_uint32 n_sysdep_segments; const struct sysdep_segment *sysdep_segments; const char **sysdep_segment_values; const nls_uint32 *orig_sysdep_tab; const nls_uint32 *trans_sysdep_tab; size_t memneed; char *mem; struct sysdep_string_desc *inmem_orig_sysdep_tab; struct sysdep_string_desc *inmem_trans_sysdep_tab; nls_uint32 *inmem_hash_tab; unsigned int i; /* Get the values of the system dependent segments. */ n_sysdep_segments = W (domain->must_swap, data->n_sysdep_segments); sysdep_segments = (const struct sysdep_segment *) ((char *) data + W (domain->must_swap, data->sysdep_segments_offset)); sysdep_segment_values = alloca (n_sysdep_segments * sizeof (const char *)); for (i = 0; i < n_sysdep_segments; i++) { const char *name = (char *) data + W (domain->must_swap, sysdep_segments[i].offset); nls_uint32 namelen = W (domain->must_swap, sysdep_segments[i].length); if (!(namelen > 0 && name[namelen - 1] == '\0')) { freea (sysdep_segment_values); goto invalid; } sysdep_segment_values[i] = get_sysdep_segment_value (name); } orig_sysdep_tab = (const nls_uint32 *) ((char *) data + W (domain->must_swap, data->orig_sysdep_tab_offset)); trans_sysdep_tab = (const nls_uint32 *) ((char *) data + W (domain->must_swap, data->trans_sysdep_tab_offset)); /* Compute the amount of additional memory needed for the system dependent strings and the augmented hash table. */ memneed = 2 * n_sysdep_strings * sizeof (struct sysdep_string_desc) + domain->hash_size * sizeof (nls_uint32); for (i = 0; i < 2 * n_sysdep_strings; i++) { const struct sysdep_string *sysdep_string = (const struct sysdep_string *) ((char *) data + W (domain->must_swap, i < n_sysdep_strings ? orig_sysdep_tab[i] : trans_sysdep_tab[i - n_sysdep_strings])); size_t need = 0; const struct segment_pair *p = sysdep_string->segments; if (W (domain->must_swap, p->sysdepref) != SEGMENTS_END) for (p = sysdep_string->segments;; p++) { nls_uint32 sysdepref; need += W (domain->must_swap, p->segsize); sysdepref = W (domain->must_swap, p->sysdepref); if (sysdepref == SEGMENTS_END) break; if (sysdepref >= n_sysdep_segments) { /* Invalid. */ freea (sysdep_segment_values); goto invalid; } need += strlen (sysdep_segment_values[sysdepref]); } memneed += need; } /* Allocate additional memory. */ mem = (char *) malloc (memneed); if (mem == NULL) goto invalid; domain->malloced = mem; inmem_orig_sysdep_tab = (struct sysdep_string_desc *) mem; mem += n_sysdep_strings * sizeof (struct sysdep_string_desc); inmem_trans_sysdep_tab = (struct sysdep_string_desc *) mem; mem += n_sysdep_strings * sizeof (struct sysdep_string_desc); inmem_hash_tab = (nls_uint32 *) mem; mem += domain->hash_size * sizeof (nls_uint32); /* Compute the system dependent strings. */ for (i = 0; i < 2 * n_sysdep_strings; i++) { const struct sysdep_string *sysdep_string = (const struct sysdep_string *) ((char *) data + W (domain->must_swap, i < n_sysdep_strings ? orig_sysdep_tab[i] : trans_sysdep_tab[i - n_sysdep_strings])); const char *static_segments = (char *) data + W (domain->must_swap, sysdep_string->offset); const struct segment_pair *p = sysdep_string->segments; /* Concatenate the segments, and fill inmem_orig_sysdep_tab[i] (for i < n_sysdep_strings) and inmem_trans_sysdep_tab[i-n_sysdep_strings] (for i >= n_sysdep_strings). */ if (W (domain->must_swap, p->sysdepref) == SEGMENTS_END) { /* Only one static segment. */ inmem_orig_sysdep_tab[i].length = W (domain->must_swap, p->segsize); inmem_orig_sysdep_tab[i].pointer = static_segments; } else { inmem_orig_sysdep_tab[i].pointer = mem; for (p = sysdep_string->segments;; p++) { nls_uint32 segsize = W (domain->must_swap, p->segsize); nls_uint32 sysdepref = W (domain->must_swap, p->sysdepref); size_t n; if (segsize > 0) { memcpy (mem, static_segments, segsize); mem += segsize; static_segments += segsize; } if (sysdepref == SEGMENTS_END) break; n = strlen (sysdep_segment_values[sysdepref]); memcpy (mem, sysdep_segment_values[sysdepref], n); mem += n; } inmem_orig_sysdep_tab[i].length = mem - inmem_orig_sysdep_tab[i].pointer; } } /* Compute the augmented hash table. */ for (i = 0; i < domain->hash_size; i++) inmem_hash_tab[i] = W (domain->must_swap_hash_tab, domain->hash_tab[i]); for (i = 0; i < n_sysdep_strings; i++) { const char *msgid = inmem_orig_sysdep_tab[i].pointer; nls_uint32 hash_val = hash_string (msgid); nls_uint32 idx = hash_val % domain->hash_size; nls_uint32 incr = 1 + (hash_val % (domain->hash_size - 2)); for (;;) { if (inmem_hash_tab[idx] == 0) { /* Hash table entry is empty. Use it. */ inmem_hash_tab[idx] = 1 + domain->nstrings + i; break; } if (idx >= domain->hash_size - incr) idx -= domain->hash_size - incr; else idx += incr; } } freea (sysdep_segment_values); domain->n_sysdep_strings = n_sysdep_strings; domain->orig_sysdep_tab = inmem_orig_sysdep_tab; domain->trans_sysdep_tab = inmem_trans_sysdep_tab; domain->hash_tab = inmem_hash_tab; domain->must_swap_hash_tab = 0; } else { domain->n_sysdep_strings = 0; domain->orig_sysdep_tab = NULL; domain->trans_sysdep_tab = NULL; } } break; } break; default: /* This is an invalid revision. */ invalid: /* This is an invalid .mo file. */ if (domain->malloced) free (domain->malloced); #ifdef HAVE_MMAP if (use_mmap) munmap ((caddr_t) data, size); else #endif free (data); free (domain); domain_file->data = NULL; return; } /* Now initialize the character set converter from the character set the file is encoded with (found in the header entry) to the domain's specified character set or the locale's character set. */ nullentry = _nl_init_domain_conv (domain_file, domain, domainbinding); /* Also look for a plural specification. */ EXTRACT_PLURAL_EXPRESSION (nullentry, &domain->plural, &domain->nplurals); } #ifdef _LIBC void internal_function _nl_unload_domain (domain) struct loaded_domain *domain; { if (domain->plural != &__gettext_germanic_plural) __gettext_free_exp (domain->plural); _nl_free_domain_conv (domain); if (domain->malloced) free (domain->malloced); # ifdef _POSIX_MAPPED_FILES if (domain->use_mmap) munmap ((caddr_t) domain->data, domain->mmap_size); else # endif /* _POSIX_MAPPED_FILES */ free ((void *) domain->data); free (domain); } #endif tvtime-1.0.11/intl/ref-del.sin0000664000175000017500000000202412354244126013025 00000000000000# Remove this package from a list of references stored in a text file. # # Copyright (C) 2000 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library General Public License as published # by the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. # # Written by Bruno Haible . # /^# Packages using this file: / { s/# Packages using this file:// s/ @PACKAGE@ / / s/^/# Packages using this file:/ } tvtime-1.0.11/intl/eval-plural.h0000664000175000017500000000554612354244126013405 00000000000000/* Plural expression evaluation. Copyright (C) 2000-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef STATIC #define STATIC static #endif /* Evaluate the plural expression and return an index value. */ STATIC unsigned long int plural_eval PARAMS ((struct expression *pexp, unsigned long int n)) internal_function; STATIC unsigned long int internal_function plural_eval (pexp, n) struct expression *pexp; unsigned long int n; { switch (pexp->nargs) { case 0: switch (pexp->operation) { case var: return n; case num: return pexp->val.num; default: break; } /* NOTREACHED */ break; case 1: { /* pexp->operation must be lnot. */ unsigned long int arg = plural_eval (pexp->val.args[0], n); return ! arg; } case 2: { unsigned long int leftarg = plural_eval (pexp->val.args[0], n); if (pexp->operation == lor) return leftarg || plural_eval (pexp->val.args[1], n); else if (pexp->operation == land) return leftarg && plural_eval (pexp->val.args[1], n); else { unsigned long int rightarg = plural_eval (pexp->val.args[1], n); switch (pexp->operation) { case mult: return leftarg * rightarg; case divide: #if !INTDIV0_RAISES_SIGFPE if (rightarg == 0) raise (SIGFPE); #endif return leftarg / rightarg; case module: #if !INTDIV0_RAISES_SIGFPE if (rightarg == 0) raise (SIGFPE); #endif return leftarg % rightarg; case plus: return leftarg + rightarg; case minus: return leftarg - rightarg; case less_than: return leftarg < rightarg; case greater_than: return leftarg > rightarg; case less_or_equal: return leftarg <= rightarg; case greater_or_equal: return leftarg >= rightarg; case equal: return leftarg == rightarg; case not_equal: return leftarg != rightarg; default: break; } } /* NOTREACHED */ break; } case 3: { /* pexp->operation must be qmop. */ unsigned long int boolarg = plural_eval (pexp->val.args[0], n); return plural_eval (pexp->val.args[boolarg ? 1 : 2], n); } } /* NOTREACHED */ return 0; } tvtime-1.0.11/intl/dngettext.c0000664000175000017500000000362712354244126013160 00000000000000/* Implementation of the dngettext(3) function. Copyright (C) 1995-1997, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DNGETTEXT __dngettext # define DCNGETTEXT __dcngettext #else # define DNGETTEXT libintl_dngettext # define DCNGETTEXT libintl_dcngettext #endif /* Look up MSGID in the DOMAINNAME message catalog of the current LC_MESSAGES locale and skip message according to the plural form. */ char * DNGETTEXT (domainname, msgid1, msgid2, n) const char *domainname; const char *msgid1; const char *msgid2; unsigned long int n; { return DCNGETTEXT (domainname, msgid1, msgid2, n, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__dngettext, dngettext); #endif tvtime-1.0.11/intl/l10nflist.c0000664000175000017500000003052012354244126012756 00000000000000/* Copyright (C) 1995-1999, 2000, 2001, 2002 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Tell glibc's to provide a prototype for stpcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #if defined _LIBC || defined HAVE_ARGZ_H # include #endif #include #include #include #include "loadinfo.h" /* On some strange systems still no definition of NULL is found. Sigh! */ #ifndef NULL # if defined __STDC__ && __STDC__ # define NULL ((void *) 0) # else # define NULL 0 # endif #endif /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ANSI C functions. This is required by the standard because some ANSI C functions will require linking with this object file and the name space must not be polluted. */ # ifndef stpcpy # define stpcpy(dest, src) __stpcpy(dest, src) # endif #else # ifndef HAVE_STPCPY static char *stpcpy PARAMS ((char *dest, const char *src)); # endif #endif /* Pathname support. ISSLASH(C) tests whether C is a directory separator character. IS_ABSOLUTE_PATH(P) tests whether P is an absolute path. If it is not, it may be concatenated to a directory pathname. */ #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') # define HAS_DEVICE(P) \ ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \ && (P)[1] == ':') # define IS_ABSOLUTE_PATH(P) (ISSLASH ((P)[0]) || HAS_DEVICE (P)) #else /* Unix */ # define ISSLASH(C) ((C) == '/') # define IS_ABSOLUTE_PATH(P) ISSLASH ((P)[0]) #endif /* Define function which are usually not available. */ #if !defined _LIBC && !defined HAVE___ARGZ_COUNT /* Returns the number of strings in ARGZ. */ static size_t argz_count__ PARAMS ((const char *argz, size_t len)); static size_t argz_count__ (argz, len) const char *argz; size_t len; { size_t count = 0; while (len > 0) { size_t part_len = strlen (argz); argz += part_len + 1; len -= part_len + 1; count++; } return count; } # undef __argz_count # define __argz_count(argz, len) argz_count__ (argz, len) #else # ifdef _LIBC # define __argz_count(argz, len) INTUSE(__argz_count) (argz, len) # endif #endif /* !_LIBC && !HAVE___ARGZ_COUNT */ #if !defined _LIBC && !defined HAVE___ARGZ_STRINGIFY /* Make '\0' separated arg vector ARGZ printable by converting all the '\0's except the last into the character SEP. */ static void argz_stringify__ PARAMS ((char *argz, size_t len, int sep)); static void argz_stringify__ (argz, len, sep) char *argz; size_t len; int sep; { while (len > 0) { size_t part_len = strlen (argz); argz += part_len; len -= part_len + 1; if (len > 0) *argz++ = sep; } } # undef __argz_stringify # define __argz_stringify(argz, len, sep) argz_stringify__ (argz, len, sep) #else # ifdef _LIBC # define __argz_stringify(argz, len, sep) \ INTUSE(__argz_stringify) (argz, len, sep) # endif #endif /* !_LIBC && !HAVE___ARGZ_STRINGIFY */ #if !defined _LIBC && !defined HAVE___ARGZ_NEXT static char *argz_next__ PARAMS ((char *argz, size_t argz_len, const char *entry)); static char * argz_next__ (argz, argz_len, entry) char *argz; size_t argz_len; const char *entry; { if (entry) { if (entry < argz + argz_len) entry = strchr (entry, '\0') + 1; return entry >= argz + argz_len ? NULL : (char *) entry; } else if (argz_len > 0) return argz; else return 0; } # undef __argz_next # define __argz_next(argz, len, entry) argz_next__ (argz, len, entry) #endif /* !_LIBC && !HAVE___ARGZ_NEXT */ /* Return number of bits set in X. */ static int pop PARAMS ((int x)); static inline int pop (x) int x; { /* We assume that no more than 16 bits are used. */ x = ((x & ~0x5555) >> 1) + (x & 0x5555); x = ((x & ~0x3333) >> 2) + (x & 0x3333); x = ((x >> 4) + x) & 0x0f0f; x = ((x >> 8) + x) & 0xff; return x; } struct loaded_l10nfile * _nl_make_l10nflist (l10nfile_list, dirlist, dirlist_len, mask, language, territory, codeset, normalized_codeset, modifier, special, sponsor, revision, filename, do_allocate) struct loaded_l10nfile **l10nfile_list; const char *dirlist; size_t dirlist_len; int mask; const char *language; const char *territory; const char *codeset; const char *normalized_codeset; const char *modifier; const char *special; const char *sponsor; const char *revision; const char *filename; int do_allocate; { char *abs_filename; struct loaded_l10nfile **lastp; struct loaded_l10nfile *retval; char *cp; size_t dirlist_count; size_t entries; int cnt; /* If LANGUAGE contains an absolute directory specification, we ignore DIRLIST. */ if (IS_ABSOLUTE_PATH (language)) dirlist_len = 0; /* Allocate room for the full file name. */ abs_filename = (char *) malloc (dirlist_len + strlen (language) + ((mask & TERRITORY) != 0 ? strlen (territory) + 1 : 0) + ((mask & XPG_CODESET) != 0 ? strlen (codeset) + 1 : 0) + ((mask & XPG_NORM_CODESET) != 0 ? strlen (normalized_codeset) + 1 : 0) + (((mask & XPG_MODIFIER) != 0 || (mask & CEN_AUDIENCE) != 0) ? strlen (modifier) + 1 : 0) + ((mask & CEN_SPECIAL) != 0 ? strlen (special) + 1 : 0) + (((mask & CEN_SPONSOR) != 0 || (mask & CEN_REVISION) != 0) ? (1 + ((mask & CEN_SPONSOR) != 0 ? strlen (sponsor) : 0) + ((mask & CEN_REVISION) != 0 ? strlen (revision) + 1 : 0)) : 0) + 1 + strlen (filename) + 1); if (abs_filename == NULL) return NULL; /* Construct file name. */ cp = abs_filename; if (dirlist_len > 0) { memcpy (cp, dirlist, dirlist_len); __argz_stringify (cp, dirlist_len, PATH_SEPARATOR); cp += dirlist_len; cp[-1] = '/'; } cp = stpcpy (cp, language); if ((mask & TERRITORY) != 0) { *cp++ = '_'; cp = stpcpy (cp, territory); } if ((mask & XPG_CODESET) != 0) { *cp++ = '.'; cp = stpcpy (cp, codeset); } if ((mask & XPG_NORM_CODESET) != 0) { *cp++ = '.'; cp = stpcpy (cp, normalized_codeset); } if ((mask & (XPG_MODIFIER | CEN_AUDIENCE)) != 0) { /* This component can be part of both syntaces but has different leading characters. For CEN we use `+', else `@'. */ *cp++ = (mask & CEN_AUDIENCE) != 0 ? '+' : '@'; cp = stpcpy (cp, modifier); } if ((mask & CEN_SPECIAL) != 0) { *cp++ = '+'; cp = stpcpy (cp, special); } if ((mask & (CEN_SPONSOR | CEN_REVISION)) != 0) { *cp++ = ','; if ((mask & CEN_SPONSOR) != 0) cp = stpcpy (cp, sponsor); if ((mask & CEN_REVISION) != 0) { *cp++ = '_'; cp = stpcpy (cp, revision); } } *cp++ = '/'; stpcpy (cp, filename); /* Look in list of already loaded domains whether it is already available. */ lastp = l10nfile_list; for (retval = *l10nfile_list; retval != NULL; retval = retval->next) if (retval->filename != NULL) { int compare = strcmp (retval->filename, abs_filename); if (compare == 0) /* We found it! */ break; if (compare < 0) { /* It's not in the list. */ retval = NULL; break; } lastp = &retval->next; } if (retval != NULL || do_allocate == 0) { free (abs_filename); return retval; } dirlist_count = (dirlist_len > 0 ? __argz_count (dirlist, dirlist_len) : 1); /* Allocate a new loaded_l10nfile. */ retval = (struct loaded_l10nfile *) malloc (sizeof (*retval) + (((dirlist_count << pop (mask)) + (dirlist_count > 1 ? 1 : 0)) * sizeof (struct loaded_l10nfile *))); if (retval == NULL) return NULL; retval->filename = abs_filename; /* We set retval->data to NULL here; it is filled in later. Setting retval->decided to 1 here means that retval does not correspond to a real file (dirlist_count > 1) or is not worth looking up (if an unnormalized codeset was specified). */ retval->decided = (dirlist_count > 1 || ((mask & XPG_CODESET) != 0 && (mask & XPG_NORM_CODESET) != 0)); retval->data = NULL; retval->next = *lastp; *lastp = retval; entries = 0; /* Recurse to fill the inheritance list of RETVAL. If the DIRLIST is a real list (i.e. DIRLIST_COUNT > 1), the RETVAL entry does not correspond to a real file; retval->filename contains colons. In this case we loop across all elements of DIRLIST and across all bit patterns dominated by MASK. If the DIRLIST is a single directory or entirely redundant (i.e. DIRLIST_COUNT == 1), we loop across all bit patterns dominated by MASK, excluding MASK itself. In either case, we loop down from MASK to 0. This has the effect that the extra bits in the locale name are dropped in this order: first the modifier, then the territory, then the codeset, then the normalized_codeset. */ for (cnt = dirlist_count > 1 ? mask : mask - 1; cnt >= 0; --cnt) if ((cnt & ~mask) == 0 && ((cnt & CEN_SPECIFIC) == 0 || (cnt & XPG_SPECIFIC) == 0) && ((cnt & XPG_CODESET) == 0 || (cnt & XPG_NORM_CODESET) == 0)) { if (dirlist_count > 1) { /* Iterate over all elements of the DIRLIST. */ char *dir = NULL; while ((dir = __argz_next ((char *) dirlist, dirlist_len, dir)) != NULL) retval->successor[entries++] = _nl_make_l10nflist (l10nfile_list, dir, strlen (dir) + 1, cnt, language, territory, codeset, normalized_codeset, modifier, special, sponsor, revision, filename, 1); } else retval->successor[entries++] = _nl_make_l10nflist (l10nfile_list, dirlist, dirlist_len, cnt, language, territory, codeset, normalized_codeset, modifier, special, sponsor, revision, filename, 1); } retval->successor[entries] = NULL; return retval; } /* Normalize codeset name. There is no standard for the codeset names. Normalization allows the user to use any of the common names. The return value is dynamically allocated and has to be freed by the caller. */ const char * _nl_normalize_codeset (codeset, name_len) const char *codeset; size_t name_len; { int len = 0; int only_digit = 1; char *retval; char *wp; size_t cnt; for (cnt = 0; cnt < name_len; ++cnt) if (isalnum ((unsigned char) codeset[cnt])) { ++len; if (isalpha ((unsigned char) codeset[cnt])) only_digit = 0; } retval = (char *) malloc ((only_digit ? 3 : 0) + len + 1); if (retval != NULL) { if (only_digit) wp = stpcpy (retval, "iso"); else wp = retval; for (cnt = 0; cnt < name_len; ++cnt) if (isalpha ((unsigned char) codeset[cnt])) *wp++ = tolower ((unsigned char) codeset[cnt]); else if (isdigit ((unsigned char) codeset[cnt])) *wp++ = codeset[cnt]; *wp = '\0'; } return (const char *) retval; } /* @@ begin of epilog @@ */ /* We don't want libintl.a to depend on any other library. So we avoid the non-standard function stpcpy. In GNU C Library this function is available, though. Also allow the symbol HAVE_STPCPY to be defined. */ #if !_LIBC && !HAVE_STPCPY static char * stpcpy (dest, src) char *dest; const char *src; { while ((*dest++ = *src++) != '\0') /* Do nothing. */ ; return dest - 1; } #endif tvtime-1.0.11/intl/os2compat.h0000664000175000017500000000302212354244126013053 00000000000000/* OS/2 compatibility defines. This file is intended to be included from config.h Copyright (C) 2001-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* When included from os2compat.h we need all the original definitions */ #ifndef OS2_AWARE #undef LIBDIR #define LIBDIR _nlos2_libdir extern char *_nlos2_libdir; #undef LOCALEDIR #define LOCALEDIR _nlos2_localedir extern char *_nlos2_localedir; #undef LOCALE_ALIAS_PATH #define LOCALE_ALIAS_PATH _nlos2_localealiaspath extern char *_nlos2_localealiaspath; #endif #undef HAVE_STRCASECMP #define HAVE_STRCASECMP 1 #define strcasecmp stricmp #define strncasecmp strnicmp /* We have our own getenv() which works even if library is compiled as DLL */ #define getenv _nl_getenv /* Older versions of gettext used -1 as the value of LC_MESSAGES */ #define LC_MESSAGES_COMPAT (-1) tvtime-1.0.11/intl/loadinfo.h0000664000175000017500000001373712354244126012755 00000000000000/* Copyright (C) 1996-1999, 2000-2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _LOADINFO_H #define _LOADINFO_H 1 /* Declarations of locale dependent catalog lookup functions. Implemented in localealias.c Possibly replace a locale name by another. explodename.c Split a locale name into its various fields. l10nflist.c Generate a list of filenames of possible message catalogs. finddomain.c Find and open the relevant message catalogs. The main function _nl_find_domain() in finddomain.c is declared in gettextP.h. */ #ifndef PARAMS # if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES # define PARAMS(args) args # else # define PARAMS(args) () # endif #endif #ifndef internal_function # define internal_function #endif /* Tell the compiler when a conditional or integer expression is almost always true or almost always false. */ #ifndef HAVE_BUILTIN_EXPECT # define __builtin_expect(expr, val) (expr) #endif /* Separator in PATH like lists of pathnames. */ #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define PATH_SEPARATOR ';' #else /* Unix */ # define PATH_SEPARATOR ':' #endif /* Encoding of locale name parts. */ #define CEN_REVISION 1 #define CEN_SPONSOR 2 #define CEN_SPECIAL 4 #define XPG_NORM_CODESET 8 #define XPG_CODESET 16 #define TERRITORY 32 #define CEN_AUDIENCE 64 #define XPG_MODIFIER 128 #define CEN_SPECIFIC (CEN_REVISION|CEN_SPONSOR|CEN_SPECIAL|CEN_AUDIENCE) #define XPG_SPECIFIC (XPG_CODESET|XPG_NORM_CODESET|XPG_MODIFIER) struct loaded_l10nfile { const char *filename; int decided; const void *data; struct loaded_l10nfile *next; struct loaded_l10nfile *successor[1]; }; /* Normalize codeset name. There is no standard for the codeset names. Normalization allows the user to use any of the common names. The return value is dynamically allocated and has to be freed by the caller. */ extern const char *_nl_normalize_codeset PARAMS ((const char *codeset, size_t name_len)); /* Lookup a locale dependent file. *L10NFILE_LIST denotes a pool of lookup results of locale dependent files of the same kind, sorted in decreasing order of ->filename. DIRLIST and DIRLIST_LEN are an argz list of directories in which to look, containing at least one directory (i.e. DIRLIST_LEN > 0). MASK, LANGUAGE, TERRITORY, CODESET, NORMALIZED_CODESET, MODIFIER, SPECIAL, SPONSOR, REVISION are the pieces of the locale name, as produced by _nl_explode_name(). FILENAME is the filename suffix. The return value is the lookup result, either found in *L10NFILE_LIST, or - if DO_ALLOCATE is nonzero - freshly allocated, or possibly NULL. If the return value is non-NULL, it is added to *L10NFILE_LIST, and its ->next field denotes the chaining inside *L10NFILE_LIST, and furthermore its ->successor[] field contains a list of other lookup results from which this lookup result inherits. */ extern struct loaded_l10nfile * _nl_make_l10nflist PARAMS ((struct loaded_l10nfile **l10nfile_list, const char *dirlist, size_t dirlist_len, int mask, const char *language, const char *territory, const char *codeset, const char *normalized_codeset, const char *modifier, const char *special, const char *sponsor, const char *revision, const char *filename, int do_allocate)); /* Lookup the real locale name for a locale alias NAME, or NULL if NAME is not a locale alias (but possibly a real locale name). The return value is statically allocated and must not be freed. */ extern const char *_nl_expand_alias PARAMS ((const char *name)); /* Split a locale name NAME into its pieces: language, modifier, territory, codeset, special, sponsor, revision. NAME gets destructively modified: NUL bytes are inserted here and there. *LANGUAGE gets assigned NAME. Each of *MODIFIER, *TERRITORY, *CODESET, *SPECIAL, *SPONSOR, *REVISION gets assigned either a pointer into the old NAME string, or NULL. *NORMALIZED_CODESET gets assigned the expanded *CODESET, if it is different from *CODESET; this one is dynamically allocated and has to be freed by the caller. The return value is a bitmask, where each bit corresponds to one filled-in value: XPG_MODIFIER, CEN_AUDIENCE for *MODIFIER, TERRITORY for *TERRITORY, XPG_CODESET for *CODESET, XPG_NORM_CODESET for *NORMALIZED_CODESET, CEN_SPECIAL for *SPECIAL, CEN_SPONSOR for *SPONSOR, CEN_REVISION for *REVISION. */ extern int _nl_explode_name PARAMS ((char *name, const char **language, const char **modifier, const char **territory, const char **codeset, const char **normalized_codeset, const char **special, const char **sponsor, const char **revision)); /* Split a locale name NAME into a leading language part and all the rest. Return a pointer to the first character after the language, i.e. to the first byte of the rest. */ extern char *_nl_find_language PARAMS ((const char *name)); #endif /* loadinfo.h */ tvtime-1.0.11/intl/localcharset.h0000664000175000017500000000255712354244126013624 00000000000000/* Determine a canonical name for the current locale's character encoding. Copyright (C) 2000-2003 Free Software Foundation, Inc. This file is part of the GNU CHARSET Library. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _LOCALCHARSET_H #define _LOCALCHARSET_H #ifdef __cplusplus extern "C" { #endif /* Determine the current locale's character encoding, and canonicalize it into one of the canonical names listed in config.charset. The result must not be freed; it is statically allocated. If the canonical name cannot be determined, the result is a non-canonical name. */ extern const char * locale_charset (void); #ifdef __cplusplus } #endif #endif /* _LOCALCHARSET_H */ tvtime-1.0.11/intl/finddomain.c0000664000175000017500000001303312354244126013252 00000000000000/* Handle list of needed message catalogs Copyright (C) 1995-1999, 2000, 2001 Free Software Foundation, Inc. Written by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include #if defined HAVE_UNISTD_H || defined _LIBC # include #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* List of already loaded domains. */ static struct loaded_l10nfile *_nl_loaded_domains; /* Return a data structure describing the message catalog described by the DOMAINNAME and CATEGORY parameters with respect to the currently established bindings. */ struct loaded_l10nfile * internal_function _nl_find_domain (dirname, locale, domainname, domainbinding) const char *dirname; char *locale; const char *domainname; struct binding *domainbinding; { struct loaded_l10nfile *retval; const char *language; const char *modifier; const char *territory; const char *codeset; const char *normalized_codeset; const char *special; const char *sponsor; const char *revision; const char *alias_value; int mask; /* LOCALE can consist of up to four recognized parts for the XPG syntax: language[_territory[.codeset]][@modifier] and six parts for the CEN syntax: language[_territory][+audience][+special][,[sponsor][_revision]] Beside the first part all of them are allowed to be missing. If the full specified locale is not found, the less specific one are looked for. The various parts will be stripped off according to the following order: (1) revision (2) sponsor (3) special (4) codeset (5) normalized codeset (6) territory (7) audience/modifier */ /* If we have already tested for this locale entry there has to be one data set in the list of loaded domains. */ retval = _nl_make_l10nflist (&_nl_loaded_domains, dirname, strlen (dirname) + 1, 0, locale, NULL, NULL, NULL, NULL, NULL, NULL, NULL, domainname, 0); if (retval != NULL) { /* We know something about this locale. */ int cnt; if (retval->decided == 0) _nl_load_domain (retval, domainbinding); if (retval->data != NULL) return retval; for (cnt = 0; retval->successor[cnt] != NULL; ++cnt) { if (retval->successor[cnt]->decided == 0) _nl_load_domain (retval->successor[cnt], domainbinding); if (retval->successor[cnt]->data != NULL) break; } return cnt >= 0 ? retval : NULL; /* NOTREACHED */ } /* See whether the locale value is an alias. If yes its value *overwrites* the alias name. No test for the original value is done. */ alias_value = _nl_expand_alias (locale); if (alias_value != NULL) { #if defined _LIBC || defined HAVE_STRDUP locale = strdup (alias_value); if (locale == NULL) return NULL; #else size_t len = strlen (alias_value) + 1; locale = (char *) malloc (len); if (locale == NULL) return NULL; memcpy (locale, alias_value, len); #endif } /* Now we determine the single parts of the locale name. First look for the language. Termination symbols are `_' and `@' if we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */ mask = _nl_explode_name (locale, &language, &modifier, &territory, &codeset, &normalized_codeset, &special, &sponsor, &revision); /* Create all possible locale entries which might be interested in generalization. */ retval = _nl_make_l10nflist (&_nl_loaded_domains, dirname, strlen (dirname) + 1, mask, language, territory, codeset, normalized_codeset, modifier, special, sponsor, revision, domainname, 1); if (retval == NULL) /* This means we are out of core. */ return NULL; if (retval->decided == 0) _nl_load_domain (retval, domainbinding); if (retval->data == NULL) { int cnt; for (cnt = 0; retval->successor[cnt] != NULL; ++cnt) { if (retval->successor[cnt]->decided == 0) _nl_load_domain (retval->successor[cnt], domainbinding); if (retval->successor[cnt]->data != NULL) break; } } /* The room for an alias was dynamically allocated. Free it now. */ if (alias_value != NULL) free (locale); /* The space for normalized_codeset is dynamically allocated. Free it. */ if (mask & XPG_NORM_CODESET) free ((void *) normalized_codeset); return retval; } #ifdef _LIBC libc_freeres_fn (free_mem) { struct loaded_l10nfile *runp = _nl_loaded_domains; while (runp != NULL) { struct loaded_l10nfile *here = runp; if (runp->data != NULL) _nl_unload_domain ((struct loaded_domain *) runp->data); runp = runp->next; free ((char *) here->filename); free (here); } } #endif tvtime-1.0.11/intl/osdep.c0000664000175000017500000000164312354244126012260 00000000000000/* OS dependent parts of libintl. Copyright (C) 2001-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #if defined __EMX__ # include "os2compat.c" #else /* Avoid AIX compiler warning. */ typedef int dummy; #endif tvtime-1.0.11/intl/Makefile.in0000644000175000017500000003626312522224715013052 00000000000000# Makefile for directory with message catalog handling library of GNU gettext # Copyright (C) 1995-1998, 2000-2003 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library General Public License as published # by the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. PACKAGE = @PACKAGE@ VERSION = @VERSION@ SHELL = /bin/sh srcdir = @srcdir@ top_srcdir = @top_srcdir@ top_builddir = .. VPATH = $(srcdir) prefix = @prefix@ exec_prefix = @exec_prefix@ transform = @program_transform_name@ libdir = @libdir@ includedir = @includedir@ datadir = @datadir@ localedir = $(datadir)/locale gettextsrcdir = $(datadir)/gettext/intl aliaspath = $(localedir) subdir = intl INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ MKINSTALLDIRS = @MKINSTALLDIRS@ mkinstalldirs = $(SHELL) $(MKINSTALLDIRS) l = @INTL_LIBTOOL_SUFFIX_PREFIX@ AR = ar CC = @CC@ LIBTOOL = @LIBTOOL@ RANLIB = @RANLIB@ YACC = @INTLBISON@ -y -d YFLAGS = --name-prefix=__gettext DEFS = -DLOCALEDIR=\"$(localedir)\" -DLOCALE_ALIAS_PATH=\"$(aliaspath)\" \ -DLIBDIR=\"$(libdir)\" -DIN_LIBINTL \ -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"$(libdir)\" -DNO_XMALLOC \ -Dset_relocation_prefix=libintl_set_relocation_prefix \ -Drelocate=libintl_relocate \ -DDEPENDS_ON_LIBICONV=1 @DEFS@ CPPFLAGS = @CPPFLAGS@ CFLAGS = @CFLAGS@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) HEADERS = \ gmo.h \ gettextP.h \ hash-string.h \ loadinfo.h \ plural-exp.h \ eval-plural.h \ localcharset.h \ relocatable.h \ os2compat.h \ libgnuintl.h.in SOURCES = \ bindtextdom.c \ dcgettext.c \ dgettext.c \ gettext.c \ finddomain.c \ loadmsgcat.c \ localealias.c \ textdomain.c \ l10nflist.c \ explodename.c \ dcigettext.c \ dcngettext.c \ dngettext.c \ ngettext.c \ plural.y \ plural-exp.c \ localcharset.c \ relocatable.c \ localename.c \ log.c \ osdep.c \ os2compat.c \ intl-compat.c OBJECTS = \ bindtextdom.$lo \ dcgettext.$lo \ dgettext.$lo \ gettext.$lo \ finddomain.$lo \ loadmsgcat.$lo \ localealias.$lo \ textdomain.$lo \ l10nflist.$lo \ explodename.$lo \ dcigettext.$lo \ dcngettext.$lo \ dngettext.$lo \ ngettext.$lo \ plural.$lo \ plural-exp.$lo \ localcharset.$lo \ relocatable.$lo \ localename.$lo \ log.$lo \ osdep.$lo \ intl-compat.$lo DISTFILES.common = Makefile.in \ config.charset locale.alias ref-add.sin ref-del.sin $(HEADERS) $(SOURCES) DISTFILES.generated = plural.c DISTFILES.normal = VERSION DISTFILES.gettext = COPYING.LIB-2.0 COPYING.LIB-2.1 libintl.glibc \ Makefile.vms libgnuintl.h.msvc-shared README.woe32 Makefile.msvc DISTFILES.obsolete = xopen-msg.sed linux-msg.sed po2tbl.sed.in cat-compat.c \ COPYING.LIB-2 gettext.h libgettext.h plural-eval.c libgnuintl.h all: all-@USE_INCLUDED_LIBINTL@ all-yes: libintl.$la libintl.h charset.alias ref-add.sed ref-del.sed all-no: all-no-@BUILD_INCLUDED_LIBINTL@ all-no-yes: libgnuintl.$la all-no-no: libintl.a libgnuintl.a: $(OBJECTS) rm -f $@ $(AR) cru $@ $(OBJECTS) $(RANLIB) $@ libintl.la libgnuintl.la: $(OBJECTS) $(LIBTOOL) --mode=link \ $(CC) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) $(LDFLAGS) -o $@ \ $(OBJECTS) @LTLIBICONV@ $(LIBS) -lc \ -version-info $(LTV_CURRENT):$(LTV_REVISION):$(LTV_AGE) \ -rpath $(libdir) \ -no-undefined # Libtool's library version information for libintl. # Before making a gettext release, the gettext maintainer must change this # according to the libtool documentation, section "Library interface versions". # Maintainers of other packages that include the intl directory must *not* # change these values. LTV_CURRENT=5 LTV_REVISION=0 LTV_AGE=3 .SUFFIXES: .SUFFIXES: .c .y .o .lo .sin .sed .c.o: $(COMPILE) $< .y.c: $(YACC) $(YFLAGS) --output $@ $< rm -f $*.h bindtextdom.lo: $(srcdir)/bindtextdom.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/bindtextdom.c dcgettext.lo: $(srcdir)/dcgettext.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/dcgettext.c dgettext.lo: $(srcdir)/dgettext.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/dgettext.c gettext.lo: $(srcdir)/gettext.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/gettext.c finddomain.lo: $(srcdir)/finddomain.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/finddomain.c loadmsgcat.lo: $(srcdir)/loadmsgcat.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/loadmsgcat.c localealias.lo: $(srcdir)/localealias.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/localealias.c textdomain.lo: $(srcdir)/textdomain.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/textdomain.c l10nflist.lo: $(srcdir)/l10nflist.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/l10nflist.c explodename.lo: $(srcdir)/explodename.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/explodename.c dcigettext.lo: $(srcdir)/dcigettext.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/dcigettext.c dcngettext.lo: $(srcdir)/dcngettext.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/dcngettext.c dngettext.lo: $(srcdir)/dngettext.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/dngettext.c ngettext.lo: $(srcdir)/ngettext.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/ngettext.c plural.lo: $(srcdir)/plural.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/plural.c plural-exp.lo: $(srcdir)/plural-exp.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/plural-exp.c localcharset.lo: $(srcdir)/localcharset.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/localcharset.c relocatable.lo: $(srcdir)/relocatable.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/relocatable.c localename.lo: $(srcdir)/localename.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/localename.c log.lo: $(srcdir)/log.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/log.c osdep.lo: $(srcdir)/osdep.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/osdep.c intl-compat.lo: $(srcdir)/intl-compat.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/intl-compat.c ref-add.sed: $(srcdir)/ref-add.sin sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $(srcdir)/ref-add.sin > t-ref-add.sed mv t-ref-add.sed ref-add.sed ref-del.sed: $(srcdir)/ref-del.sin sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $(srcdir)/ref-del.sin > t-ref-del.sed mv t-ref-del.sed ref-del.sed INCLUDES = -I. -I$(srcdir) -I.. libgnuintl.h: $(srcdir)/libgnuintl.h.in cp $(srcdir)/libgnuintl.h.in libgnuintl.h libintl.h: libgnuintl.h cp libgnuintl.h libintl.h charset.alias: $(srcdir)/config.charset $(SHELL) $(srcdir)/config.charset '@host@' > t-$@ mv t-$@ $@ check: all # We must not install the libintl.h/libintl.a files if we are on a # system which has the GNU gettext() function in its C library or in a # separate library. # If you want to use the one which comes with this version of the # package, you have to use `configure --with-included-gettext'. install: install-exec install-data install-exec: all if { test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; } \ && test '@USE_INCLUDED_LIBINTL@' = yes; then \ $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir); \ $(INSTALL_DATA) libintl.h $(DESTDIR)$(includedir)/libintl.h; \ $(LIBTOOL) --mode=install \ $(INSTALL_DATA) libintl.$la $(DESTDIR)$(libdir)/libintl.$la; \ if test "@RELOCATABLE@" = yes; then \ dependencies=`sed -n -e 's,^dependency_libs=\(.*\),\1,p' < $(DESTDIR)$(libdir)/libintl.la | sed -e "s,^',," -e "s,'\$$,,"`; \ if test -n "$dependencies"; then \ rm -f $(DESTDIR)$(libdir)/libintl.la; \ fi; \ fi; \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext-tools" \ && test '@USE_INCLUDED_LIBINTL@' = no; then \ $(mkinstalldirs) $(DESTDIR)$(libdir); \ $(LIBTOOL) --mode=install \ $(INSTALL_DATA) libgnuintl.$la $(DESTDIR)$(libdir)/libgnuintl.$la; \ rm -f $(DESTDIR)$(libdir)/preloadable_libintl.so; \ $(INSTALL_DATA) $(DESTDIR)$(libdir)/libgnuintl.so $(DESTDIR)$(libdir)/preloadable_libintl.so; \ $(LIBTOOL) --mode=uninstall \ rm -f $(DESTDIR)$(libdir)/libgnuintl.$la; \ else \ : ; \ fi if test '@USE_INCLUDED_LIBINTL@' = yes; then \ test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir); \ temp=$(DESTDIR)$(libdir)/t-charset.alias; \ dest=$(DESTDIR)$(libdir)/charset.alias; \ if test -f $(DESTDIR)$(libdir)/charset.alias; then \ orig=$(DESTDIR)$(libdir)/charset.alias; \ sed -f ref-add.sed $$orig > $$temp; \ $(INSTALL_DATA) $$temp $$dest; \ rm -f $$temp; \ else \ if test @GLIBC21@ = no; then \ orig=charset.alias; \ sed -f ref-add.sed $$orig > $$temp; \ $(INSTALL_DATA) $$temp $$dest; \ rm -f $$temp; \ fi; \ fi; \ $(mkinstalldirs) $(DESTDIR)$(localedir); \ test -f $(DESTDIR)$(localedir)/locale.alias \ && orig=$(DESTDIR)$(localedir)/locale.alias \ || orig=$(srcdir)/locale.alias; \ temp=$(DESTDIR)$(localedir)/t-locale.alias; \ dest=$(DESTDIR)$(localedir)/locale.alias; \ sed -f ref-add.sed $$orig > $$temp; \ $(INSTALL_DATA) $$temp $$dest; \ rm -f $$temp; \ else \ : ; \ fi install-data: all if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ $(INSTALL_DATA) VERSION $(DESTDIR)$(gettextsrcdir)/VERSION; \ $(INSTALL_DATA) ChangeLog.inst $(DESTDIR)$(gettextsrcdir)/ChangeLog; \ dists="COPYING.LIB-2.0 COPYING.LIB-2.1 $(DISTFILES.common)"; \ for file in $$dists; do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ chmod a+x $(DESTDIR)$(gettextsrcdir)/config.charset; \ dists="$(DISTFILES.generated)"; \ for file in $$dists; do \ if test -f $$file; then dir=.; else dir=$(srcdir); fi; \ $(INSTALL_DATA) $$dir/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ dists="$(DISTFILES.obsolete)"; \ for file in $$dists; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi install-strip: install installdirs: if { test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; } \ && test '@USE_INCLUDED_LIBINTL@' = yes; then \ $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir); \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext-tools" \ && test '@USE_INCLUDED_LIBINTL@' = no; then \ $(mkinstalldirs) $(DESTDIR)$(libdir); \ else \ : ; \ fi if test '@USE_INCLUDED_LIBINTL@' = yes; then \ test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir); \ $(mkinstalldirs) $(DESTDIR)$(localedir); \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi # Define this as empty until I found a useful application. installcheck: uninstall: if { test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; } \ && test '@USE_INCLUDED_LIBINTL@' = yes; then \ rm -f $(DESTDIR)$(includedir)/libintl.h; \ $(LIBTOOL) --mode=uninstall \ rm -f $(DESTDIR)$(libdir)/libintl.$la; \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext-tools" \ && test '@USE_INCLUDED_LIBINTL@' = no; then \ rm -f $(DESTDIR)$(libdir)/preloadable_libintl.so; \ else \ : ; \ fi if test '@USE_INCLUDED_LIBINTL@' = yes; then \ if test -f $(DESTDIR)$(libdir)/charset.alias; then \ temp=$(DESTDIR)$(libdir)/t-charset.alias; \ dest=$(DESTDIR)$(libdir)/charset.alias; \ sed -f ref-del.sed $$dest > $$temp; \ if grep '^# Packages using this file: $$' $$temp > /dev/null; then \ rm -f $$dest; \ else \ $(INSTALL_DATA) $$temp $$dest; \ fi; \ rm -f $$temp; \ fi; \ if test -f $(DESTDIR)$(localedir)/locale.alias; then \ temp=$(DESTDIR)$(localedir)/t-locale.alias; \ dest=$(DESTDIR)$(localedir)/locale.alias; \ sed -f ref-del.sed $$dest > $$temp; \ if grep '^# Packages using this file: $$' $$temp > /dev/null; then \ rm -f $$dest; \ else \ $(INSTALL_DATA) $$temp $$dest; \ fi; \ rm -f $$temp; \ fi; \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext-tools"; then \ for file in VERSION ChangeLog COPYING.LIB-2.0 COPYING.LIB-2.1 $(DISTFILES.common) $(DISTFILES.generated); do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi info dvi ps pdf html: $(OBJECTS): ../config.h libgnuintl.h bindtextdom.$lo dcgettext.$lo dcigettext.$lo dcngettext.$lo dgettext.$lo dngettext.$lo finddomain.$lo gettext.$lo intl-compat.$lo loadmsgcat.$lo localealias.$lo ngettext.$lo textdomain.$lo: $(srcdir)/gettextP.h $(srcdir)/gmo.h $(srcdir)/loadinfo.h dcigettext.$lo loadmsgcat.$lo: $(srcdir)/hash-string.h explodename.$lo l10nflist.$lo: $(srcdir)/loadinfo.h dcigettext.$lo loadmsgcat.$lo plural.$lo plural-exp.$lo: $(srcdir)/plural-exp.h dcigettext.$lo: $(srcdir)/eval-plural.h localcharset.$lo: $(srcdir)/localcharset.h localealias.$lo localcharset.$lo relocatable.$lo: $(srcdir)/relocatable.h tags: TAGS TAGS: $(HEADERS) $(SOURCES) here=`pwd`; cd $(srcdir) && etags -o $$here/TAGS $(HEADERS) $(SOURCES) ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) here=`pwd`; cd $(srcdir) && ctags -o $$here/CTAGS $(HEADERS) $(SOURCES) id: ID ID: $(HEADERS) $(SOURCES) here=`pwd`; cd $(srcdir) && mkid -f$$here/ID $(HEADERS) $(SOURCES) mostlyclean: rm -f *.a *.la *.o *.obj *.lo core core.* rm -f libgnuintl.h libintl.h charset.alias ref-add.sed ref-del.sed rm -f -r .libs _libs clean: mostlyclean distclean: clean rm -f Makefile ID TAGS if test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; then \ rm -f ChangeLog.inst $(DISTFILES.normal); \ else \ : ; \ fi maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." # GNU gettext needs not contain the file `VERSION' but contains some # other files which should not be distributed in other packages. distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: Makefile if test "$(PACKAGE)" = "gettext-tools"; then \ : ; \ else \ if test "$(PACKAGE)" = "gettext-runtime"; then \ additional="$(DISTFILES.gettext)"; \ else \ additional="$(DISTFILES.normal)"; \ fi; \ $(MAKE) $(DISTFILES.common) $(DISTFILES.generated) $$additional; \ for file in ChangeLog $(DISTFILES.common) $(DISTFILES.generated) $$additional; do \ if test -f $$file; then dir=.; else dir=$(srcdir); fi; \ cp -p $$dir/$$file $(distdir); \ done; \ fi Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) && $(SHELL) ./config.status # This would be more efficient, but doesn't work any more with autoconf-2.57, # when AC_CONFIG_FILES([intl/Makefile:somedir/Makefile.in]) is used. # cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: tvtime-1.0.11/intl/explodename.c0000664000175000017500000001105012354244126013440 00000000000000/* Copyright (C) 1995-1998, 2000, 2001 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include "loadinfo.h" /* On some strange systems still no definition of NULL is found. Sigh! */ #ifndef NULL # if defined __STDC__ && __STDC__ # define NULL ((void *) 0) # else # define NULL 0 # endif #endif /* @@ end of prolog @@ */ char * _nl_find_language (name) const char *name; { while (name[0] != '\0' && name[0] != '_' && name[0] != '@' && name[0] != '+' && name[0] != ',') ++name; return (char *) name; } int _nl_explode_name (name, language, modifier, territory, codeset, normalized_codeset, special, sponsor, revision) char *name; const char **language; const char **modifier; const char **territory; const char **codeset; const char **normalized_codeset; const char **special; const char **sponsor; const char **revision; { enum { undecided, xpg, cen } syntax; char *cp; int mask; *modifier = NULL; *territory = NULL; *codeset = NULL; *normalized_codeset = NULL; *special = NULL; *sponsor = NULL; *revision = NULL; /* Now we determine the single parts of the locale name. First look for the language. Termination symbols are `_' and `@' if we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */ mask = 0; syntax = undecided; *language = cp = name; cp = _nl_find_language (*language); if (*language == cp) /* This does not make sense: language has to be specified. Use this entry as it is without exploding. Perhaps it is an alias. */ cp = strchr (*language, '\0'); else if (cp[0] == '_') { /* Next is the territory. */ cp[0] = '\0'; *territory = ++cp; while (cp[0] != '\0' && cp[0] != '.' && cp[0] != '@' && cp[0] != '+' && cp[0] != ',' && cp[0] != '_') ++cp; mask |= TERRITORY; if (cp[0] == '.') { /* Next is the codeset. */ syntax = xpg; cp[0] = '\0'; *codeset = ++cp; while (cp[0] != '\0' && cp[0] != '@') ++cp; mask |= XPG_CODESET; if (*codeset != cp && (*codeset)[0] != '\0') { *normalized_codeset = _nl_normalize_codeset (*codeset, cp - *codeset); if (strcmp (*codeset, *normalized_codeset) == 0) free ((char *) *normalized_codeset); else mask |= XPG_NORM_CODESET; } } } if (cp[0] == '@' || (syntax != xpg && cp[0] == '+')) { /* Next is the modifier. */ syntax = cp[0] == '@' ? xpg : cen; cp[0] = '\0'; *modifier = ++cp; while (syntax == cen && cp[0] != '\0' && cp[0] != '+' && cp[0] != ',' && cp[0] != '_') ++cp; mask |= XPG_MODIFIER | CEN_AUDIENCE; } if (syntax != xpg && (cp[0] == '+' || cp[0] == ',' || cp[0] == '_')) { syntax = cen; if (cp[0] == '+') { /* Next is special application (CEN syntax). */ cp[0] = '\0'; *special = ++cp; while (cp[0] != '\0' && cp[0] != ',' && cp[0] != '_') ++cp; mask |= CEN_SPECIAL; } if (cp[0] == ',') { /* Next is sponsor (CEN syntax). */ cp[0] = '\0'; *sponsor = ++cp; while (cp[0] != '\0' && cp[0] != '_') ++cp; mask |= CEN_SPONSOR; } if (cp[0] == '_') { /* Next is revision (CEN syntax). */ cp[0] = '\0'; *revision = ++cp; mask |= CEN_REVISION; } } /* For CEN syntax values it might be important to have the separator character in the file name, not for XPG syntax. */ if (syntax == xpg) { if (*territory != NULL && (*territory)[0] == '\0') mask &= ~TERRITORY; if (*codeset != NULL && (*codeset)[0] == '\0') mask &= ~XPG_CODESET; if (*modifier != NULL && (*modifier)[0] == '\0') mask &= ~XPG_MODIFIER; } return mask; } tvtime-1.0.11/intl/textdomain.c0000664000175000017500000001071012354244126013315 00000000000000/* Implementation of the textdomain(3) function. Copyright (C) 1995-1998, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #ifdef _LIBC # include #else # include "libgnuintl.h" #endif #include "gettextP.h" #ifdef _LIBC /* We have to handle multi-threaded applications. */ # include #else /* Provide dummy implementation if this is outside glibc. */ # define __libc_rwlock_define(CLASS, NAME) # define __libc_rwlock_wrlock(NAME) # define __libc_rwlock_unlock(NAME) #endif /* The internal variables in the standalone libintl.a must have different names than the internal variables in GNU libc, otherwise programs using libintl.a cannot be linked statically. */ #if !defined _LIBC # define _nl_default_default_domain libintl_nl_default_default_domain # define _nl_current_default_domain libintl_nl_current_default_domain #endif /* @@ end of prolog @@ */ /* Name of the default text domain. */ extern const char _nl_default_default_domain[] attribute_hidden; /* Default text domain in which entries for gettext(3) are to be found. */ extern const char *_nl_current_default_domain attribute_hidden; /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define TEXTDOMAIN __textdomain # ifndef strdup # define strdup(str) __strdup (str) # endif #else # define TEXTDOMAIN libintl_textdomain #endif /* Lock variable to protect the global data in the gettext implementation. */ __libc_rwlock_define (extern, _nl_state_lock attribute_hidden) /* Set the current default message catalog to DOMAINNAME. If DOMAINNAME is null, return the current default. If DOMAINNAME is "", reset to the default of "messages". */ char * TEXTDOMAIN (domainname) const char *domainname; { char *new_domain; char *old_domain; /* A NULL pointer requests the current setting. */ if (domainname == NULL) return (char *) _nl_current_default_domain; __libc_rwlock_wrlock (_nl_state_lock); old_domain = (char *) _nl_current_default_domain; /* If domain name is the null string set to default domain "messages". */ if (domainname[0] == '\0' || strcmp (domainname, _nl_default_default_domain) == 0) { _nl_current_default_domain = _nl_default_default_domain; new_domain = (char *) _nl_current_default_domain; } else if (strcmp (domainname, old_domain) == 0) /* This can happen and people will use it to signal that some environment variable changed. */ new_domain = old_domain; else { /* If the following malloc fails `_nl_current_default_domain' will be NULL. This value will be returned and so signals we are out of core. */ #if defined _LIBC || defined HAVE_STRDUP new_domain = strdup (domainname); #else size_t len = strlen (domainname) + 1; new_domain = (char *) malloc (len); if (new_domain != NULL) memcpy (new_domain, domainname, len); #endif if (new_domain != NULL) _nl_current_default_domain = new_domain; } /* We use this possibility to signal a change of the loaded catalogs since this is most likely the case and there is no other easy we to do it. Do it only when the call was successful. */ if (new_domain != NULL) { ++_nl_msg_cat_cntr; if (old_domain != new_domain && old_domain != _nl_default_default_domain) free (old_domain); } __libc_rwlock_unlock (_nl_state_lock); return new_domain; } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__textdomain, textdomain); #endif tvtime-1.0.11/intl/plural.y0000664000175000017500000001773412354244126012503 00000000000000%{ /* Expression parsing for plural form selection. Copyright (C) 2000, 2001 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* The bison generated parser uses alloca. AIX 3 forces us to put this declaration at the beginning of the file. The declaration in bison's skeleton file comes too late. This must come before because may include arbitrary system headers. */ #if defined _AIX && !defined __GNUC__ #pragma alloca #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #include "plural-exp.h" /* The main function generated by the parser is called __gettextparse, but we want it to be called PLURAL_PARSE. */ #ifndef _LIBC # define __gettextparse PLURAL_PARSE #endif #define YYLEX_PARAM &((struct parse_args *) arg)->cp #define YYPARSE_PARAM arg %} %pure_parser %expect 7 %union { unsigned long int num; enum operator op; struct expression *exp; } %{ /* Prototypes for local functions. */ static struct expression *new_exp PARAMS ((int nargs, enum operator op, struct expression * const *args)); static inline struct expression *new_exp_0 PARAMS ((enum operator op)); static inline struct expression *new_exp_1 PARAMS ((enum operator op, struct expression *right)); static struct expression *new_exp_2 PARAMS ((enum operator op, struct expression *left, struct expression *right)); static inline struct expression *new_exp_3 PARAMS ((enum operator op, struct expression *bexp, struct expression *tbranch, struct expression *fbranch)); static int yylex PARAMS ((YYSTYPE *lval, const char **pexp)); static void yyerror PARAMS ((const char *str)); /* Allocation of expressions. */ static struct expression * new_exp (nargs, op, args) int nargs; enum operator op; struct expression * const *args; { int i; struct expression *newp; /* If any of the argument could not be malloc'ed, just return NULL. */ for (i = nargs - 1; i >= 0; i--) if (args[i] == NULL) goto fail; /* Allocate a new expression. */ newp = (struct expression *) malloc (sizeof (*newp)); if (newp != NULL) { newp->nargs = nargs; newp->operation = op; for (i = nargs - 1; i >= 0; i--) newp->val.args[i] = args[i]; return newp; } fail: for (i = nargs - 1; i >= 0; i--) FREE_EXPRESSION (args[i]); return NULL; } static inline struct expression * new_exp_0 (op) enum operator op; { return new_exp (0, op, NULL); } static inline struct expression * new_exp_1 (op, right) enum operator op; struct expression *right; { struct expression *args[1]; args[0] = right; return new_exp (1, op, args); } static struct expression * new_exp_2 (op, left, right) enum operator op; struct expression *left; struct expression *right; { struct expression *args[2]; args[0] = left; args[1] = right; return new_exp (2, op, args); } static inline struct expression * new_exp_3 (op, bexp, tbranch, fbranch) enum operator op; struct expression *bexp; struct expression *tbranch; struct expression *fbranch; { struct expression *args[3]; args[0] = bexp; args[1] = tbranch; args[2] = fbranch; return new_exp (3, op, args); } %} /* This declares that all operators have the same associativity and the precedence order as in C. See [Harbison, Steele: C, A Reference Manual]. There is no unary minus and no bitwise operators. Operators with the same syntactic behaviour have been merged into a single token, to save space in the array generated by bison. */ %right '?' /* ? */ %left '|' /* || */ %left '&' /* && */ %left EQUOP2 /* == != */ %left CMPOP2 /* < > <= >= */ %left ADDOP2 /* + - */ %left MULOP2 /* * / % */ %right '!' /* ! */ %token EQUOP2 CMPOP2 ADDOP2 MULOP2 %token NUMBER %type exp %% start: exp { if ($1 == NULL) YYABORT; ((struct parse_args *) arg)->res = $1; } ; exp: exp '?' exp ':' exp { $$ = new_exp_3 (qmop, $1, $3, $5); } | exp '|' exp { $$ = new_exp_2 (lor, $1, $3); } | exp '&' exp { $$ = new_exp_2 (land, $1, $3); } | exp EQUOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | exp CMPOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | exp ADDOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | exp MULOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | '!' exp { $$ = new_exp_1 (lnot, $2); } | 'n' { $$ = new_exp_0 (var); } | NUMBER { if (($$ = new_exp_0 (num)) != NULL) $$->val.num = $1; } | '(' exp ')' { $$ = $2; } ; %% void internal_function FREE_EXPRESSION (exp) struct expression *exp; { if (exp == NULL) return; /* Handle the recursive case. */ switch (exp->nargs) { case 3: FREE_EXPRESSION (exp->val.args[2]); /* FALLTHROUGH */ case 2: FREE_EXPRESSION (exp->val.args[1]); /* FALLTHROUGH */ case 1: FREE_EXPRESSION (exp->val.args[0]); /* FALLTHROUGH */ default: break; } free (exp); } static int yylex (lval, pexp) YYSTYPE *lval; const char **pexp; { const char *exp = *pexp; int result; while (1) { if (exp[0] == '\0') { *pexp = exp; return YYEOF; } if (exp[0] != ' ' && exp[0] != '\t') break; ++exp; } result = *exp++; switch (result) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { unsigned long int n = result - '0'; while (exp[0] >= '0' && exp[0] <= '9') { n *= 10; n += exp[0] - '0'; ++exp; } lval->num = n; result = NUMBER; } break; case '=': if (exp[0] == '=') { ++exp; lval->op = equal; result = EQUOP2; } else result = YYERRCODE; break; case '!': if (exp[0] == '=') { ++exp; lval->op = not_equal; result = EQUOP2; } break; case '&': case '|': if (exp[0] == result) ++exp; else result = YYERRCODE; break; case '<': if (exp[0] == '=') { ++exp; lval->op = less_or_equal; } else lval->op = less_than; result = CMPOP2; break; case '>': if (exp[0] == '=') { ++exp; lval->op = greater_or_equal; } else lval->op = greater_than; result = CMPOP2; break; case '*': lval->op = mult; result = MULOP2; break; case '/': lval->op = divide; result = MULOP2; break; case '%': lval->op = module; result = MULOP2; break; case '+': lval->op = plus; result = ADDOP2; break; case '-': lval->op = minus; result = ADDOP2; break; case 'n': case '?': case ':': case '(': case ')': /* Nothing, just return the character. */ break; case ';': case '\n': case '\0': /* Be safe and let the user call this function again. */ --exp; result = YYEOF; break; default: result = YYERRCODE; #if YYDEBUG != 0 --exp; #endif break; } *pexp = exp; return result; } static void yyerror (str) const char *str; { /* Do nothing. We don't print error messages here. */ } tvtime-1.0.11/intl/dcigettext.c0000664000175000017500000010201412354244126013304 00000000000000/* Implementation of the internal dcigettext function. Copyright (C) 1995-1999, 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Tell glibc's to provide a prototype for mempcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #ifdef __GNUC__ # define alloca __builtin_alloca # define HAVE_ALLOCA 1 #else # ifdef _MSC_VER # include # define alloca _alloca # else # if defined HAVE_ALLOCA_H || defined _LIBC # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca char *alloca (); # endif # endif # endif # endif #endif #include #ifndef errno extern int errno; #endif #ifndef __set_errno # define __set_errno(val) errno = (val) #endif #include #include #include #if defined HAVE_UNISTD_H || defined _LIBC # include #endif #include #ifdef _LIBC /* Guess whether integer division by zero raises signal SIGFPE. Set to 1 only if you know for sure. In case of doubt, set to 0. */ # if defined __alpha__ || defined __arm__ || defined __i386__ \ || defined __m68k__ || defined __s390__ # define INTDIV0_RAISES_SIGFPE 1 # else # define INTDIV0_RAISES_SIGFPE 0 # endif #endif #if !INTDIV0_RAISES_SIGFPE # include #endif #if defined HAVE_SYS_PARAM_H || defined _LIBC # include #endif #include "gettextP.h" #include "plural-exp.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif #include "hash-string.h" /* Thread safetyness. */ #ifdef _LIBC # include #else /* Provide dummy implementation if this is outside glibc. */ # define __libc_lock_define_initialized(CLASS, NAME) # define __libc_lock_lock(NAME) # define __libc_lock_unlock(NAME) # define __libc_rwlock_define_initialized(CLASS, NAME) # define __libc_rwlock_rdlock(NAME) # define __libc_rwlock_unlock(NAME) #endif /* Alignment of types. */ #if defined __GNUC__ && __GNUC__ >= 2 # define alignof(TYPE) __alignof__ (TYPE) #else # define alignof(TYPE) \ ((int) &((struct { char dummy1; TYPE dummy2; } *) 0)->dummy2) #endif /* The internal variables in the standalone libintl.a must have different names than the internal variables in GNU libc, otherwise programs using libintl.a cannot be linked statically. */ #if !defined _LIBC # define _nl_default_default_domain libintl_nl_default_default_domain # define _nl_current_default_domain libintl_nl_current_default_domain # define _nl_default_dirname libintl_nl_default_dirname # define _nl_domain_bindings libintl_nl_domain_bindings #endif /* Some compilers, like SunOS4 cc, don't have offsetof in . */ #ifndef offsetof # define offsetof(type,ident) ((size_t)&(((type*)0)->ident)) #endif /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ANSI C functions. This is required by the standard because some ANSI C functions will require linking with this object file and the name space must not be polluted. */ # define getcwd __getcwd # ifndef stpcpy # define stpcpy __stpcpy # endif # define tfind __tfind #else # if !defined HAVE_GETCWD char *getwd (); # define getcwd(buf, max) getwd (buf) # else char *getcwd (); # endif # ifndef HAVE_STPCPY static char *stpcpy PARAMS ((char *dest, const char *src)); # endif # ifndef HAVE_MEMPCPY static void *mempcpy PARAMS ((void *dest, const void *src, size_t n)); # endif #endif /* Amount to increase buffer size by in each try. */ #define PATH_INCR 32 /* The following is from pathmax.h. */ /* Non-POSIX BSD systems might have gcc's limits.h, which doesn't define PATH_MAX but might cause redefinition warnings when sys/param.h is later included (as on MORE/BSD 4.3). */ #if defined _POSIX_VERSION || (defined HAVE_LIMITS_H && !defined __GNUC__) # include #endif #ifndef _POSIX_PATH_MAX # define _POSIX_PATH_MAX 255 #endif #if !defined PATH_MAX && defined _PC_PATH_MAX # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX)) #endif /* Don't include sys/param.h if it already has been. */ #if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN # include #endif #if !defined PATH_MAX && defined MAXPATHLEN # define PATH_MAX MAXPATHLEN #endif #ifndef PATH_MAX # define PATH_MAX _POSIX_PATH_MAX #endif /* Pathname support. ISSLASH(C) tests whether C is a directory separator character. IS_ABSOLUTE_PATH(P) tests whether P is an absolute path. If it is not, it may be concatenated to a directory pathname. IS_PATH_WITH_DIR(P) tests whether P contains a directory specification. */ #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') # define HAS_DEVICE(P) \ ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \ && (P)[1] == ':') # define IS_ABSOLUTE_PATH(P) (ISSLASH ((P)[0]) || HAS_DEVICE (P)) # define IS_PATH_WITH_DIR(P) \ (strchr (P, '/') != NULL || strchr (P, '\\') != NULL || HAS_DEVICE (P)) #else /* Unix */ # define ISSLASH(C) ((C) == '/') # define IS_ABSOLUTE_PATH(P) ISSLASH ((P)[0]) # define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL) #endif /* This is the type used for the search tree where known translations are stored. */ struct known_translation_t { /* Domain in which to search. */ char *domainname; /* The category. */ int category; /* State of the catalog counter at the point the string was found. */ int counter; /* Catalog where the string was found. */ struct loaded_l10nfile *domain; /* And finally the translation. */ const char *translation; size_t translation_length; /* Pointer to the string in question. */ char msgid[ZERO]; }; /* Root of the search tree with known translations. We can use this only if the system provides the `tsearch' function family. */ #if defined HAVE_TSEARCH || defined _LIBC # include static void *root; # ifdef _LIBC # define tsearch __tsearch # endif /* Function to compare two entries in the table of known translations. */ static int transcmp PARAMS ((const void *p1, const void *p2)); static int transcmp (p1, p2) const void *p1; const void *p2; { const struct known_translation_t *s1; const struct known_translation_t *s2; int result; s1 = (const struct known_translation_t *) p1; s2 = (const struct known_translation_t *) p2; result = strcmp (s1->msgid, s2->msgid); if (result == 0) { result = strcmp (s1->domainname, s2->domainname); if (result == 0) /* We compare the category last (though this is the cheapest operation) since it is hopefully always the same (namely LC_MESSAGES). */ result = s1->category - s2->category; } return result; } #endif #ifndef INTVARDEF # define INTVARDEF(name) #endif #ifndef INTUSE # define INTUSE(name) name #endif /* Name of the default domain used for gettext(3) prior any call to textdomain(3). The default value for this is "messages". */ const char _nl_default_default_domain[] attribute_hidden = "messages"; /* Value used as the default domain for gettext(3). */ const char *_nl_current_default_domain attribute_hidden = _nl_default_default_domain; /* Contains the default location of the message catalogs. */ #if defined __EMX__ extern const char _nl_default_dirname[]; #else const char _nl_default_dirname[] = LOCALEDIR; INTVARDEF (_nl_default_dirname) #endif /* List with bindings of specific domains created by bindtextdomain() calls. */ struct binding *_nl_domain_bindings; /* Prototypes for local functions. */ static char *plural_lookup PARAMS ((struct loaded_l10nfile *domain, unsigned long int n, const char *translation, size_t translation_len)) internal_function; static const char *guess_category_value PARAMS ((int category, const char *categoryname)) internal_function; #ifdef _LIBC # include "../locale/localeinfo.h" # define category_to_name(category) _nl_category_names[category] #else static const char *category_to_name PARAMS ((int category)) internal_function; #endif /* For those loosing systems which don't have `alloca' we have to add some additional code emulating it. */ #ifdef HAVE_ALLOCA /* Nothing has to be done. */ # define freea(p) /* nothing */ # define ADD_BLOCK(list, address) /* nothing */ # define FREE_BLOCKS(list) /* nothing */ #else struct block_list { void *address; struct block_list *next; }; # define ADD_BLOCK(list, addr) \ do { \ struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \ /* If we cannot get a free block we cannot add the new element to \ the list. */ \ if (newp != NULL) { \ newp->address = (addr); \ newp->next = (list); \ (list) = newp; \ } \ } while (0) # define FREE_BLOCKS(list) \ do { \ while (list != NULL) { \ struct block_list *old = list; \ list = list->next; \ free (old->address); \ free (old); \ } \ } while (0) # undef alloca # define alloca(size) (malloc (size)) # define freea(p) free (p) #endif /* have alloca */ #ifdef _LIBC /* List of blocks allocated for translations. */ typedef struct transmem_list { struct transmem_list *next; char data[ZERO]; } transmem_block_t; static struct transmem_list *transmem_list; #else typedef unsigned char transmem_block_t; #endif /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DCIGETTEXT __dcigettext #else # define DCIGETTEXT libintl_dcigettext #endif /* Lock variable to protect the global data in the gettext implementation. */ #ifdef _LIBC __libc_rwlock_define_initialized (, _nl_state_lock attribute_hidden) #endif /* Checking whether the binaries runs SUID must be done and glibc provides easier methods therefore we make a difference here. */ #ifdef _LIBC # define ENABLE_SECURE __libc_enable_secure # define DETERMINE_SECURE #else # ifndef HAVE_GETUID # define getuid() 0 # endif # ifndef HAVE_GETGID # define getgid() 0 # endif # ifndef HAVE_GETEUID # define geteuid() getuid() # endif # ifndef HAVE_GETEGID # define getegid() getgid() # endif static int enable_secure; # define ENABLE_SECURE (enable_secure == 1) # define DETERMINE_SECURE \ if (enable_secure == 0) \ { \ if (getuid () != geteuid () || getgid () != getegid ()) \ enable_secure = 1; \ else \ enable_secure = -1; \ } #endif /* Get the function to evaluate the plural expression. */ #include "eval-plural.h" /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale and, if PLURAL is nonzero, search over string depending on the plural form determined by N. */ char * DCIGETTEXT (domainname, msgid1, msgid2, plural, n, category) const char *domainname; const char *msgid1; const char *msgid2; int plural; unsigned long int n; int category; { #ifndef HAVE_ALLOCA struct block_list *block_list = NULL; #endif struct loaded_l10nfile *domain; struct binding *binding; const char *categoryname; const char *categoryvalue; char *dirname, *xdomainname; char *single_locale; char *retval; size_t retlen; int saved_errno; #if defined HAVE_TSEARCH || defined _LIBC struct known_translation_t *search; struct known_translation_t **foundp = NULL; size_t msgid_len; #endif size_t domainname_len; /* If no real MSGID is given return NULL. */ if (msgid1 == NULL) return NULL; #ifdef _LIBC if (category < 0 || category >= __LC_LAST || category == LC_ALL) /* Bogus. */ return (plural == 0 ? (char *) msgid1 /* Use the Germanic plural rule. */ : n == 1 ? (char *) msgid1 : (char *) msgid2); #endif __libc_rwlock_rdlock (_nl_state_lock); /* If DOMAINNAME is NULL, we are interested in the default domain. If CATEGORY is not LC_MESSAGES this might not make much sense but the definition left this undefined. */ if (domainname == NULL) domainname = _nl_current_default_domain; /* OS/2 specific: backward compatibility with older libintl versions */ #ifdef LC_MESSAGES_COMPAT if (category == LC_MESSAGES_COMPAT) category = LC_MESSAGES; #endif #if defined HAVE_TSEARCH || defined _LIBC msgid_len = strlen (msgid1) + 1; /* Try to find the translation among those which we found at some time. */ search = (struct known_translation_t *) alloca (offsetof (struct known_translation_t, msgid) + msgid_len); memcpy (search->msgid, msgid1, msgid_len); search->domainname = (char *) domainname; search->category = category; foundp = (struct known_translation_t **) tfind (search, &root, transcmp); freea (search); if (foundp != NULL && (*foundp)->counter == _nl_msg_cat_cntr) { /* Now deal with plural. */ if (plural) retval = plural_lookup ((*foundp)->domain, n, (*foundp)->translation, (*foundp)->translation_length); else retval = (char *) (*foundp)->translation; __libc_rwlock_unlock (_nl_state_lock); return retval; } #endif /* Preserve the `errno' value. */ saved_errno = errno; /* See whether this is a SUID binary or not. */ DETERMINE_SECURE; /* First find matching binding. */ for (binding = _nl_domain_bindings; binding != NULL; binding = binding->next) { int compare = strcmp (domainname, binding->domainname); if (compare == 0) /* We found it! */ break; if (compare < 0) { /* It is not in the list. */ binding = NULL; break; } } if (binding == NULL) dirname = (char *) INTUSE(_nl_default_dirname); else if (IS_ABSOLUTE_PATH (binding->dirname)) dirname = binding->dirname; else { /* We have a relative path. Make it absolute now. */ size_t dirname_len = strlen (binding->dirname) + 1; size_t path_max; char *ret; path_max = (unsigned int) PATH_MAX; path_max += 2; /* The getcwd docs say to do this. */ for (;;) { dirname = (char *) alloca (path_max + dirname_len); ADD_BLOCK (block_list, dirname); __set_errno (0); ret = getcwd (dirname, path_max); if (ret != NULL || errno != ERANGE) break; path_max += path_max / 2; path_max += PATH_INCR; } if (ret == NULL) /* We cannot get the current working directory. Don't signal an error but simply return the default string. */ goto return_untranslated; stpcpy (stpcpy (strchr (dirname, '\0'), "/"), binding->dirname); } /* Now determine the symbolic name of CATEGORY and its value. */ categoryname = category_to_name (category); categoryvalue = guess_category_value (category, categoryname); domainname_len = strlen (domainname); xdomainname = (char *) alloca (strlen (categoryname) + domainname_len + 5); ADD_BLOCK (block_list, xdomainname); stpcpy (mempcpy (stpcpy (stpcpy (xdomainname, categoryname), "/"), domainname, domainname_len), ".mo"); /* Creating working area. */ single_locale = (char *) alloca (strlen (categoryvalue) + 1); ADD_BLOCK (block_list, single_locale); /* Search for the given string. This is a loop because we perhaps got an ordered list of languages to consider for the translation. */ while (1) { /* Make CATEGORYVALUE point to the next element of the list. */ while (categoryvalue[0] != '\0' && categoryvalue[0] == ':') ++categoryvalue; if (categoryvalue[0] == '\0') { /* The whole contents of CATEGORYVALUE has been searched but no valid entry has been found. We solve this situation by implicitly appending a "C" entry, i.e. no translation will take place. */ single_locale[0] = 'C'; single_locale[1] = '\0'; } else { char *cp = single_locale; while (categoryvalue[0] != '\0' && categoryvalue[0] != ':') *cp++ = *categoryvalue++; *cp = '\0'; /* When this is a SUID binary we must not allow accessing files outside the dedicated directories. */ if (ENABLE_SECURE && IS_PATH_WITH_DIR (single_locale)) /* Ingore this entry. */ continue; } /* If the current locale value is C (or POSIX) we don't load a domain. Return the MSGID. */ if (strcmp (single_locale, "C") == 0 || strcmp (single_locale, "POSIX") == 0) break; /* Find structure describing the message catalog matching the DOMAINNAME and CATEGORY. */ domain = _nl_find_domain (dirname, single_locale, xdomainname, binding); if (domain != NULL) { retval = _nl_find_msg (domain, binding, msgid1, &retlen); if (retval == NULL) { int cnt; for (cnt = 0; domain->successor[cnt] != NULL; ++cnt) { retval = _nl_find_msg (domain->successor[cnt], binding, msgid1, &retlen); if (retval != NULL) { domain = domain->successor[cnt]; break; } } } if (retval != NULL) { /* Found the translation of MSGID1 in domain DOMAIN: starting at RETVAL, RETLEN bytes. */ FREE_BLOCKS (block_list); #if defined HAVE_TSEARCH || defined _LIBC if (foundp == NULL) { /* Create a new entry and add it to the search tree. */ struct known_translation_t *newp; newp = (struct known_translation_t *) malloc (offsetof (struct known_translation_t, msgid) + msgid_len + domainname_len + 1); if (newp != NULL) { newp->domainname = mempcpy (newp->msgid, msgid1, msgid_len); memcpy (newp->domainname, domainname, domainname_len + 1); newp->category = category; newp->counter = _nl_msg_cat_cntr; newp->domain = domain; newp->translation = retval; newp->translation_length = retlen; /* Insert the entry in the search tree. */ foundp = (struct known_translation_t **) tsearch (newp, &root, transcmp); if (foundp == NULL || __builtin_expect (*foundp != newp, 0)) /* The insert failed. */ free (newp); } } else { /* We can update the existing entry. */ (*foundp)->counter = _nl_msg_cat_cntr; (*foundp)->domain = domain; (*foundp)->translation = retval; (*foundp)->translation_length = retlen; } #endif __set_errno (saved_errno); /* Now deal with plural. */ if (plural) retval = plural_lookup (domain, n, retval, retlen); __libc_rwlock_unlock (_nl_state_lock); return retval; } } } return_untranslated: /* Return the untranslated MSGID. */ FREE_BLOCKS (block_list); __libc_rwlock_unlock (_nl_state_lock); #ifndef _LIBC if (!ENABLE_SECURE) { extern void _nl_log_untranslated PARAMS ((const char *logfilename, const char *domainname, const char *msgid1, const char *msgid2, int plural)); const char *logfilename = getenv ("GETTEXT_LOG_UNTRANSLATED"); if (logfilename != NULL && logfilename[0] != '\0') _nl_log_untranslated (logfilename, domainname, msgid1, msgid2, plural); } #endif __set_errno (saved_errno); return (plural == 0 ? (char *) msgid1 /* Use the Germanic plural rule. */ : n == 1 ? (char *) msgid1 : (char *) msgid2); } char * internal_function _nl_find_msg (domain_file, domainbinding, msgid, lengthp) struct loaded_l10nfile *domain_file; struct binding *domainbinding; const char *msgid; size_t *lengthp; { struct loaded_domain *domain; nls_uint32 nstrings; size_t act; char *result; size_t resultlen; if (domain_file->decided == 0) _nl_load_domain (domain_file, domainbinding); if (domain_file->data == NULL) return NULL; domain = (struct loaded_domain *) domain_file->data; nstrings = domain->nstrings; /* Locate the MSGID and its translation. */ if (domain->hash_tab != NULL) { /* Use the hashing table. */ nls_uint32 len = strlen (msgid); nls_uint32 hash_val = hash_string (msgid); nls_uint32 idx = hash_val % domain->hash_size; nls_uint32 incr = 1 + (hash_val % (domain->hash_size - 2)); while (1) { nls_uint32 nstr = W (domain->must_swap_hash_tab, domain->hash_tab[idx]); if (nstr == 0) /* Hash table entry is empty. */ return NULL; nstr--; /* Compare msgid with the original string at index nstr. We compare the lengths with >=, not ==, because plural entries are represented by strings with an embedded NUL. */ if (nstr < nstrings ? W (domain->must_swap, domain->orig_tab[nstr].length) >= len && (strcmp (msgid, domain->data + W (domain->must_swap, domain->orig_tab[nstr].offset)) == 0) : domain->orig_sysdep_tab[nstr - nstrings].length > len && (strcmp (msgid, domain->orig_sysdep_tab[nstr - nstrings].pointer) == 0)) { act = nstr; goto found; } if (idx >= domain->hash_size - incr) idx -= domain->hash_size - incr; else idx += incr; } /* NOTREACHED */ } else { /* Try the default method: binary search in the sorted array of messages. */ size_t top, bottom; bottom = 0; top = nstrings; while (bottom < top) { int cmp_val; act = (bottom + top) / 2; cmp_val = strcmp (msgid, (domain->data + W (domain->must_swap, domain->orig_tab[act].offset))); if (cmp_val < 0) top = act; else if (cmp_val > 0) bottom = act + 1; else goto found; } /* No translation was found. */ return NULL; } found: /* The translation was found at index ACT. If we have to convert the string to use a different character set, this is the time. */ if (act < nstrings) { result = (char *) (domain->data + W (domain->must_swap, domain->trans_tab[act].offset)); resultlen = W (domain->must_swap, domain->trans_tab[act].length) + 1; } else { result = (char *) domain->trans_sysdep_tab[act - nstrings].pointer; resultlen = domain->trans_sysdep_tab[act - nstrings].length; } #if defined _LIBC || HAVE_ICONV if (domain->codeset_cntr != (domainbinding != NULL ? domainbinding->codeset_cntr : 0)) { /* The domain's codeset has changed through bind_textdomain_codeset() since the message catalog was initialized or last accessed. We have to reinitialize the converter. */ _nl_free_domain_conv (domain); _nl_init_domain_conv (domain_file, domain, domainbinding); } if ( # ifdef _LIBC domain->conv != (__gconv_t) -1 # else # if HAVE_ICONV domain->conv != (iconv_t) -1 # endif # endif ) { /* We are supposed to do a conversion. First allocate an appropriate table with the same structure as the table of translations in the file, where we can put the pointers to the converted strings in. There is a slight complication with plural entries. They are represented by consecutive NUL terminated strings. We handle this case by converting RESULTLEN bytes, including NULs. */ if (domain->conv_tab == NULL && ((domain->conv_tab = (char **) calloc (nstrings + domain->n_sysdep_strings, sizeof (char *))) == NULL)) /* Mark that we didn't succeed allocating a table. */ domain->conv_tab = (char **) -1; if (__builtin_expect (domain->conv_tab == (char **) -1, 0)) /* Nothing we can do, no more memory. */ goto converted; if (domain->conv_tab[act] == NULL) { /* We haven't used this string so far, so it is not translated yet. Do this now. */ /* We use a bit more efficient memory handling. We allocate always larger blocks which get used over time. This is faster than many small allocations. */ __libc_lock_define_initialized (static, lock) # define INITIAL_BLOCK_SIZE 4080 static unsigned char *freemem; static size_t freemem_size; const unsigned char *inbuf; unsigned char *outbuf; int malloc_count; # ifndef _LIBC transmem_block_t *transmem_list = NULL; # endif __libc_lock_lock (lock); inbuf = (const unsigned char *) result; outbuf = freemem + sizeof (size_t); malloc_count = 0; while (1) { transmem_block_t *newmem; # ifdef _LIBC size_t non_reversible; int res; if (freemem_size < sizeof (size_t)) goto resize_freemem; res = __gconv (domain->conv, &inbuf, inbuf + resultlen, &outbuf, outbuf + freemem_size - sizeof (size_t), &non_reversible); if (res == __GCONV_OK || res == __GCONV_EMPTY_INPUT) break; if (res != __GCONV_FULL_OUTPUT) { __libc_lock_unlock (lock); goto converted; } inbuf = result; # else # if HAVE_ICONV const char *inptr = (const char *) inbuf; size_t inleft = resultlen; char *outptr = (char *) outbuf; size_t outleft; if (freemem_size < sizeof (size_t)) goto resize_freemem; outleft = freemem_size - sizeof (size_t); if (iconv (domain->conv, (ICONV_CONST char **) &inptr, &inleft, &outptr, &outleft) != (size_t) (-1)) { outbuf = (unsigned char *) outptr; break; } if (errno != E2BIG) { __libc_lock_unlock (lock); goto converted; } # endif # endif resize_freemem: /* We must allocate a new buffer or resize the old one. */ if (malloc_count > 0) { ++malloc_count; freemem_size = malloc_count * INITIAL_BLOCK_SIZE; newmem = (transmem_block_t *) realloc (transmem_list, freemem_size); # ifdef _LIBC if (newmem != NULL) transmem_list = transmem_list->next; else { struct transmem_list *old = transmem_list; transmem_list = transmem_list->next; free (old); } # endif } else { malloc_count = 1; freemem_size = INITIAL_BLOCK_SIZE; newmem = (transmem_block_t *) malloc (freemem_size); } if (__builtin_expect (newmem == NULL, 0)) { freemem = NULL; freemem_size = 0; __libc_lock_unlock (lock); goto converted; } # ifdef _LIBC /* Add the block to the list of blocks we have to free at some point. */ newmem->next = transmem_list; transmem_list = newmem; freemem = newmem->data; freemem_size -= offsetof (struct transmem_list, data); # else transmem_list = newmem; freemem = newmem; # endif outbuf = freemem + sizeof (size_t); } /* We have now in our buffer a converted string. Put this into the table of conversions. */ *(size_t *) freemem = outbuf - freemem - sizeof (size_t); domain->conv_tab[act] = (char *) freemem; /* Shrink freemem, but keep it aligned. */ freemem_size -= outbuf - freemem; freemem = outbuf; freemem += freemem_size & (alignof (size_t) - 1); freemem_size = freemem_size & ~ (alignof (size_t) - 1); __libc_lock_unlock (lock); } /* Now domain->conv_tab[act] contains the translation of all the plural variants. */ result = domain->conv_tab[act] + sizeof (size_t); resultlen = *(size_t *) domain->conv_tab[act]; } converted: /* The result string is converted. */ #endif /* _LIBC || HAVE_ICONV */ *lengthp = resultlen; return result; } /* Look up a plural variant. */ static char * internal_function plural_lookup (domain, n, translation, translation_len) struct loaded_l10nfile *domain; unsigned long int n; const char *translation; size_t translation_len; { struct loaded_domain *domaindata = (struct loaded_domain *) domain->data; unsigned long int index; const char *p; index = plural_eval (domaindata->plural, n); if (index >= domaindata->nplurals) /* This should never happen. It means the plural expression and the given maximum value do not match. */ index = 0; /* Skip INDEX strings at TRANSLATION. */ p = translation; while (index-- > 0) { #ifdef _LIBC p = __rawmemchr (p, '\0'); #else p = strchr (p, '\0'); #endif /* And skip over the NUL byte. */ p++; if (p >= translation + translation_len) /* This should never happen. It means the plural expression evaluated to a value larger than the number of variants available for MSGID1. */ return (char *) translation; } return (char *) p; } #ifndef _LIBC /* Return string representation of locale CATEGORY. */ static const char * internal_function category_to_name (category) int category; { const char *retval; switch (category) { #ifdef LC_COLLATE case LC_COLLATE: retval = "LC_COLLATE"; break; #endif #ifdef LC_CTYPE case LC_CTYPE: retval = "LC_CTYPE"; break; #endif #ifdef LC_MONETARY case LC_MONETARY: retval = "LC_MONETARY"; break; #endif #ifdef LC_NUMERIC case LC_NUMERIC: retval = "LC_NUMERIC"; break; #endif #ifdef LC_TIME case LC_TIME: retval = "LC_TIME"; break; #endif #ifdef LC_MESSAGES case LC_MESSAGES: retval = "LC_MESSAGES"; break; #endif #ifdef LC_RESPONSE case LC_RESPONSE: retval = "LC_RESPONSE"; break; #endif #ifdef LC_ALL case LC_ALL: /* This might not make sense but is perhaps better than any other value. */ retval = "LC_ALL"; break; #endif default: /* If you have a better idea for a default value let me know. */ retval = "LC_XXX"; } return retval; } #endif /* Guess value of current locale from value of the environment variables. */ static const char * internal_function guess_category_value (category, categoryname) int category; const char *categoryname; { const char *language; const char *retval; /* The highest priority value is the `LANGUAGE' environment variable. But we don't use the value if the currently selected locale is the C locale. This is a GNU extension. */ language = getenv ("LANGUAGE"); if (language != NULL && language[0] == '\0') language = NULL; /* We have to proceed with the POSIX methods of looking to `LC_ALL', `LC_xxx', and `LANG'. On some systems this can be done by the `setlocale' function itself. */ #ifdef _LIBC retval = __current_locale_name (category); #else retval = _nl_locale_name (category, categoryname); #endif /* Ignore LANGUAGE if the locale is set to "C" because 1. "C" locale usually uses the ASCII encoding, and most international messages use non-ASCII characters. These characters get displayed as question marks (if using glibc's iconv()) or as invalid 8-bit characters (because other iconv()s refuse to convert most non-ASCII characters to ASCII). In any case, the output is ugly. 2. The precise output of some programs in the "C" locale is specified by POSIX and should not depend on environment variables like "LANGUAGE". We allow such programs to use gettext(). */ return language != NULL && strcmp (retval, "C") != 0 ? language : retval; } /* @@ begin of epilog @@ */ /* We don't want libintl.a to depend on any other library. So we avoid the non-standard function stpcpy. In GNU C Library this function is available, though. Also allow the symbol HAVE_STPCPY to be defined. */ #if !_LIBC && !HAVE_STPCPY static char * stpcpy (dest, src) char *dest; const char *src; { while ((*dest++ = *src++) != '\0') /* Do nothing. */ ; return dest - 1; } #endif #if !_LIBC && !HAVE_MEMPCPY static void * mempcpy (dest, src, n) void *dest; const void *src; size_t n; { return (void *) ((char *) memcpy (dest, src, n) + n); } #endif #ifdef _LIBC /* If we want to free all resources we have to do some work at program's end. */ libc_freeres_fn (free_mem) { void *old; while (_nl_domain_bindings != NULL) { struct binding *oldp = _nl_domain_bindings; _nl_domain_bindings = _nl_domain_bindings->next; if (oldp->dirname != INTUSE(_nl_default_dirname)) /* Yes, this is a pointer comparison. */ free (oldp->dirname); free (oldp->codeset); free (oldp); } if (_nl_current_default_domain != _nl_default_default_domain) /* Yes, again a pointer comparison. */ free ((char *) _nl_current_default_domain); /* Remove the search tree with the known translations. */ __tdestroy (root, free); root = NULL; while (transmem_list != NULL) { old = transmem_list; transmem_list = transmem_list->next; free (old); } } #endif tvtime-1.0.11/intl/VERSION0000664000175000017500000000005012354244126012041 00000000000000GNU gettext library from gettext-0.12.1 tvtime-1.0.11/intl/dgettext.c0000664000175000017500000000343012354244126012772 00000000000000/* Implementation of the dgettext(3) function. Copyright (C) 1995-1997, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DGETTEXT __dgettext # define DCGETTEXT INTUSE(__dcgettext) #else # define DGETTEXT libintl_dgettext # define DCGETTEXT libintl_dcgettext #endif /* Look up MSGID in the DOMAINNAME message catalog of the current LC_MESSAGES locale. */ char * DGETTEXT (domainname, msgid) const char *domainname; const char *msgid; { return DCGETTEXT (domainname, msgid, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__dgettext, dgettext); #endif tvtime-1.0.11/intl/ref-add.sin0000664000175000017500000000210112354244126013005 00000000000000# Add this package to a list of references stored in a text file. # # Copyright (C) 2000 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library General Public License as published # by the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. # # Written by Bruno Haible . # /^# Packages using this file: / { s/# Packages using this file:// ta :a s/ @PACKAGE@ / @PACKAGE@ / tb s/ $/ @PACKAGE@ / :b s/^/# Packages using this file:/ } tvtime-1.0.11/intl/intl-compat.c0000664000175000017500000000712012354244126013371 00000000000000/* intl-compat.c - Stub functions to call gettext functions from GNU gettext Library. Copyright (C) 1995, 2000-2003 Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include "gettextP.h" /* @@ end of prolog @@ */ /* This file redirects the gettext functions (without prefix) to those defined in the included GNU libintl library (with "libintl_" prefix). It is compiled into libintl in order to make the AM_GNU_GETTEXT test of gettext <= 0.11.2 work with the libintl library >= 0.11.3 which has the redirections primarily in the include file. It is also compiled into libgnuintl so that libgnuintl.so can be used as LD_PRELOADable library on glibc systems, to provide the extra features that the functions in the libc don't have (namely, logging). */ #undef gettext #undef dgettext #undef dcgettext #undef ngettext #undef dngettext #undef dcngettext #undef textdomain #undef bindtextdomain #undef bind_textdomain_codeset /* When building a DLL, we must export some functions. Note that because the functions are only defined for binary backward compatibility, we don't need to use __declspec(dllimport) in any case. */ #if defined _MSC_VER && BUILDING_DLL # define DLL_EXPORTED __declspec(dllexport) #else # define DLL_EXPORTED #endif DLL_EXPORTED char * gettext (msgid) const char *msgid; { return libintl_gettext (msgid); } DLL_EXPORTED char * dgettext (domainname, msgid) const char *domainname; const char *msgid; { return libintl_dgettext (domainname, msgid); } DLL_EXPORTED char * dcgettext (domainname, msgid, category) const char *domainname; const char *msgid; int category; { return libintl_dcgettext (domainname, msgid, category); } DLL_EXPORTED char * ngettext (msgid1, msgid2, n) const char *msgid1; const char *msgid2; unsigned long int n; { return libintl_ngettext (msgid1, msgid2, n); } DLL_EXPORTED char * dngettext (domainname, msgid1, msgid2, n) const char *domainname; const char *msgid1; const char *msgid2; unsigned long int n; { return libintl_dngettext (domainname, msgid1, msgid2, n); } DLL_EXPORTED char * dcngettext (domainname, msgid1, msgid2, n, category) const char *domainname; const char *msgid1; const char *msgid2; unsigned long int n; int category; { return libintl_dcngettext (domainname, msgid1, msgid2, n, category); } DLL_EXPORTED char * textdomain (domainname) const char *domainname; { return libintl_textdomain (domainname); } DLL_EXPORTED char * bindtextdomain (domainname, dirname) const char *domainname; const char *dirname; { return libintl_bindtextdomain (domainname, dirname); } DLL_EXPORTED char * bind_textdomain_codeset (domainname, codeset) const char *domainname; const char *codeset; { return libintl_bind_textdomain_codeset (domainname, codeset); } tvtime-1.0.11/intl/gmo.h0000664000175000017500000001125712354244126011737 00000000000000/* Description of GNU message catalog format: general file layout. Copyright (C) 1995, 1997, 2000-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _GETTEXT_H #define _GETTEXT_H 1 #include /* @@ end of prolog @@ */ /* The magic number of the GNU message catalog format. */ #define _MAGIC 0x950412de #define _MAGIC_SWAPPED 0xde120495 /* Revision number of the currently used .mo (binary) file format. */ #define MO_REVISION_NUMBER 0 /* The following contortions are an attempt to use the C preprocessor to determine an unsigned integral type that is 32 bits wide. An alternative approach is to use autoconf's AC_CHECK_SIZEOF macro, but as of version autoconf-2.13, the AC_CHECK_SIZEOF macro doesn't work when cross-compiling. */ #if __STDC__ # define UINT_MAX_32_BITS 4294967295U #else # define UINT_MAX_32_BITS 0xFFFFFFFF #endif /* If UINT_MAX isn't defined, assume it's a 32-bit type. This should be valid for all systems GNU cares about because that doesn't include 16-bit systems, and only modern systems (that certainly have ) have 64+-bit integral types. */ #ifndef UINT_MAX # define UINT_MAX UINT_MAX_32_BITS #endif #if UINT_MAX == UINT_MAX_32_BITS typedef unsigned nls_uint32; #else # if USHRT_MAX == UINT_MAX_32_BITS typedef unsigned short nls_uint32; # else # if ULONG_MAX == UINT_MAX_32_BITS typedef unsigned long nls_uint32; # else /* The following line is intended to throw an error. Using #error is not portable enough. */ "Cannot determine unsigned 32-bit data type." # endif # endif #endif /* Header for binary .mo file format. */ struct mo_file_header { /* The magic number. */ nls_uint32 magic; /* The revision number of the file format. */ nls_uint32 revision; /* The following are only used in .mo files with major revision 0. */ /* The number of strings pairs. */ nls_uint32 nstrings; /* Offset of table with start offsets of original strings. */ nls_uint32 orig_tab_offset; /* Offset of table with start offsets of translated strings. */ nls_uint32 trans_tab_offset; /* Size of hash table. */ nls_uint32 hash_tab_size; /* Offset of first hash table entry. */ nls_uint32 hash_tab_offset; /* The following are only used in .mo files with minor revision >= 1. */ /* The number of system dependent segments. */ nls_uint32 n_sysdep_segments; /* Offset of table describing system dependent segments. */ nls_uint32 sysdep_segments_offset; /* The number of system dependent strings pairs. */ nls_uint32 n_sysdep_strings; /* Offset of table with start offsets of original sysdep strings. */ nls_uint32 orig_sysdep_tab_offset; /* Offset of table with start offsets of translated sysdep strings. */ nls_uint32 trans_sysdep_tab_offset; }; /* Descriptor for static string contained in the binary .mo file. */ struct string_desc { /* Length of addressed string, not including the trailing NUL. */ nls_uint32 length; /* Offset of string in file. */ nls_uint32 offset; }; /* The following are only used in .mo files with minor revision >= 1. */ /* Descriptor for system dependent string segment. */ struct sysdep_segment { /* Length of addressed string, including the trailing NUL. */ nls_uint32 length; /* Offset of string in file. */ nls_uint32 offset; }; /* Descriptor for system dependent string. */ struct sysdep_string { /* Offset of static string segments in file. */ nls_uint32 offset; /* Alternating sequence of static and system dependent segments. The last segment is a static segment, including the trailing NUL. */ struct segment_pair { /* Size of static segment. */ nls_uint32 segsize; /* Reference to system dependent string segment, or ~0 at the end. */ nls_uint32 sysdepref; } segments[1]; }; /* Marker for the end of the segments[] array. This has the value 0xFFFFFFFF, regardless whether 'int' is 16 bit, 32 bit, or 64 bit. */ #define SEGMENTS_END ((nls_uint32) ~0) /* @@ begin of epilog @@ */ #endif /* gettext.h */ tvtime-1.0.11/intl/hash-string.h0000664000175000017500000000357412354244126013407 00000000000000/* Description of GNU message catalog format: string hashing function. Copyright (C) 1995, 1997, 1998, 2000, 2001 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* @@ end of prolog @@ */ #ifndef PARAMS # if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES # define PARAMS(Args) Args # else # define PARAMS(Args) () # endif #endif /* We assume to have `unsigned long int' value with at least 32 bits. */ #define HASHWORDBITS 32 /* Defines the so called `hashpjw' function by P.J. Weinberger [see Aho/Sethi/Ullman, COMPILERS: Principles, Techniques and Tools, 1986, 1987 Bell Telephone Laboratories, Inc.] */ static unsigned long int hash_string PARAMS ((const char *__str_param)); static inline unsigned long int hash_string (str_param) const char *str_param; { unsigned long int hval, g; const char *str = str_param; /* Compute the hash value for the given string. */ hval = 0; while (*str != '\0') { hval <<= 4; hval += (unsigned long int) *str++; g = hval & ((unsigned long int) 0xf << (HASHWORDBITS - 4)); if (g != 0) { hval ^= g >> (HASHWORDBITS - 8); hval ^= g; } } return hval; } tvtime-1.0.11/intl/relocatable.c0000664000175000017500000003071612354244126013426 00000000000000/* Provide relocatable packages. Copyright (C) 2003 Free Software Foundation, Inc. Written by Bruno Haible , 2003. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Tell glibc's to provide a prototype for getline(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include "config.h" #endif /* Specification. */ #include "relocatable.h" #if ENABLE_RELOCATABLE #include #include #include #include #ifdef NO_XMALLOC # define xmalloc malloc #else # include "xmalloc.h" #endif #if DEPENDS_ON_LIBCHARSET # include #endif #if DEPENDS_ON_LIBICONV && HAVE_ICONV # include #endif #if DEPENDS_ON_LIBINTL && ENABLE_NLS # include #endif /* Faked cheap 'bool'. */ #undef bool #undef false #undef true #define bool int #define false 0 #define true 1 /* Pathname support. ISSLASH(C) tests whether C is a directory separator character. IS_PATH_WITH_DIR(P) tests whether P contains a directory specification. */ #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') # define HAS_DEVICE(P) \ ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \ && (P)[1] == ':') # define IS_PATH_WITH_DIR(P) \ (strchr (P, '/') != NULL || strchr (P, '\\') != NULL || HAS_DEVICE (P)) # define FILESYSTEM_PREFIX_LEN(P) (HAS_DEVICE (P) ? 2 : 0) #else /* Unix */ # define ISSLASH(C) ((C) == '/') # define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL) # define FILESYSTEM_PREFIX_LEN(P) 0 #endif /* Original installation prefix. */ static char *orig_prefix; static size_t orig_prefix_len; /* Current installation prefix. */ static char *curr_prefix; static size_t curr_prefix_len; /* These prefixes do not end in a slash. Anything that will be concatenated to them must start with a slash. */ /* Sets the original and the current installation prefix of this module. Relocation simply replaces a pathname starting with the original prefix by the corresponding pathname with the current prefix instead. Both prefixes should be directory names without trailing slash (i.e. use "" instead of "/"). */ static void set_this_relocation_prefix (const char *orig_prefix_arg, const char *curr_prefix_arg) { if (orig_prefix_arg != NULL && curr_prefix_arg != NULL /* Optimization: if orig_prefix and curr_prefix are equal, the relocation is a nop. */ && strcmp (orig_prefix_arg, curr_prefix_arg) != 0) { /* Duplicate the argument strings. */ char *memory; orig_prefix_len = strlen (orig_prefix_arg); curr_prefix_len = strlen (curr_prefix_arg); memory = (char *) xmalloc (orig_prefix_len + 1 + curr_prefix_len + 1); #ifdef NO_XMALLOC if (memory != NULL) #endif { memcpy (memory, orig_prefix_arg, orig_prefix_len + 1); orig_prefix = memory; memory += orig_prefix_len + 1; memcpy (memory, curr_prefix_arg, curr_prefix_len + 1); curr_prefix = memory; return; } } orig_prefix = NULL; curr_prefix = NULL; /* Don't worry about wasted memory here - this function is usually only called once. */ } /* Sets the original and the current installation prefix of the package. Relocation simply replaces a pathname starting with the original prefix by the corresponding pathname with the current prefix instead. Both prefixes should be directory names without trailing slash (i.e. use "" instead of "/"). */ void set_relocation_prefix (const char *orig_prefix_arg, const char *curr_prefix_arg) { set_this_relocation_prefix (orig_prefix_arg, curr_prefix_arg); /* Now notify all dependent libraries. */ #if DEPENDS_ON_LIBCHARSET libcharset_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg); #endif #if DEPENDS_ON_LIBICONV && HAVE_ICONV && _LIBICONV_VERSION >= 0x0109 libiconv_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg); #endif #if DEPENDS_ON_LIBINTL && ENABLE_NLS && defined libintl_set_relocation_prefix libintl_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg); #endif } /* Convenience function: Computes the current installation prefix, based on the original installation prefix, the original installation directory of a particular file, and the current pathname of this file. Returns NULL upon failure. */ #ifdef IN_LIBRARY #define compute_curr_prefix local_compute_curr_prefix static #endif const char * compute_curr_prefix (const char *orig_installprefix, const char *orig_installdir, const char *curr_pathname) { const char *curr_installdir; const char *rel_installdir; if (curr_pathname == NULL) return NULL; /* Determine the relative installation directory, relative to the prefix. This is simply the difference between orig_installprefix and orig_installdir. */ if (strncmp (orig_installprefix, orig_installdir, strlen (orig_installprefix)) != 0) /* Shouldn't happen - nothing should be installed outside $(prefix). */ return NULL; rel_installdir = orig_installdir + strlen (orig_installprefix); /* Determine the current installation directory. */ { const char *p_base = curr_pathname + FILESYSTEM_PREFIX_LEN (curr_pathname); const char *p = curr_pathname + strlen (curr_pathname); char *q; while (p > p_base) { p--; if (ISSLASH (*p)) break; } q = (char *) xmalloc (p - curr_pathname + 1); #ifdef NO_XMALLOC if (q == NULL) return NULL; #endif memcpy (q, curr_pathname, p - curr_pathname); q[p - curr_pathname] = '\0'; curr_installdir = q; } /* Compute the current installation prefix by removing the trailing rel_installdir from it. */ { const char *rp = rel_installdir + strlen (rel_installdir); const char *cp = curr_installdir + strlen (curr_installdir); const char *cp_base = curr_installdir + FILESYSTEM_PREFIX_LEN (curr_installdir); while (rp > rel_installdir && cp > cp_base) { bool same = false; const char *rpi = rp; const char *cpi = cp; while (rpi > rel_installdir && cpi > cp_base) { rpi--; cpi--; if (ISSLASH (*rpi) || ISSLASH (*cpi)) { if (ISSLASH (*rpi) && ISSLASH (*cpi)) same = true; break; } #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS - case insignificant filesystem */ if ((*rpi >= 'a' && *rpi <= 'z' ? *rpi - 'a' + 'A' : *rpi) != (*cpi >= 'a' && *cpi <= 'z' ? *cpi - 'a' + 'A' : *cpi)) break; #else if (*rpi != *cpi) break; #endif } if (!same) break; /* The last pathname component was the same. opi and cpi now point to the slash before it. */ rp = rpi; cp = cpi; } if (rp > rel_installdir) /* Unexpected: The curr_installdir does not end with rel_installdir. */ return NULL; { size_t curr_prefix_len = cp - curr_installdir; char *curr_prefix; curr_prefix = (char *) xmalloc (curr_prefix_len + 1); #ifdef NO_XMALLOC if (curr_prefix == NULL) return NULL; #endif memcpy (curr_prefix, curr_installdir, curr_prefix_len); curr_prefix[curr_prefix_len] = '\0'; return curr_prefix; } } } #if defined PIC && defined INSTALLDIR /* Full pathname of shared library, or NULL. */ static char *shared_library_fullname; #if defined _WIN32 || defined __WIN32__ /* Determine the full pathname of the shared library when it is loaded. */ BOOL WINAPI DllMain (HINSTANCE module_handle, DWORD event, LPVOID reserved) { (void) reserved; if (event == DLL_PROCESS_ATTACH) { /* The DLL is being loaded into an application's address range. */ static char location[MAX_PATH]; if (!GetModuleFileName (module_handle, location, sizeof (location))) /* Shouldn't happen. */ return FALSE; if (!IS_PATH_WITH_DIR (location)) /* Shouldn't happen. */ return FALSE; shared_library_fullname = strdup (location); } return TRUE; } #else /* Unix */ static void find_shared_library_fullname () { #ifdef __linux__ FILE *fp; /* Open the current process' maps file. It describes one VMA per line. */ fp = fopen ("/proc/self/maps", "r"); if (fp) { unsigned long address = (unsigned long) &find_shared_library_fullname; for (;;) { unsigned long start, end; int c; if (fscanf (fp, "%lx-%lx", &start, &end) != 2) break; if (address >= start && address <= end - 1) { /* Found it. Now see if this line contains a filename. */ while (c = getc (fp), c != EOF && c != '\n' && c != '/') continue; if (c == '/') { size_t size; int len; ungetc (c, fp); shared_library_fullname = NULL; size = 0; len = getline (&shared_library_fullname, &size, fp); if (len >= 0) { /* Success: filled shared_library_fullname. */ if (len > 0 && shared_library_fullname[len - 1] == '\n') shared_library_fullname[len - 1] = '\0'; } } break; } while (c = getc (fp), c != EOF && c != '\n') continue; } fclose (fp); } #endif } #endif /* WIN32 / Unix */ /* Return the full pathname of the current shared library. Return NULL if unknown. Guaranteed to work only on Linux and Woe32. */ static char * get_shared_library_fullname () { #if !(defined _WIN32 || defined __WIN32__) static bool tried_find_shared_library_fullname; if (!tried_find_shared_library_fullname) { find_shared_library_fullname (); tried_find_shared_library_fullname = true; } #endif return shared_library_fullname; } #endif /* PIC */ /* Returns the pathname, relocated according to the current installation directory. */ const char * relocate (const char *pathname) { #if defined PIC && defined INSTALLDIR static int initialized; /* Initialization code for a shared library. */ if (!initialized) { /* At this point, orig_prefix and curr_prefix likely have already been set through the main program's set_program_name_and_installdir function. This is sufficient in the case that the library has initially been installed in the same orig_prefix. But we can do better, to also cover the cases that 1. it has been installed in a different prefix before being moved to orig_prefix and (later) to curr_prefix, 2. unlike the program, it has not moved away from orig_prefix. */ const char *orig_installprefix = INSTALLPREFIX; const char *orig_installdir = INSTALLDIR; const char *curr_prefix_better; curr_prefix_better = compute_curr_prefix (orig_installprefix, orig_installdir, get_shared_library_fullname ()); if (curr_prefix_better == NULL) curr_prefix_better = curr_prefix; set_relocation_prefix (orig_installprefix, curr_prefix_better); initialized = 1; } #endif /* Note: It is not necessary to perform case insensitive comparison here, even for DOS-like filesystems, because the pathname argument was typically created from the same Makefile variable as orig_prefix came from. */ if (orig_prefix != NULL && curr_prefix != NULL && strncmp (pathname, orig_prefix, orig_prefix_len) == 0) { if (pathname[orig_prefix_len] == '\0') /* pathname equals orig_prefix. */ return curr_prefix; if (ISSLASH (pathname[orig_prefix_len])) { /* pathname starts with orig_prefix. */ const char *pathname_tail = &pathname[orig_prefix_len]; char *result = (char *) xmalloc (curr_prefix_len + strlen (pathname_tail) + 1); #ifdef NO_XMALLOC if (result != NULL) #endif { memcpy (result, curr_prefix, curr_prefix_len); strcpy (result + curr_prefix_len, pathname_tail); return result; } } } /* Nothing to relocate. */ return pathname; } #endif tvtime-1.0.11/intl/plural-exp.h0000664000175000017500000001030412354244126013236 00000000000000/* Expression parsing and evaluation for plural form selection. Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _PLURAL_EXP_H #define _PLURAL_EXP_H #ifndef PARAMS # if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES # define PARAMS(args) args # else # define PARAMS(args) () # endif #endif #ifndef internal_function # define internal_function #endif #ifndef attribute_hidden # define attribute_hidden #endif /* This is the representation of the expressions to determine the plural form. */ struct expression { int nargs; /* Number of arguments. */ enum operator { /* Without arguments: */ var, /* The variable "n". */ num, /* Decimal number. */ /* Unary operators: */ lnot, /* Logical NOT. */ /* Binary operators: */ mult, /* Multiplication. */ divide, /* Division. */ module, /* Modulo operation. */ plus, /* Addition. */ minus, /* Subtraction. */ less_than, /* Comparison. */ greater_than, /* Comparison. */ less_or_equal, /* Comparison. */ greater_or_equal, /* Comparison. */ equal, /* Comparison for equality. */ not_equal, /* Comparison for inequality. */ land, /* Logical AND. */ lor, /* Logical OR. */ /* Ternary operators: */ qmop /* Question mark operator. */ } operation; union { unsigned long int num; /* Number value for `num'. */ struct expression *args[3]; /* Up to three arguments. */ } val; }; /* This is the data structure to pass information to the parser and get the result in a thread-safe way. */ struct parse_args { const char *cp; struct expression *res; }; /* Names for the libintl functions are a problem. This source code is used 1. in the GNU C Library library, 2. in the GNU libintl library, 3. in the GNU gettext tools. The function names in each situation must be different, to allow for binary incompatible changes in 'struct expression'. Furthermore, 1. in the GNU C Library library, the names have a __ prefix, 2.+3. in the GNU libintl library and in the GNU gettext tools, the names must follow ANSI C and not start with __. So we have to distinguish the three cases. */ #ifdef _LIBC # define FREE_EXPRESSION __gettext_free_exp # define PLURAL_PARSE __gettextparse # define GERMANIC_PLURAL __gettext_germanic_plural # define EXTRACT_PLURAL_EXPRESSION __gettext_extract_plural #elif defined (IN_LIBINTL) # define FREE_EXPRESSION libintl_gettext_free_exp # define PLURAL_PARSE libintl_gettextparse # define GERMANIC_PLURAL libintl_gettext_germanic_plural # define EXTRACT_PLURAL_EXPRESSION libintl_gettext_extract_plural #else # define FREE_EXPRESSION free_plural_expression # define PLURAL_PARSE parse_plural_expression # define GERMANIC_PLURAL germanic_plural # define EXTRACT_PLURAL_EXPRESSION extract_plural_expression #endif extern void FREE_EXPRESSION PARAMS ((struct expression *exp)) internal_function; extern int PLURAL_PARSE PARAMS ((void *arg)); extern struct expression GERMANIC_PLURAL attribute_hidden; extern void EXTRACT_PLURAL_EXPRESSION PARAMS ((const char *nullentry, struct expression **pluralp, unsigned long int *npluralsp)) internal_function; #if !defined (_LIBC) && !defined (IN_LIBINTL) extern unsigned long int plural_eval PARAMS ((struct expression *pexp, unsigned long int n)); #endif #endif /* _PLURAL_EXP_H */ tvtime-1.0.11/intl/locale.alias0000664000175000017500000000514112354244126013251 00000000000000# Locale name alias data base. # Copyright (C) 1996,1997,1998,1999,2000,2001 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library General Public License as published # by the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. # The format of this file is the same as for the corresponding file of # the X Window System, which normally can be found in # /usr/lib/X11/locale/locale.alias # A single line contains two fields: an alias and a substitution value. # All entries are case independent. # Note: This file is far from being complete. If you have a value for # your own site which you think might be useful for others too, share # it with the rest of us. Send it using the `glibcbug' script to # bugs@gnu.org. # Packages using this file: bokmal no_NO.ISO-8859-1 bokmål no_NO.ISO-8859-1 catalan ca_ES.ISO-8859-1 croatian hr_HR.ISO-8859-2 czech cs_CZ.ISO-8859-2 danish da_DK.ISO-8859-1 dansk da_DK.ISO-8859-1 deutsch de_DE.ISO-8859-1 dutch nl_NL.ISO-8859-1 eesti et_EE.ISO-8859-1 estonian et_EE.ISO-8859-1 finnish fi_FI.ISO-8859-1 français fr_FR.ISO-8859-1 french fr_FR.ISO-8859-1 galego gl_ES.ISO-8859-1 galician gl_ES.ISO-8859-1 german de_DE.ISO-8859-1 greek el_GR.ISO-8859-7 hebrew he_IL.ISO-8859-8 hrvatski hr_HR.ISO-8859-2 hungarian hu_HU.ISO-8859-2 icelandic is_IS.ISO-8859-1 italian it_IT.ISO-8859-1 japanese ja_JP.eucJP japanese.euc ja_JP.eucJP ja_JP ja_JP.eucJP ja_JP.ujis ja_JP.eucJP japanese.sjis ja_JP.SJIS korean ko_KR.eucKR korean.euc ko_KR.eucKR ko_KR ko_KR.eucKR lithuanian lt_LT.ISO-8859-13 nb_NO no_NO.ISO-8859-1 nb_NO.ISO-8859-1 no_NO.ISO-8859-1 norwegian no_NO.ISO-8859-1 nynorsk nn_NO.ISO-8859-1 polish pl_PL.ISO-8859-2 portuguese pt_PT.ISO-8859-1 romanian ro_RO.ISO-8859-2 russian ru_RU.ISO-8859-5 slovak sk_SK.ISO-8859-2 slovene sl_SI.ISO-8859-2 slovenian sl_SI.ISO-8859-2 spanish es_ES.ISO-8859-1 swedish sv_SE.ISO-8859-1 thai th_TH.TIS-620 turkish tr_TR.ISO-8859-9 tvtime-1.0.11/intl/ngettext.c0000664000175000017500000000374112354244126013011 00000000000000/* Implementation of ngettext(3) function. Copyright (C) 1995, 1997, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #ifdef _LIBC # define __need_NULL # include #else # include /* Just for NULL. */ #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif #include /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define NGETTEXT __ngettext # define DCNGETTEXT __dcngettext #else # define NGETTEXT libintl_ngettext # define DCNGETTEXT libintl_dcngettext #endif /* Look up MSGID in the current default message catalog for the current LC_MESSAGES locale. If not found, returns MSGID itself (the default text). */ char * NGETTEXT (msgid1, msgid2, n) const char *msgid1; const char *msgid2; unsigned long int n; { return DCNGETTEXT (NULL, msgid1, msgid2, n, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__ngettext, ngettext); #endif tvtime-1.0.11/intl/ChangeLog0000664000175000017500000000011112354244126012541 000000000000002003-05-22 GNU * Version 0.12.1 released. tvtime-1.0.11/intl/localename.c0000664000175000017500000005412612354244126013252 00000000000000/* Determine the current selected locale. Copyright (C) 1995-1999, 2000-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Written by Ulrich Drepper , 1995. */ /* Win32 code written by Tor Lillqvist . */ #ifdef HAVE_CONFIG_H # include #endif #include #include #if defined _WIN32 || defined __WIN32__ # undef WIN32 /* avoid warning on mingw32 */ # define WIN32 #endif #ifdef WIN32 # define WIN32_LEAN_AND_MEAN # include /* Mingw headers don't have latest language and sublanguage codes. */ # ifndef LANG_AFRIKAANS # define LANG_AFRIKAANS 0x36 # endif # ifndef LANG_ALBANIAN # define LANG_ALBANIAN 0x1c # endif # ifndef LANG_ARABIC # define LANG_ARABIC 0x01 # endif # ifndef LANG_ARMENIAN # define LANG_ARMENIAN 0x2b # endif # ifndef LANG_ASSAMESE # define LANG_ASSAMESE 0x4d # endif # ifndef LANG_AZERI # define LANG_AZERI 0x2c # endif # ifndef LANG_BASQUE # define LANG_BASQUE 0x2d # endif # ifndef LANG_BELARUSIAN # define LANG_BELARUSIAN 0x23 # endif # ifndef LANG_BENGALI # define LANG_BENGALI 0x45 # endif # ifndef LANG_CATALAN # define LANG_CATALAN 0x03 # endif # ifndef LANG_DIVEHI # define LANG_DIVEHI 0x65 # endif # ifndef LANG_ESTONIAN # define LANG_ESTONIAN 0x25 # endif # ifndef LANG_FAEROESE # define LANG_FAEROESE 0x38 # endif # ifndef LANG_FARSI # define LANG_FARSI 0x29 # endif # ifndef LANG_GALICIAN # define LANG_GALICIAN 0x56 # endif # ifndef LANG_GEORGIAN # define LANG_GEORGIAN 0x37 # endif # ifndef LANG_GUJARATI # define LANG_GUJARATI 0x47 # endif # ifndef LANG_HEBREW # define LANG_HEBREW 0x0d # endif # ifndef LANG_HINDI # define LANG_HINDI 0x39 # endif # ifndef LANG_INDONESIAN # define LANG_INDONESIAN 0x21 # endif # ifndef LANG_KANNADA # define LANG_KANNADA 0x4b # endif # ifndef LANG_KASHMIRI # define LANG_KASHMIRI 0x60 # endif # ifndef LANG_KAZAK # define LANG_KAZAK 0x3f # endif # ifndef LANG_KONKANI # define LANG_KONKANI 0x57 # endif # ifndef LANG_KYRGYZ # define LANG_KYRGYZ 0x40 # endif # ifndef LANG_LATVIAN # define LANG_LATVIAN 0x26 # endif # ifndef LANG_LITHUANIAN # define LANG_LITHUANIAN 0x27 # endif # ifndef LANG_MACEDONIAN # define LANG_MACEDONIAN 0x2f # endif # ifndef LANG_MALAY # define LANG_MALAY 0x3e # endif # ifndef LANG_MALAYALAM # define LANG_MALAYALAM 0x4c # endif # ifndef LANG_MANIPURI # define LANG_MANIPURI 0x58 # endif # ifndef LANG_MARATHI # define LANG_MARATHI 0x4e # endif # ifndef LANG_MONGOLIAN # define LANG_MONGOLIAN 0x50 # endif # ifndef LANG_NEPALI # define LANG_NEPALI 0x61 # endif # ifndef LANG_ORIYA # define LANG_ORIYA 0x48 # endif # ifndef LANG_PUNJABI # define LANG_PUNJABI 0x46 # endif # ifndef LANG_SANSKRIT # define LANG_SANSKRIT 0x4f # endif # ifndef LANG_SERBIAN # define LANG_SERBIAN 0x1a # endif # ifndef LANG_SINDHI # define LANG_SINDHI 0x59 # endif # ifndef LANG_SLOVAK # define LANG_SLOVAK 0x1b # endif # ifndef LANG_SORBIAN # define LANG_SORBIAN 0x2e # endif # ifndef LANG_SWAHILI # define LANG_SWAHILI 0x41 # endif # ifndef LANG_SYRIAC # define LANG_SYRIAC 0x5a # endif # ifndef LANG_TAMIL # define LANG_TAMIL 0x49 # endif # ifndef LANG_TATAR # define LANG_TATAR 0x44 # endif # ifndef LANG_TELUGU # define LANG_TELUGU 0x4a # endif # ifndef LANG_THAI # define LANG_THAI 0x1e # endif # ifndef LANG_UKRAINIAN # define LANG_UKRAINIAN 0x22 # endif # ifndef LANG_URDU # define LANG_URDU 0x20 # endif # ifndef LANG_UZBEK # define LANG_UZBEK 0x43 # endif # ifndef LANG_VIETNAMESE # define LANG_VIETNAMESE 0x2a # endif # ifndef SUBLANG_ARABIC_SAUDI_ARABIA # define SUBLANG_ARABIC_SAUDI_ARABIA 0x01 # endif # ifndef SUBLANG_ARABIC_IRAQ # define SUBLANG_ARABIC_IRAQ 0x02 # endif # ifndef SUBLANG_ARABIC_EGYPT # define SUBLANG_ARABIC_EGYPT 0x03 # endif # ifndef SUBLANG_ARABIC_LIBYA # define SUBLANG_ARABIC_LIBYA 0x04 # endif # ifndef SUBLANG_ARABIC_ALGERIA # define SUBLANG_ARABIC_ALGERIA 0x05 # endif # ifndef SUBLANG_ARABIC_MOROCCO # define SUBLANG_ARABIC_MOROCCO 0x06 # endif # ifndef SUBLANG_ARABIC_TUNISIA # define SUBLANG_ARABIC_TUNISIA 0x07 # endif # ifndef SUBLANG_ARABIC_OMAN # define SUBLANG_ARABIC_OMAN 0x08 # endif # ifndef SUBLANG_ARABIC_YEMEN # define SUBLANG_ARABIC_YEMEN 0x09 # endif # ifndef SUBLANG_ARABIC_SYRIA # define SUBLANG_ARABIC_SYRIA 0x0a # endif # ifndef SUBLANG_ARABIC_JORDAN # define SUBLANG_ARABIC_JORDAN 0x0b # endif # ifndef SUBLANG_ARABIC_LEBANON # define SUBLANG_ARABIC_LEBANON 0x0c # endif # ifndef SUBLANG_ARABIC_KUWAIT # define SUBLANG_ARABIC_KUWAIT 0x0d # endif # ifndef SUBLANG_ARABIC_UAE # define SUBLANG_ARABIC_UAE 0x0e # endif # ifndef SUBLANG_ARABIC_BAHRAIN # define SUBLANG_ARABIC_BAHRAIN 0x0f # endif # ifndef SUBLANG_ARABIC_QATAR # define SUBLANG_ARABIC_QATAR 0x10 # endif # ifndef SUBLANG_AZERI_LATIN # define SUBLANG_AZERI_LATIN 0x01 # endif # ifndef SUBLANG_AZERI_CYRILLIC # define SUBLANG_AZERI_CYRILLIC 0x02 # endif # ifndef SUBLANG_CHINESE_MACAU # define SUBLANG_CHINESE_MACAU 0x05 # endif # ifndef SUBLANG_ENGLISH_SOUTH_AFRICA # define SUBLANG_ENGLISH_SOUTH_AFRICA 0x07 # endif # ifndef SUBLANG_ENGLISH_JAMAICA # define SUBLANG_ENGLISH_JAMAICA 0x08 # endif # ifndef SUBLANG_ENGLISH_CARIBBEAN # define SUBLANG_ENGLISH_CARIBBEAN 0x09 # endif # ifndef SUBLANG_ENGLISH_BELIZE # define SUBLANG_ENGLISH_BELIZE 0x0a # endif # ifndef SUBLANG_ENGLISH_TRINIDAD # define SUBLANG_ENGLISH_TRINIDAD 0x0b # endif # ifndef SUBLANG_ENGLISH_ZIMBABWE # define SUBLANG_ENGLISH_ZIMBABWE 0x0c # endif # ifndef SUBLANG_ENGLISH_PHILIPPINES # define SUBLANG_ENGLISH_PHILIPPINES 0x0d # endif # ifndef SUBLANG_FRENCH_LUXEMBOURG # define SUBLANG_FRENCH_LUXEMBOURG 0x05 # endif # ifndef SUBLANG_FRENCH_MONACO # define SUBLANG_FRENCH_MONACO 0x06 # endif # ifndef SUBLANG_GERMAN_LUXEMBOURG # define SUBLANG_GERMAN_LUXEMBOURG 0x04 # endif # ifndef SUBLANG_GERMAN_LIECHTENSTEIN # define SUBLANG_GERMAN_LIECHTENSTEIN 0x05 # endif # ifndef SUBLANG_KASHMIRI_INDIA # define SUBLANG_KASHMIRI_INDIA 0x02 # endif # ifndef SUBLANG_MALAY_MALAYSIA # define SUBLANG_MALAY_MALAYSIA 0x01 # endif # ifndef SUBLANG_MALAY_BRUNEI_DARUSSALAM # define SUBLANG_MALAY_BRUNEI_DARUSSALAM 0x02 # endif # ifndef SUBLANG_NEPALI_INDIA # define SUBLANG_NEPALI_INDIA 0x02 # endif # ifndef SUBLANG_SERBIAN_LATIN # define SUBLANG_SERBIAN_LATIN 0x02 # endif # ifndef SUBLANG_SERBIAN_CYRILLIC # define SUBLANG_SERBIAN_CYRILLIC 0x03 # endif # ifndef SUBLANG_SPANISH_GUATEMALA # define SUBLANG_SPANISH_GUATEMALA 0x04 # endif # ifndef SUBLANG_SPANISH_COSTA_RICA # define SUBLANG_SPANISH_COSTA_RICA 0x05 # endif # ifndef SUBLANG_SPANISH_PANAMA # define SUBLANG_SPANISH_PANAMA 0x06 # endif # ifndef SUBLANG_SPANISH_DOMINICAN_REPUBLIC # define SUBLANG_SPANISH_DOMINICAN_REPUBLIC 0x07 # endif # ifndef SUBLANG_SPANISH_VENEZUELA # define SUBLANG_SPANISH_VENEZUELA 0x08 # endif # ifndef SUBLANG_SPANISH_COLOMBIA # define SUBLANG_SPANISH_COLOMBIA 0x09 # endif # ifndef SUBLANG_SPANISH_PERU # define SUBLANG_SPANISH_PERU 0x0a # endif # ifndef SUBLANG_SPANISH_ARGENTINA # define SUBLANG_SPANISH_ARGENTINA 0x0b # endif # ifndef SUBLANG_SPANISH_ECUADOR # define SUBLANG_SPANISH_ECUADOR 0x0c # endif # ifndef SUBLANG_SPANISH_CHILE # define SUBLANG_SPANISH_CHILE 0x0d # endif # ifndef SUBLANG_SPANISH_URUGUAY # define SUBLANG_SPANISH_URUGUAY 0x0e # endif # ifndef SUBLANG_SPANISH_PARAGUAY # define SUBLANG_SPANISH_PARAGUAY 0x0f # endif # ifndef SUBLANG_SPANISH_BOLIVIA # define SUBLANG_SPANISH_BOLIVIA 0x10 # endif # ifndef SUBLANG_SPANISH_EL_SALVADOR # define SUBLANG_SPANISH_EL_SALVADOR 0x11 # endif # ifndef SUBLANG_SPANISH_HONDURAS # define SUBLANG_SPANISH_HONDURAS 0x12 # endif # ifndef SUBLANG_SPANISH_NICARAGUA # define SUBLANG_SPANISH_NICARAGUA 0x13 # endif # ifndef SUBLANG_SPANISH_PUERTO_RICO # define SUBLANG_SPANISH_PUERTO_RICO 0x14 # endif # ifndef SUBLANG_SWEDISH_FINLAND # define SUBLANG_SWEDISH_FINLAND 0x02 # endif # ifndef SUBLANG_URDU_PAKISTAN # define SUBLANG_URDU_PAKISTAN 0x01 # endif # ifndef SUBLANG_URDU_INDIA # define SUBLANG_URDU_INDIA 0x02 # endif # ifndef SUBLANG_UZBEK_LATIN # define SUBLANG_UZBEK_LATIN 0x01 # endif # ifndef SUBLANG_UZBEK_CYRILLIC # define SUBLANG_UZBEK_CYRILLIC 0x02 # endif #endif /* XPG3 defines the result of 'setlocale (category, NULL)' as: "Directs 'setlocale()' to query 'category' and return the current setting of 'local'." However it does not specify the exact format. Neither do SUSV2 and ISO C 99. So we can use this feature only on selected systems (e.g. those using GNU C Library). */ #if defined _LIBC || (defined __GNU_LIBRARY__ && __GNU_LIBRARY__ >= 2) # define HAVE_LOCALE_NULL #endif /* Determine the current locale's name, and canonicalize it into XPG syntax language[_territory[.codeset]][@modifier] The codeset part in the result is not reliable; the locale_charset() should be used for codeset information instead. The result must not be freed; it is statically allocated. */ const char * _nl_locale_name (category, categoryname) int category; const char *categoryname; { const char *retval; #ifndef WIN32 /* Use the POSIX methods of looking to 'LC_ALL', 'LC_xxx', and 'LANG'. On some systems this can be done by the 'setlocale' function itself. */ # if defined HAVE_SETLOCALE && defined HAVE_LC_MESSAGES && defined HAVE_LOCALE_NULL retval = setlocale (category, NULL); # else /* Setting of LC_ALL overwrites all other. */ retval = getenv ("LC_ALL"); if (retval == NULL || retval[0] == '\0') { /* Next comes the name of the desired category. */ retval = getenv (categoryname); if (retval == NULL || retval[0] == '\0') { /* Last possibility is the LANG environment variable. */ retval = getenv ("LANG"); if (retval == NULL || retval[0] == '\0') /* We use C as the default domain. POSIX says this is implementation defined. */ retval = "C"; } } # endif return retval; #else /* WIN32 */ /* Return an XPG style locale name language[_territory][@modifier]. Don't even bother determining the codeset; it's not useful in this context, because message catalogs are not specific to a single codeset. */ LCID lcid; LANGID langid; int primary, sub; /* Let the user override the system settings through environment variables, as on POSIX systems. */ retval = getenv ("LC_ALL"); if (retval != NULL && retval[0] != '\0') return retval; retval = getenv (categoryname); if (retval != NULL && retval[0] != '\0') return retval; retval = getenv ("LANG"); if (retval != NULL && retval[0] != '\0') return retval; /* Use native Win32 API locale ID. */ lcid = GetThreadLocale (); /* Strip off the sorting rules, keep only the language part. */ langid = LANGIDFROMLCID (lcid); /* Split into language and territory part. */ primary = PRIMARYLANGID (langid); sub = SUBLANGID (langid); /* Dispatch on language. See also http://www.unicode.org/unicode/onlinedat/languages.html . For details about languages, see http://www.ethnologue.com/ . */ switch (primary) { case LANG_AFRIKAANS: return "af_ZA"; case LANG_ALBANIAN: return "sq_AL"; case 0x5e: /* AMHARIC */ return "am_ET"; case LANG_ARABIC: switch (sub) { case SUBLANG_ARABIC_SAUDI_ARABIA: return "ar_SA"; case SUBLANG_ARABIC_IRAQ: return "ar_IQ"; case SUBLANG_ARABIC_EGYPT: return "ar_EG"; case SUBLANG_ARABIC_LIBYA: return "ar_LY"; case SUBLANG_ARABIC_ALGERIA: return "ar_DZ"; case SUBLANG_ARABIC_MOROCCO: return "ar_MA"; case SUBLANG_ARABIC_TUNISIA: return "ar_TN"; case SUBLANG_ARABIC_OMAN: return "ar_OM"; case SUBLANG_ARABIC_YEMEN: return "ar_YE"; case SUBLANG_ARABIC_SYRIA: return "ar_SY"; case SUBLANG_ARABIC_JORDAN: return "ar_JO"; case SUBLANG_ARABIC_LEBANON: return "ar_LB"; case SUBLANG_ARABIC_KUWAIT: return "ar_KW"; case SUBLANG_ARABIC_UAE: return "ar_AE"; case SUBLANG_ARABIC_BAHRAIN: return "ar_BH"; case SUBLANG_ARABIC_QATAR: return "ar_QA"; } return "ar"; case LANG_ARMENIAN: return "hy_AM"; case LANG_ASSAMESE: return "as_IN"; case LANG_AZERI: switch (sub) { /* FIXME: Adjust this when Azerbaijani locales appear on Unix. */ case SUBLANG_AZERI_LATIN: return "az_AZ@latin"; case SUBLANG_AZERI_CYRILLIC: return "az_AZ@cyrillic"; } return "az"; case LANG_BASQUE: return "eu"; /* Ambiguous: could be "eu_ES" or "eu_FR". */ case LANG_BELARUSIAN: return "be_BY"; case LANG_BENGALI: return "bn_IN"; case LANG_BULGARIAN: return "bg_BG"; case 0x55: /* BURMESE */ return "my_MM"; case 0x53: /* CAMBODIAN */ return "km_KH"; case LANG_CATALAN: return "ca_ES"; case 0x5c: /* CHEROKEE */ return "chr_US"; case LANG_CHINESE: switch (sub) { case SUBLANG_CHINESE_TRADITIONAL: return "zh_TW"; case SUBLANG_CHINESE_SIMPLIFIED: return "zh_CN"; case SUBLANG_CHINESE_HONGKONG: return "zh_HK"; case SUBLANG_CHINESE_SINGAPORE: return "zh_SG"; case SUBLANG_CHINESE_MACAU: return "zh_MO"; } return "zh"; case LANG_CROATIAN: /* LANG_CROATIAN == LANG_SERBIAN * What used to be called Serbo-Croatian * should really now be two separate * languages because of political reasons. * (Says tml, who knows nothing about Serbian * or Croatian.) * (I can feel those flames coming already.) */ switch (sub) { case SUBLANG_DEFAULT: return "hr_HR"; case SUBLANG_SERBIAN_LATIN: return "sr_YU"; case SUBLANG_SERBIAN_CYRILLIC: return "sr_YU@cyrillic"; } return "hr"; case LANG_CZECH: return "cs_CZ"; case LANG_DANISH: return "da_DK"; case LANG_DIVEHI: return "div_MV"; case LANG_DUTCH: switch (sub) { case SUBLANG_DUTCH: return "nl_NL"; case SUBLANG_DUTCH_BELGIAN: /* FLEMISH, VLAAMS */ return "nl_BE"; } return "nl"; case 0x66: /* EDO */ return "bin_NG"; case LANG_ENGLISH: switch (sub) { /* SUBLANG_ENGLISH_US == SUBLANG_DEFAULT. Heh. I thought * English was the language spoken in England. * Oh well. */ case SUBLANG_ENGLISH_US: return "en_US"; case SUBLANG_ENGLISH_UK: return "en_GB"; case SUBLANG_ENGLISH_AUS: return "en_AU"; case SUBLANG_ENGLISH_CAN: return "en_CA"; case SUBLANG_ENGLISH_NZ: return "en_NZ"; case SUBLANG_ENGLISH_EIRE: return "en_IE"; case SUBLANG_ENGLISH_SOUTH_AFRICA: return "en_ZA"; case SUBLANG_ENGLISH_JAMAICA: return "en_JM"; case SUBLANG_ENGLISH_CARIBBEAN: return "en_GD"; /* Grenada? */ case SUBLANG_ENGLISH_BELIZE: return "en_BZ"; case SUBLANG_ENGLISH_TRINIDAD: return "en_TT"; case SUBLANG_ENGLISH_ZIMBABWE: return "en_ZW"; case SUBLANG_ENGLISH_PHILIPPINES: return "en_PH"; } return "en"; case LANG_ESTONIAN: return "et_EE"; case LANG_FAEROESE: return "fo_FO"; case LANG_FARSI: return "fa_IR"; case LANG_FINNISH: return "fi_FI"; case LANG_FRENCH: switch (sub) { case SUBLANG_FRENCH: return "fr_FR"; case SUBLANG_FRENCH_BELGIAN: /* WALLOON */ return "fr_BE"; case SUBLANG_FRENCH_CANADIAN: return "fr_CA"; case SUBLANG_FRENCH_SWISS: return "fr_CH"; case SUBLANG_FRENCH_LUXEMBOURG: return "fr_LU"; case SUBLANG_FRENCH_MONACO: return "fr_MC"; } return "fr"; case 0x62: /* FRISIAN */ return "fy_NL"; case 0x67: /* FULFULDE */ return "ful_NG"; case 0x3c: /* GAELIC */ switch (sub) { case 0x01: /* SCOTTISH */ return "gd_GB"; case 0x02: /* IRISH */ return "ga_IE"; } return "C"; case LANG_GALICIAN: return "gl_ES"; case LANG_GEORGIAN: return "ka_GE"; case LANG_GERMAN: switch (sub) { case SUBLANG_GERMAN: return "de_DE"; case SUBLANG_GERMAN_SWISS: return "de_CH"; case SUBLANG_GERMAN_AUSTRIAN: return "de_AT"; case SUBLANG_GERMAN_LUXEMBOURG: return "de_LU"; case SUBLANG_GERMAN_LIECHTENSTEIN: return "de_LI"; } return "de"; case LANG_GREEK: return "el_GR"; case 0x74: /* GUARANI */ return "gn_PY"; case LANG_GUJARATI: return "gu_IN"; case 0x68: /* HAUSA */ return "ha_NG"; case 0x75: /* HAWAIIAN */ /* FIXME: Do they mean Hawaiian ("haw_US", 1000 speakers) or Hawaii Creole English ("cpe_US", 600000 speakers)? */ return "cpe_US"; case LANG_HEBREW: return "he_IL"; case LANG_HINDI: return "hi_IN"; case LANG_HUNGARIAN: return "hu_HU"; case 0x69: /* IBIBIO */ return "nic_NG"; case LANG_ICELANDIC: return "is_IS"; case 0x70: /* IGBO */ return "ibo_NG"; case LANG_INDONESIAN: return "id_ID"; case 0x5d: /* INUKTITUT */ return "iu_CA"; case LANG_ITALIAN: switch (sub) { case SUBLANG_ITALIAN: return "it_IT"; case SUBLANG_ITALIAN_SWISS: return "it_CH"; } return "it"; case LANG_JAPANESE: return "ja_JP"; case LANG_KANNADA: return "kn_IN"; case 0x71: /* KANURI */ return "kau_NG"; case LANG_KASHMIRI: switch (sub) { case SUBLANG_DEFAULT: return "ks_PK"; case SUBLANG_KASHMIRI_INDIA: return "ks_IN"; } return "ks"; case LANG_KAZAK: return "kk_KZ"; case LANG_KONKANI: /* FIXME: Adjust this when such locales appear on Unix. */ return "kok_IN"; case LANG_KOREAN: return "ko_KR"; case LANG_KYRGYZ: return "ky_KG"; case 0x54: /* LAO */ return "lo_LA"; case 0x76: /* LATIN */ return "la_VA"; case LANG_LATVIAN: return "lv_LV"; case LANG_LITHUANIAN: return "lt_LT"; case LANG_MACEDONIAN: return "mk_MK"; case LANG_MALAY: switch (sub) { case SUBLANG_MALAY_MALAYSIA: return "ms_MY"; case SUBLANG_MALAY_BRUNEI_DARUSSALAM: return "ms_BN"; } return "ms"; case LANG_MALAYALAM: return "ml_IN"; case 0x3a: /* MALTESE */ return "mt_MT"; case LANG_MANIPURI: /* FIXME: Adjust this when such locales appear on Unix. */ return "mni_IN"; case LANG_MARATHI: return "mr_IN"; case LANG_MONGOLIAN: return "mn"; /* Ambiguous: could be "mn_CN" or "mn_MN". */ case LANG_NEPALI: switch (sub) { case SUBLANG_DEFAULT: return "ne_NP"; case SUBLANG_NEPALI_INDIA: return "ne_IN"; } return "ne"; case LANG_NORWEGIAN: switch (sub) { case SUBLANG_NORWEGIAN_BOKMAL: return "no_NO"; case SUBLANG_NORWEGIAN_NYNORSK: return "nn_NO"; } return "no"; case LANG_ORIYA: return "or_IN"; case 0x72: /* OROMO */ return "om_ET"; case 0x79: /* PAPIAMENTU */ return "pap_AN"; case 0x63: /* PASHTO */ return "ps"; /* Ambiguous: could be "ps_PK" or "ps_AF". */ case LANG_POLISH: return "pl_PL"; case LANG_PORTUGUESE: switch (sub) { case SUBLANG_PORTUGUESE: return "pt_PT"; /* Hmm. SUBLANG_PORTUGUESE_BRAZILIAN == SUBLANG_DEFAULT. Same phenomenon as SUBLANG_ENGLISH_US == SUBLANG_DEFAULT. */ case SUBLANG_PORTUGUESE_BRAZILIAN: return "pt_BR"; } return "pt"; case LANG_PUNJABI: return "pa_IN"; case 0x17: /* RHAETO-ROMANCE */ return "rm_CH"; case LANG_ROMANIAN: return "ro_RO"; case LANG_RUSSIAN: return "ru"; /* Ambiguous: could be "ru_RU" or "ru_UA". */ case 0x3b: /* SAMI */ return "se_NO"; case LANG_SANSKRIT: return "sa_IN"; case LANG_SINDHI: return "sd"; case 0x5b: /* SINHALESE */ return "si_LK"; case LANG_SLOVAK: return "sk_SK"; case LANG_SLOVENIAN: return "sl_SI"; case 0x77: /* SOMALI */ return "so_SO"; case LANG_SORBIAN: /* FIXME: Adjust this when such locales appear on Unix. */ return "wen_DE"; case LANG_SPANISH: switch (sub) { case SUBLANG_SPANISH: return "es_ES"; case SUBLANG_SPANISH_MEXICAN: return "es_MX"; case SUBLANG_SPANISH_MODERN: return "es_ES@modern"; /* not seen on Unix */ case SUBLANG_SPANISH_GUATEMALA: return "es_GT"; case SUBLANG_SPANISH_COSTA_RICA: return "es_CR"; case SUBLANG_SPANISH_PANAMA: return "es_PA"; case SUBLANG_SPANISH_DOMINICAN_REPUBLIC: return "es_DO"; case SUBLANG_SPANISH_VENEZUELA: return "es_VE"; case SUBLANG_SPANISH_COLOMBIA: return "es_CO"; case SUBLANG_SPANISH_PERU: return "es_PE"; case SUBLANG_SPANISH_ARGENTINA: return "es_AR"; case SUBLANG_SPANISH_ECUADOR: return "es_EC"; case SUBLANG_SPANISH_CHILE: return "es_CL"; case SUBLANG_SPANISH_URUGUAY: return "es_UY"; case SUBLANG_SPANISH_PARAGUAY: return "es_PY"; case SUBLANG_SPANISH_BOLIVIA: return "es_BO"; case SUBLANG_SPANISH_EL_SALVADOR: return "es_SV"; case SUBLANG_SPANISH_HONDURAS: return "es_HN"; case SUBLANG_SPANISH_NICARAGUA: return "es_NI"; case SUBLANG_SPANISH_PUERTO_RICO: return "es_PR"; } return "es"; case 0x30: /* SUTU */ return "bnt_TZ"; case LANG_SWAHILI: return "sw_KE"; case LANG_SWEDISH: switch (sub) { case SUBLANG_DEFAULT: return "sv_SE"; case SUBLANG_SWEDISH_FINLAND: return "sv_FI"; } return "sv"; case LANG_SYRIAC: return "syr_TR"; /* An extinct language. */ case 0x64: /* TAGALOG */ return "tl_PH"; case 0x28: /* TAJIK */ return "tg_TJ"; case 0x5f: /* TAMAZIGHT */ return "ber_MA"; case LANG_TAMIL: return "ta"; /* Ambiguous: could be "ta_IN" or "ta_LK" or "ta_SG". */ case LANG_TATAR: return "tt_RU"; case LANG_TELUGU: return "te_IN"; case LANG_THAI: return "th_TH"; case 0x51: /* TIBETAN */ return "bo_CN"; case 0x73: /* TIGRINYA */ return "ti_ET"; case 0x31: /* TSONGA */ return "ts_ZA"; case LANG_TURKISH: return "tr_TR"; case 0x42: /* TURKMEN */ return "tk_TM"; case LANG_UKRAINIAN: return "uk_UA"; case LANG_URDU: switch (sub) { case SUBLANG_URDU_PAKISTAN: return "ur_PK"; case SUBLANG_URDU_INDIA: return "ur_IN"; } return "ur"; case LANG_UZBEK: switch (sub) { /* FIXME: Adjust this when Uzbek locales appear on Unix. */ case SUBLANG_UZBEK_LATIN: return "uz_UZ@latin"; case SUBLANG_UZBEK_CYRILLIC: return "uz_UZ@cyrillic"; } return "uz"; case 0x33: /* VENDA */ return "ven_ZA"; case LANG_VIETNAMESE: return "vi_VN"; case 0x52: /* WELSH */ return "cy_GB"; case 0x34: /* XHOSA */ return "xh_ZA"; case 0x78: /* YI */ return "sit_CN"; case 0x3d: /* YIDDISH */ return "yi_IL"; case 0x6a: /* YORUBA */ return "yo_NG"; case 0x35: /* ZULU */ return "zu_ZA"; default: return "C"; } #endif } tvtime-1.0.11/intl/bindtextdom.c0000664000175000017500000002354012354244126013467 00000000000000/* Implementation of the bindtextdomain(3) function Copyright (C) 1995-1998, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #ifdef _LIBC # include #else # include "libgnuintl.h" #endif #include "gettextP.h" #ifdef _LIBC /* We have to handle multi-threaded applications. */ # include #else /* Provide dummy implementation if this is outside glibc. */ # define __libc_rwlock_define(CLASS, NAME) # define __libc_rwlock_wrlock(NAME) # define __libc_rwlock_unlock(NAME) #endif /* The internal variables in the standalone libintl.a must have different names than the internal variables in GNU libc, otherwise programs using libintl.a cannot be linked statically. */ #if !defined _LIBC # define _nl_default_dirname libintl_nl_default_dirname # define _nl_domain_bindings libintl_nl_domain_bindings #endif /* Some compilers, like SunOS4 cc, don't have offsetof in . */ #ifndef offsetof # define offsetof(type,ident) ((size_t)&(((type*)0)->ident)) #endif /* @@ end of prolog @@ */ /* Contains the default location of the message catalogs. */ extern const char _nl_default_dirname[]; #ifdef _LIBC extern const char _nl_default_dirname_internal[] attribute_hidden; #else # define INTUSE(name) name #endif /* List with bindings of specific domains. */ extern struct binding *_nl_domain_bindings; /* Lock variable to protect the global data in the gettext implementation. */ __libc_rwlock_define (extern, _nl_state_lock attribute_hidden) /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define BINDTEXTDOMAIN __bindtextdomain # define BIND_TEXTDOMAIN_CODESET __bind_textdomain_codeset # ifndef strdup # define strdup(str) __strdup (str) # endif #else # define BINDTEXTDOMAIN libintl_bindtextdomain # define BIND_TEXTDOMAIN_CODESET libintl_bind_textdomain_codeset #endif /* Prototypes for local functions. */ static void set_binding_values PARAMS ((const char *domainname, const char **dirnamep, const char **codesetp)); /* Specifies the directory name *DIRNAMEP and the output codeset *CODESETP to be used for the DOMAINNAME message catalog. If *DIRNAMEP or *CODESETP is NULL, the corresponding attribute is not modified, only the current value is returned. If DIRNAMEP or CODESETP is NULL, the corresponding attribute is neither modified nor returned. */ static void set_binding_values (domainname, dirnamep, codesetp) const char *domainname; const char **dirnamep; const char **codesetp; { struct binding *binding; int modified; /* Some sanity checks. */ if (domainname == NULL || domainname[0] == '\0') { if (dirnamep) *dirnamep = NULL; if (codesetp) *codesetp = NULL; return; } __libc_rwlock_wrlock (_nl_state_lock); modified = 0; for (binding = _nl_domain_bindings; binding != NULL; binding = binding->next) { int compare = strcmp (domainname, binding->domainname); if (compare == 0) /* We found it! */ break; if (compare < 0) { /* It is not in the list. */ binding = NULL; break; } } if (binding != NULL) { if (dirnamep) { const char *dirname = *dirnamep; if (dirname == NULL) /* The current binding has be to returned. */ *dirnamep = binding->dirname; else { /* The domain is already bound. If the new value and the old one are equal we simply do nothing. Otherwise replace the old binding. */ char *result = binding->dirname; if (strcmp (dirname, result) != 0) { if (strcmp (dirname, INTUSE(_nl_default_dirname)) == 0) result = (char *) INTUSE(_nl_default_dirname); else { #if defined _LIBC || defined HAVE_STRDUP result = strdup (dirname); #else size_t len = strlen (dirname) + 1; result = (char *) malloc (len); if (__builtin_expect (result != NULL, 1)) memcpy (result, dirname, len); #endif } if (__builtin_expect (result != NULL, 1)) { if (binding->dirname != INTUSE(_nl_default_dirname)) free (binding->dirname); binding->dirname = result; modified = 1; } } *dirnamep = result; } } if (codesetp) { const char *codeset = *codesetp; if (codeset == NULL) /* The current binding has be to returned. */ *codesetp = binding->codeset; else { /* The domain is already bound. If the new value and the old one are equal we simply do nothing. Otherwise replace the old binding. */ char *result = binding->codeset; if (result == NULL || strcmp (codeset, result) != 0) { #if defined _LIBC || defined HAVE_STRDUP result = strdup (codeset); #else size_t len = strlen (codeset) + 1; result = (char *) malloc (len); if (__builtin_expect (result != NULL, 1)) memcpy (result, codeset, len); #endif if (__builtin_expect (result != NULL, 1)) { if (binding->codeset != NULL) free (binding->codeset); binding->codeset = result; binding->codeset_cntr++; modified = 1; } } *codesetp = result; } } } else if ((dirnamep == NULL || *dirnamep == NULL) && (codesetp == NULL || *codesetp == NULL)) { /* Simply return the default values. */ if (dirnamep) *dirnamep = INTUSE(_nl_default_dirname); if (codesetp) *codesetp = NULL; } else { /* We have to create a new binding. */ size_t len = strlen (domainname) + 1; struct binding *new_binding = (struct binding *) malloc (offsetof (struct binding, domainname) + len); if (__builtin_expect (new_binding == NULL, 0)) goto failed; memcpy (new_binding->domainname, domainname, len); if (dirnamep) { const char *dirname = *dirnamep; if (dirname == NULL) /* The default value. */ dirname = INTUSE(_nl_default_dirname); else { if (strcmp (dirname, INTUSE(_nl_default_dirname)) == 0) dirname = INTUSE(_nl_default_dirname); else { char *result; #if defined _LIBC || defined HAVE_STRDUP result = strdup (dirname); if (__builtin_expect (result == NULL, 0)) goto failed_dirname; #else size_t len = strlen (dirname) + 1; result = (char *) malloc (len); if (__builtin_expect (result == NULL, 0)) goto failed_dirname; memcpy (result, dirname, len); #endif dirname = result; } } *dirnamep = dirname; new_binding->dirname = (char *) dirname; } else /* The default value. */ new_binding->dirname = (char *) INTUSE(_nl_default_dirname); new_binding->codeset_cntr = 0; if (codesetp) { const char *codeset = *codesetp; if (codeset != NULL) { char *result; #if defined _LIBC || defined HAVE_STRDUP result = strdup (codeset); if (__builtin_expect (result == NULL, 0)) goto failed_codeset; #else size_t len = strlen (codeset) + 1; result = (char *) malloc (len); if (__builtin_expect (result == NULL, 0)) goto failed_codeset; memcpy (result, codeset, len); #endif codeset = result; new_binding->codeset_cntr++; } *codesetp = codeset; new_binding->codeset = (char *) codeset; } else new_binding->codeset = NULL; /* Now enqueue it. */ if (_nl_domain_bindings == NULL || strcmp (domainname, _nl_domain_bindings->domainname) < 0) { new_binding->next = _nl_domain_bindings; _nl_domain_bindings = new_binding; } else { binding = _nl_domain_bindings; while (binding->next != NULL && strcmp (domainname, binding->next->domainname) > 0) binding = binding->next; new_binding->next = binding->next; binding->next = new_binding; } modified = 1; /* Here we deal with memory allocation failures. */ if (0) { failed_codeset: if (new_binding->dirname != INTUSE(_nl_default_dirname)) free (new_binding->dirname); failed_dirname: free (new_binding); failed: if (dirnamep) *dirnamep = NULL; if (codesetp) *codesetp = NULL; } } /* If we modified any binding, we flush the caches. */ if (modified) ++_nl_msg_cat_cntr; __libc_rwlock_unlock (_nl_state_lock); } /* Specify that the DOMAINNAME message catalog will be found in DIRNAME rather than in the system locale data base. */ char * BINDTEXTDOMAIN (domainname, dirname) const char *domainname; const char *dirname; { set_binding_values (domainname, &dirname, NULL); return (char *) dirname; } /* Specify the character encoding in which the messages from the DOMAINNAME message catalog will be returned. */ char * BIND_TEXTDOMAIN_CODESET (domainname, codeset) const char *domainname; const char *codeset; { set_binding_values (domainname, NULL, &codeset); return (char *) codeset; } #ifdef _LIBC /* Aliases for function names in GNU C Library. */ weak_alias (__bindtextdomain, bindtextdomain); weak_alias (__bind_textdomain_codeset, bind_textdomain_codeset); #endif tvtime-1.0.11/intl/plural.c0000644000175000017500000011231412522224716012441 00000000000000/* A Bison parser, made from plural.y by GNU bison 1.35. */ #define YYBISON 1 /* Identify Bison output. */ #define yyparse __gettextparse #define yylex __gettextlex #define yyerror __gettexterror #define yylval __gettextlval #define yychar __gettextchar #define yydebug __gettextdebug #define yynerrs __gettextnerrs # define EQUOP2 257 # define CMPOP2 258 # define ADDOP2 259 # define MULOP2 260 # define NUMBER 261 #line 1 "plural.y" /* Expression parsing for plural form selection. Copyright (C) 2000, 2001 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* The bison generated parser uses alloca. AIX 3 forces us to put this declaration at the beginning of the file. The declaration in bison's skeleton file comes too late. This must come before because may include arbitrary system headers. */ #if defined _AIX && !defined __GNUC__ #pragma alloca #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #include "plural-exp.h" /* The main function generated by the parser is called __gettextparse, but we want it to be called PLURAL_PARSE. */ #ifndef _LIBC # define __gettextparse PLURAL_PARSE #endif #define YYLEX_PARAM &((struct parse_args *) arg)->cp #define YYPARSE_PARAM arg #line 49 "plural.y" #ifndef YYSTYPE typedef union { unsigned long int num; enum operator op; struct expression *exp; } yystype; # define YYSTYPE yystype # define YYSTYPE_IS_TRIVIAL 1 #endif #line 55 "plural.y" /* Prototypes for local functions. */ static struct expression *new_exp PARAMS ((int nargs, enum operator op, struct expression * const *args)); static inline struct expression *new_exp_0 PARAMS ((enum operator op)); static inline struct expression *new_exp_1 PARAMS ((enum operator op, struct expression *right)); static struct expression *new_exp_2 PARAMS ((enum operator op, struct expression *left, struct expression *right)); static inline struct expression *new_exp_3 PARAMS ((enum operator op, struct expression *bexp, struct expression *tbranch, struct expression *fbranch)); static int yylex PARAMS ((YYSTYPE *lval, const char **pexp)); static void yyerror PARAMS ((const char *str)); /* Allocation of expressions. */ static struct expression * new_exp (nargs, op, args) int nargs; enum operator op; struct expression * const *args; { int i; struct expression *newp; /* If any of the argument could not be malloc'ed, just return NULL. */ for (i = nargs - 1; i >= 0; i--) if (args[i] == NULL) goto fail; /* Allocate a new expression. */ newp = (struct expression *) malloc (sizeof (*newp)); if (newp != NULL) { newp->nargs = nargs; newp->operation = op; for (i = nargs - 1; i >= 0; i--) newp->val.args[i] = args[i]; return newp; } fail: for (i = nargs - 1; i >= 0; i--) FREE_EXPRESSION (args[i]); return NULL; } static inline struct expression * new_exp_0 (op) enum operator op; { return new_exp (0, op, NULL); } static inline struct expression * new_exp_1 (op, right) enum operator op; struct expression *right; { struct expression *args[1]; args[0] = right; return new_exp (1, op, args); } static struct expression * new_exp_2 (op, left, right) enum operator op; struct expression *left; struct expression *right; { struct expression *args[2]; args[0] = left; args[1] = right; return new_exp (2, op, args); } static inline struct expression * new_exp_3 (op, bexp, tbranch, fbranch) enum operator op; struct expression *bexp; struct expression *tbranch; struct expression *fbranch; { struct expression *args[3]; args[0] = bexp; args[1] = tbranch; args[2] = fbranch; return new_exp (3, op, args); } #ifndef YYDEBUG # define YYDEBUG 0 #endif #define YYFINAL 27 #define YYFLAG -32768 #define YYNTBASE 16 /* YYTRANSLATE(YYLEX) -- Bison token number corresponding to YYLEX. */ #define YYTRANSLATE(x) ((unsigned)(x) <= 261 ? yytranslate[x] : 18) /* YYTRANSLATE[YYLEX] -- Bison token number corresponding to YYLEX. */ static const char yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 10, 2, 2, 2, 2, 5, 2, 14, 15, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 12, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 13, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 6, 7, 8, 9, 11 }; #if YYDEBUG static const short yyprhs[] = { 0, 0, 2, 8, 12, 16, 20, 24, 28, 32, 35, 37, 39 }; static const short yyrhs[] = { 17, 0, 17, 3, 17, 12, 17, 0, 17, 4, 17, 0, 17, 5, 17, 0, 17, 6, 17, 0, 17, 7, 17, 0, 17, 8, 17, 0, 17, 9, 17, 0, 10, 17, 0, 13, 0, 11, 0, 14, 17, 15, 0 }; #endif #if YYDEBUG /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const short yyrline[] = { 0, 174, 182, 186, 190, 194, 198, 202, 206, 210, 214, 218, 223 }; #endif #if (YYDEBUG) || defined YYERROR_VERBOSE /* YYTNAME[TOKEN_NUM] -- String name of the token TOKEN_NUM. */ static const char *const yytname[] = { "$", "error", "$undefined.", "'?'", "'|'", "'&'", "EQUOP2", "CMPOP2", "ADDOP2", "MULOP2", "'!'", "NUMBER", "':'", "'n'", "'('", "')'", "start", "exp", 0 }; #endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const short yyr1[] = { 0, 16, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const short yyr2[] = { 0, 1, 5, 3, 3, 3, 3, 3, 3, 2, 1, 1, 3 }; /* YYDEFACT[S] -- default rule to reduce with in state S when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const short yydefact[] = { 0, 0, 11, 10, 0, 1, 9, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 3, 4, 5, 6, 7, 8, 0, 2, 0, 0, 0 }; static const short yydefgoto[] = { 25, 5 }; static const short yypact[] = { -9, -9,-32768,-32768, -9, 34,-32768, 11, -9, -9, -9, -9, -9, -9, -9,-32768, 24, 39, 43, 16, 26, -3,-32768, -9, 34, 21, 53,-32768 }; static const short yypgoto[] = { -32768, -1 }; #define YYLAST 53 static const short yytable[] = { 6, 1, 2, 7, 3, 4, 14, 16, 17, 18, 19, 20, 21, 22, 8, 9, 10, 11, 12, 13, 14, 26, 24, 12, 13, 14, 15, 8, 9, 10, 11, 12, 13, 14, 13, 14, 23, 8, 9, 10, 11, 12, 13, 14, 10, 11, 12, 13, 14, 11, 12, 13, 14, 27 }; static const short yycheck[] = { 1, 10, 11, 4, 13, 14, 9, 8, 9, 10, 11, 12, 13, 14, 3, 4, 5, 6, 7, 8, 9, 0, 23, 7, 8, 9, 15, 3, 4, 5, 6, 7, 8, 9, 8, 9, 12, 3, 4, 5, 6, 7, 8, 9, 5, 6, 7, 8, 9, 6, 7, 8, 9, 0 }; #define YYPURE 1 /* -*-C-*- Note some compilers choke on comments on `#line' lines. */ #line 3 "/usr/local/share/bison/bison.simple" /* Skeleton output parser for bison, Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation in version 1.24 of Bison. */ /* This is the parser code that is written into each bison parser when the %semantic_parser declaration is not specified in the grammar. It was written by Richard Stallman by simplifying the hairy parser used when %semantic_parser is specified. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ #if ! defined (yyoverflow) || defined (YYERROR_VERBOSE) /* The parser invokes alloca or malloc; define the necessary symbols. */ # if YYSTACK_USE_ALLOCA # define YYSTACK_ALLOC alloca # else # ifndef YYSTACK_USE_ALLOCA # if defined (alloca) || defined (_ALLOCA_H) # define YYSTACK_ALLOC alloca # else # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's `empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (0) # else # if defined (__STDC__) || defined (__cplusplus) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # endif # define YYSTACK_ALLOC malloc # define YYSTACK_FREE free # endif #endif /* ! defined (yyoverflow) || defined (YYERROR_VERBOSE) */ #if (! defined (yyoverflow) \ && (! defined (__cplusplus) \ || (YYLTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { short yyss; YYSTYPE yyvs; # if YYLSP_NEEDED YYLTYPE yyls; # endif }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAX (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # if YYLSP_NEEDED # define YYSTACK_BYTES(N) \ ((N) * (sizeof (short) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \ + 2 * YYSTACK_GAP_MAX) # else # define YYSTACK_BYTES(N) \ ((N) * (sizeof (short) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAX) # endif /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY # if 1 < __GNUC__ # define YYCOPY(To, From, Count) \ __builtin_memcpy (To, From, (Count) * sizeof (*(From))) # else # define YYCOPY(To, From, Count) \ do \ { \ register YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (To)[yyi] = (From)[yyi]; \ } \ while (0) # endif # endif /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack, Stack, yysize); \ Stack = &yyptr->Stack; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAX; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (0) #endif #if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__) # define YYSIZE_T __SIZE_TYPE__ #endif #if ! defined (YYSIZE_T) && defined (size_t) # define YYSIZE_T size_t #endif #if ! defined (YYSIZE_T) # if defined (__STDC__) || defined (__cplusplus) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # endif #endif #if ! defined (YYSIZE_T) # define YYSIZE_T unsigned int #endif #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY -2 #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrlab1 /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. Once GCC version 2 has supplanted version 1, this can go. */ #define YYFAIL goto yyerrlab #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { \ yychar = (Token); \ yylval = (Value); \ yychar1 = YYTRANSLATE (yychar); \ YYPOPSTACK; \ goto yybackup; \ } \ else \ { \ yyerror ("syntax error: cannot back up"); \ YYERROR; \ } \ while (0) #define YYTERROR 1 #define YYERRCODE 256 /* YYLLOC_DEFAULT -- Compute the default location (before the actions are run). When YYLLOC_DEFAULT is run, CURRENT is set the location of the first token. By default, to implement support for ranges, extend its range to the last symbol. */ #ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ Current.last_line = Rhs[N].last_line; \ Current.last_column = Rhs[N].last_column; #endif /* YYLEX -- calling `yylex' with the right arguments. */ #if YYPURE # if YYLSP_NEEDED # ifdef YYLEX_PARAM # define YYLEX yylex (&yylval, &yylloc, YYLEX_PARAM) # else # define YYLEX yylex (&yylval, &yylloc) # endif # else /* !YYLSP_NEEDED */ # ifdef YYLEX_PARAM # define YYLEX yylex (&yylval, YYLEX_PARAM) # else # define YYLEX yylex (&yylval) # endif # endif /* !YYLSP_NEEDED */ #else /* !YYPURE */ # define YYLEX yylex () #endif /* !YYPURE */ /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (0) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if SIZE_MAX < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #if YYMAXDEPTH == 0 # undef YYMAXDEPTH #endif #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #ifdef YYERROR_VERBOSE # ifndef yystrlen # if defined (__GLIBC__) && defined (_STRING_H) # define yystrlen strlen # else /* Return the length of YYSTR. */ static YYSIZE_T # if defined (__STDC__) || defined (__cplusplus) yystrlen (const char *yystr) # else yystrlen (yystr) const char *yystr; # endif { register const char *yys = yystr; while (*yys++ != '\0') continue; return yys - yystr - 1; } # endif # endif # ifndef yystpcpy # if defined (__GLIBC__) && defined (_STRING_H) && defined (_GNU_SOURCE) # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ static char * # if defined (__STDC__) || defined (__cplusplus) yystpcpy (char *yydest, const char *yysrc) # else yystpcpy (yydest, yysrc) char *yydest; const char *yysrc; # endif { register char *yyd = yydest; register const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif #endif #line 315 "/usr/local/share/bison/bison.simple" /* The user can define YYPARSE_PARAM as the name of an argument to be passed into yyparse. The argument should have type void *. It should actually point to an object. Grammar actions can access the variable by casting it to the proper pointer type. */ #ifdef YYPARSE_PARAM # if defined (__STDC__) || defined (__cplusplus) # define YYPARSE_PARAM_ARG void *YYPARSE_PARAM # define YYPARSE_PARAM_DECL # else # define YYPARSE_PARAM_ARG YYPARSE_PARAM # define YYPARSE_PARAM_DECL void *YYPARSE_PARAM; # endif #else /* !YYPARSE_PARAM */ # define YYPARSE_PARAM_ARG # define YYPARSE_PARAM_DECL #endif /* !YYPARSE_PARAM */ /* Prevent warning if -Wstrict-prototypes. */ #ifdef __GNUC__ # ifdef YYPARSE_PARAM int yyparse (void *); # else int yyparse (void); # endif #endif /* YY_DECL_VARIABLES -- depending whether we use a pure parser, variables are global, or local to YYPARSE. */ #define YY_DECL_NON_LSP_VARIABLES \ /* The lookahead symbol. */ \ int yychar; \ \ /* The semantic value of the lookahead symbol. */ \ YYSTYPE yylval; \ \ /* Number of parse errors so far. */ \ int yynerrs; #if YYLSP_NEEDED # define YY_DECL_VARIABLES \ YY_DECL_NON_LSP_VARIABLES \ \ /* Location data for the lookahead symbol. */ \ YYLTYPE yylloc; #else # define YY_DECL_VARIABLES \ YY_DECL_NON_LSP_VARIABLES #endif /* If nonreentrant, generate the variables here. */ #if !YYPURE YY_DECL_VARIABLES #endif /* !YYPURE */ int yyparse (YYPARSE_PARAM_ARG) YYPARSE_PARAM_DECL { /* If reentrant, generate the variables here. */ #if YYPURE YY_DECL_VARIABLES #endif /* !YYPURE */ register int yystate; register int yyn; int yyresult; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* Lookahead token as an internal (translated) token number. */ int yychar1 = 0; /* Three stacks and their tools: `yyss': related to states, `yyvs': related to semantic values, `yyls': related to locations. Refer to the stacks thru separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ short yyssa[YYINITDEPTH]; short *yyss = yyssa; register short *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs = yyvsa; register YYSTYPE *yyvsp; #if YYLSP_NEEDED /* The location stack. */ YYLTYPE yylsa[YYINITDEPTH]; YYLTYPE *yyls = yylsa; YYLTYPE *yylsp; #endif #if YYLSP_NEEDED # define YYPOPSTACK (yyvsp--, yyssp--, yylsp--) #else # define YYPOPSTACK (yyvsp--, yyssp--) #endif YYSIZE_T yystacksize = YYINITDEPTH; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #if YYLSP_NEEDED YYLTYPE yyloc; #endif /* When reducing, the number of symbols on the RHS of the reduced rule. */ int yylen; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ yyssp = yyss; yyvsp = yyvs; #if YYLSP_NEEDED yylsp = yyls; #endif goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. so pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyssp >= yyss + yystacksize - 1) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; short *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. */ # if YYLSP_NEEDED YYLTYPE *yyls1 = yyls; /* This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow ("parser stack overflow", &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yyls1, yysize * sizeof (*yylsp), &yystacksize); yyls = yyls1; # else yyoverflow ("parser stack overflow", &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); # endif yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyoverflowlab; # else /* Extend the stack our own way. */ if (yystacksize >= YYMAXDEPTH) goto yyoverflowlab; yystacksize *= 2; if (yystacksize > YYMAXDEPTH) yystacksize = YYMAXDEPTH; { short *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyoverflowlab; YYSTACK_RELOCATE (yyss); YYSTACK_RELOCATE (yyvs); # if YYLSP_NEEDED YYSTACK_RELOCATE (yyls); # endif # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; #if YYLSP_NEEDED yylsp = yyls + yysize - 1; #endif YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyssp >= yyss + yystacksize - 1) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. */ /* Read a lookahead token if we need one and don't already have one. */ /* yyresume: */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yyn == YYFLAG) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* yychar is either YYEMPTY or YYEOF or a valid token in external form. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = YYLEX; } /* Convert token to internal form (in yychar1) for indexing tables with */ if (yychar <= 0) /* This means end of input. */ { yychar1 = 0; yychar = YYEOF; /* Don't call YYLEX any more */ YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yychar1 = YYTRANSLATE (yychar); #if YYDEBUG /* We have to keep this `#if YYDEBUG', since we use variables which are defined only if `YYDEBUG' is set. */ if (yydebug) { YYFPRINTF (stderr, "Next token is %d (%s", yychar, yytname[yychar1]); /* Give the individual parser a way to print the precise meaning of a token, for further debugging info. */ # ifdef YYPRINT YYPRINT (stderr, yychar, yylval); # endif YYFPRINTF (stderr, ")\n"); } #endif } yyn += yychar1; if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1) goto yydefault; yyn = yytable[yyn]; /* yyn is what to do for this token type in this state. Negative => reduce, -yyn is rule number. Positive => shift, yyn is new state. New state is final state => don't bother to shift, just return success. 0, or most negative number => error. */ if (yyn < 0) { if (yyn == YYFLAG) goto yyerrlab; yyn = -yyn; goto yyreduce; } else if (yyn == 0) goto yyerrlab; if (yyn == YYFINAL) YYACCEPT; /* Shift the lookahead token. */ YYDPRINTF ((stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1])); /* Discard the token being shifted unless it is eof. */ if (yychar != YYEOF) yychar = YYEMPTY; *++yyvsp = yylval; #if YYLSP_NEEDED *++yylsp = yylloc; #endif /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; yystate = yyn; goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: `$$ = $1'. Otherwise, the following line sets YYVAL to the semantic value of the lookahead token. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; #if YYLSP_NEEDED /* Similarly for the default location. Let the user run additional commands if for instance locations are ranges. */ yyloc = yylsp[1-yylen]; YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen); #endif #if YYDEBUG /* We have to keep this `#if YYDEBUG', since we use variables which are defined only if `YYDEBUG' is set. */ if (yydebug) { int yyi; YYFPRINTF (stderr, "Reducing via rule %d (line %d), ", yyn, yyrline[yyn]); /* Print the symbols being reduced, and their result. */ for (yyi = yyprhs[yyn]; yyrhs[yyi] > 0; yyi++) YYFPRINTF (stderr, "%s ", yytname[yyrhs[yyi]]); YYFPRINTF (stderr, " -> %s\n", yytname[yyr1[yyn]]); } #endif switch (yyn) { case 1: #line 175 "plural.y" { if (yyvsp[0].exp == NULL) YYABORT; ((struct parse_args *) arg)->res = yyvsp[0].exp; } break; case 2: #line 183 "plural.y" { yyval.exp = new_exp_3 (qmop, yyvsp[-4].exp, yyvsp[-2].exp, yyvsp[0].exp); } break; case 3: #line 187 "plural.y" { yyval.exp = new_exp_2 (lor, yyvsp[-2].exp, yyvsp[0].exp); } break; case 4: #line 191 "plural.y" { yyval.exp = new_exp_2 (land, yyvsp[-2].exp, yyvsp[0].exp); } break; case 5: #line 195 "plural.y" { yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp); } break; case 6: #line 199 "plural.y" { yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp); } break; case 7: #line 203 "plural.y" { yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp); } break; case 8: #line 207 "plural.y" { yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp); } break; case 9: #line 211 "plural.y" { yyval.exp = new_exp_1 (lnot, yyvsp[0].exp); } break; case 10: #line 215 "plural.y" { yyval.exp = new_exp_0 (var); } break; case 11: #line 219 "plural.y" { if ((yyval.exp = new_exp_0 (num)) != NULL) yyval.exp->val.num = yyvsp[0].num; } break; case 12: #line 224 "plural.y" { yyval.exp = yyvsp[-1].exp; } break; } #line 705 "/usr/local/share/bison/bison.simple" yyvsp -= yylen; yyssp -= yylen; #if YYLSP_NEEDED yylsp -= yylen; #endif #if YYDEBUG if (yydebug) { short *yyssp1 = yyss - 1; YYFPRINTF (stderr, "state stack now"); while (yyssp1 != yyssp) YYFPRINTF (stderr, " %d", *++yyssp1); YYFPRINTF (stderr, "\n"); } #endif *++yyvsp = yyval; #if YYLSP_NEEDED *++yylsp = yyloc; #endif /* Now `shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ yyn = yyr1[yyn]; yystate = yypgoto[yyn - YYNTBASE] + *yyssp; if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else yystate = yydefgoto[yyn - YYNTBASE]; goto yynewstate; /*------------------------------------. | yyerrlab -- here on detecting error | `------------------------------------*/ yyerrlab: /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; #ifdef YYERROR_VERBOSE yyn = yypact[yystate]; if (yyn > YYFLAG && yyn < YYLAST) { YYSIZE_T yysize = 0; char *yymsg; int yyx, yycount; yycount = 0; /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. */ for (yyx = yyn < 0 ? -yyn : 0; yyx < (int) (sizeof (yytname) / sizeof (char *)); yyx++) if (yycheck[yyx + yyn] == yyx) yysize += yystrlen (yytname[yyx]) + 15, yycount++; yysize += yystrlen ("parse error, unexpected ") + 1; yysize += yystrlen (yytname[YYTRANSLATE (yychar)]); yymsg = (char *) YYSTACK_ALLOC (yysize); if (yymsg != 0) { char *yyp = yystpcpy (yymsg, "parse error, unexpected "); yyp = yystpcpy (yyp, yytname[YYTRANSLATE (yychar)]); if (yycount < 5) { yycount = 0; for (yyx = yyn < 0 ? -yyn : 0; yyx < (int) (sizeof (yytname) / sizeof (char *)); yyx++) if (yycheck[yyx + yyn] == yyx) { const char *yyq = ! yycount ? ", expecting " : " or "; yyp = yystpcpy (yyp, yyq); yyp = yystpcpy (yyp, yytname[yyx]); yycount++; } } yyerror (yymsg); YYSTACK_FREE (yymsg); } else yyerror ("parse error; also virtual memory exhausted"); } else #endif /* defined (YYERROR_VERBOSE) */ yyerror ("parse error"); } goto yyerrlab1; /*--------------------------------------------------. | yyerrlab1 -- error raised explicitly by an action | `--------------------------------------------------*/ yyerrlab1: if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ /* return failure if at end of input */ if (yychar == YYEOF) YYABORT; YYDPRINTF ((stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1])); yychar = YYEMPTY; } /* Else will try to reuse lookahead token after shifting the error token. */ yyerrstatus = 3; /* Each real token shifted decrements this */ goto yyerrhandle; /*-------------------------------------------------------------------. | yyerrdefault -- current state does not do anything special for the | | error token. | `-------------------------------------------------------------------*/ yyerrdefault: #if 0 /* This is wrong; only states that explicitly want error tokens should shift them. */ /* If its default is to accept any token, ok. Otherwise pop it. */ yyn = yydefact[yystate]; if (yyn) goto yydefault; #endif /*---------------------------------------------------------------. | yyerrpop -- pop the current state because it cannot handle the | | error token | `---------------------------------------------------------------*/ yyerrpop: if (yyssp == yyss) YYABORT; yyvsp--; yystate = *--yyssp; #if YYLSP_NEEDED yylsp--; #endif #if YYDEBUG if (yydebug) { short *yyssp1 = yyss - 1; YYFPRINTF (stderr, "Error: state stack now"); while (yyssp1 != yyssp) YYFPRINTF (stderr, " %d", *++yyssp1); YYFPRINTF (stderr, "\n"); } #endif /*--------------. | yyerrhandle. | `--------------*/ yyerrhandle: yyn = yypact[yystate]; if (yyn == YYFLAG) goto yyerrdefault; yyn += YYTERROR; if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR) goto yyerrdefault; yyn = yytable[yyn]; if (yyn < 0) { if (yyn == YYFLAG) goto yyerrpop; yyn = -yyn; goto yyreduce; } else if (yyn == 0) goto yyerrpop; if (yyn == YYFINAL) YYACCEPT; YYDPRINTF ((stderr, "Shifting error token, ")); *++yyvsp = yylval; #if YYLSP_NEEDED *++yylsp = yylloc; #endif yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturn; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturn; /*---------------------------------------------. | yyoverflowab -- parser overflow comes here. | `---------------------------------------------*/ yyoverflowlab: yyerror ("parser stack overflow"); yyresult = 2; /* Fall through. */ yyreturn: #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif return yyresult; } #line 229 "plural.y" void internal_function FREE_EXPRESSION (exp) struct expression *exp; { if (exp == NULL) return; /* Handle the recursive case. */ switch (exp->nargs) { case 3: FREE_EXPRESSION (exp->val.args[2]); /* FALLTHROUGH */ case 2: FREE_EXPRESSION (exp->val.args[1]); /* FALLTHROUGH */ case 1: FREE_EXPRESSION (exp->val.args[0]); /* FALLTHROUGH */ default: break; } free (exp); } static int yylex (lval, pexp) YYSTYPE *lval; const char **pexp; { const char *exp = *pexp; int result; while (1) { if (exp[0] == '\0') { *pexp = exp; return YYEOF; } if (exp[0] != ' ' && exp[0] != '\t') break; ++exp; } result = *exp++; switch (result) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { unsigned long int n = result - '0'; while (exp[0] >= '0' && exp[0] <= '9') { n *= 10; n += exp[0] - '0'; ++exp; } lval->num = n; result = NUMBER; } break; case '=': if (exp[0] == '=') { ++exp; lval->op = equal; result = EQUOP2; } else result = YYERRCODE; break; case '!': if (exp[0] == '=') { ++exp; lval->op = not_equal; result = EQUOP2; } break; case '&': case '|': if (exp[0] == result) ++exp; else result = YYERRCODE; break; case '<': if (exp[0] == '=') { ++exp; lval->op = less_or_equal; } else lval->op = less_than; result = CMPOP2; break; case '>': if (exp[0] == '=') { ++exp; lval->op = greater_or_equal; } else lval->op = greater_than; result = CMPOP2; break; case '*': lval->op = mult; result = MULOP2; break; case '/': lval->op = divide; result = MULOP2; break; case '%': lval->op = module; result = MULOP2; break; case '+': lval->op = plus; result = ADDOP2; break; case '-': lval->op = minus; result = ADDOP2; break; case 'n': case '?': case ':': case '(': case ')': /* Nothing, just return the character. */ break; case ';': case '\n': case '\0': /* Be safe and let the user call this function again. */ --exp; result = YYEOF; break; default: result = YYERRCODE; #if YYDEBUG != 0 --exp; #endif break; } *pexp = exp; return result; } static void yyerror (str) const char *str; { /* Do nothing. We don't print error messages here. */ } tvtime-1.0.11/intl/dcgettext.c0000664000175000017500000000350012354244126013133 00000000000000/* Implementation of the dcgettext(3) function. Copyright (C) 1995-1999, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DCGETTEXT __dcgettext # define DCIGETTEXT __dcigettext #else # define DCGETTEXT libintl_dcgettext # define DCIGETTEXT libintl_dcigettext #endif /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale. */ char * DCGETTEXT (domainname, msgid, category) const char *domainname; const char *msgid; int category; { return DCIGETTEXT (domainname, msgid, NULL, 0, 0, category); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ INTDEF(__dcgettext) weak_alias (__dcgettext, dcgettext); #endif tvtime-1.0.11/intl/os2compat.c0000664000175000017500000000550312354244126013054 00000000000000/* OS/2 compatibility functions. Copyright (C) 2001-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define OS2_AWARE #ifdef HAVE_CONFIG_H #include #endif #include #include #include /* A version of getenv() that works from DLLs */ extern unsigned long DosScanEnv (const unsigned char *pszName, unsigned char **ppszValue); char * _nl_getenv (const char *name) { unsigned char *value; if (DosScanEnv (name, &value)) return NULL; else return value; } /* A fixed size buffer. */ char libintl_nl_default_dirname[MAXPATHLEN+1]; char *_nlos2_libdir = NULL; char *_nlos2_localealiaspath = NULL; char *_nlos2_localedir = NULL; static __attribute__((constructor)) void nlos2_initialize () { char *root = getenv ("UNIXROOT"); char *gnulocaledir = getenv ("GNULOCALEDIR"); _nlos2_libdir = gnulocaledir; if (!_nlos2_libdir) { if (root) { size_t sl = strlen (root); _nlos2_libdir = (char *) malloc (sl + strlen (LIBDIR) + 1); memcpy (_nlos2_libdir, root, sl); memcpy (_nlos2_libdir + sl, LIBDIR, strlen (LIBDIR) + 1); } else _nlos2_libdir = LIBDIR; } _nlos2_localealiaspath = gnulocaledir; if (!_nlos2_localealiaspath) { if (root) { size_t sl = strlen (root); _nlos2_localealiaspath = (char *) malloc (sl + strlen (LOCALE_ALIAS_PATH) + 1); memcpy (_nlos2_localealiaspath, root, sl); memcpy (_nlos2_localealiaspath + sl, LOCALE_ALIAS_PATH, strlen (LOCALE_ALIAS_PATH) + 1); } else _nlos2_localealiaspath = LOCALE_ALIAS_PATH; } _nlos2_localedir = gnulocaledir; if (!_nlos2_localedir) { if (root) { size_t sl = strlen (root); _nlos2_localedir = (char *) malloc (sl + strlen (LOCALEDIR) + 1); memcpy (_nlos2_localedir, root, sl); memcpy (_nlos2_localedir + sl, LOCALEDIR, strlen (LOCALEDIR) + 1); } else _nlos2_localedir = LOCALEDIR; } if (strlen (_nlos2_localedir) <= MAXPATHLEN) strcpy (libintl_nl_default_dirname, _nlos2_localedir); } tvtime-1.0.11/config.sub0000755000175000017500000010624613026503062012014 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright 1992-2015 Free Software Foundation, Inc. timestamp='2015-01-01' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # Please send patches to . # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright 1992-2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze*) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*178) os=-lynxos178 ;; -lynx*5) os=-lynxos5 ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | aarch64 | aarch64_be \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ | epiphany \ | fido | fr30 | frv | ft32 \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | k1om \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa32r6 | mipsisa32r6el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64r6 | mipsisa64r6el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 | or1k | or1knd | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ | riscv32 | riscv64 \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | visium \ | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; c54x) basic_machine=tic54x-unknown ;; c55x) basic_machine=tic55x-unknown ;; c6x) basic_machine=tic6x-unknown ;; leon|leon[3-9]) basic_machine=sparc-$basic_machine ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; xgate) basic_machine=$basic_machine-unknown os=-none ;; xscaleeb) basic_machine=armeb-unknown ;; xscaleel) basic_machine=armel-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | k1om-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ | microblaze-* | microblazeel-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa32r6-* | mipsisa32r6el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64r6-* | mipsisa64r6el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | or1k*-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | visium-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c54x-*) basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c55x-*) basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c6x-*) basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16 | cr16-*) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; leon-*|leon[3-9]-*) basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'` ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze*) basic_machine=microblaze-xilinx ;; mingw64) basic_machine=x86_64-pc os=-mingw64 ;; mingw32) basic_machine=i686-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; moxiebox) basic_machine=moxie-unknown os=-moxiebox ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i686-pc os=-msys ;; mvs) basic_machine=i370-ibm os=-mvs ;; nacl) basic_machine=le32-unknown os=-nacl ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos | rdos64) basic_machine=x86_64-pc os=-rdos ;; rdos32) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; strongarm-* | thumb-*) basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tile*) basic_machine=$basic_machine-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -bitrig* | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -tirtos*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; c8051-*) os=-elf ;; hexagon-*) os=-elf ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: tvtime-1.0.11/ltmain.sh0000644000175000017500000117077113026503056011661 00000000000000#! /bin/sh ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in ## by inline-source v2014-01-03.01 # libtool (GNU libtool) 2.4.6 # Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . PROGRAM=libtool PACKAGE=libtool VERSION=2.4.6 package_revision=2.4.6 ## ------ ## ## Usage. ## ## ------ ## # Run './libtool --help' for help with using this script from the # command line. ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # After configure completes, it has a better idea of some of the # shell tools we need than the defaults used by the functions shared # with bootstrap, so set those here where they can still be over- # ridden by the user, but otherwise take precedence. : ${AUTOCONF="autoconf"} : ${AUTOMAKE="automake"} ## -------------------------- ## ## Source external libraries. ## ## -------------------------- ## # Much of our low-level functionality needs to be sourced from external # libraries, which are installed to $pkgauxdir. # Set a version string for this script. scriptversion=2015-01-20.17; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 # Copyright (C) 2004-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # As a special exception to the GNU General Public License, if you distribute # this file as part of a program or library that is built using GNU Libtool, # you may include this file under the same distribution terms that you use # for the rest of that program. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # Evaluate this file near the top of your script to gain access to # the functions and variables defined here: # # . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh # # If you need to override any of the default environment variable # settings, do that before evaluating this file. ## -------------------- ## ## Shell normalisation. ## ## -------------------- ## # Some shells need a little help to be as Bourne compatible as possible. # Before doing anything else, make sure all that help has been provided! DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # NLS nuisances: We save the old values in case they are required later. _G_user_locale= _G_safe_locale= for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test set = \"\${$_G_var+set}\"; then save_$_G_var=\$$_G_var $_G_var=C export $_G_var _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Make sure IFS has a sensible default sp=' ' nl=' ' IFS="$sp $nl" # There are apparently some retarded systems that use ';' as a PATH separator! if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi ## ------------------------- ## ## Locate command utilities. ## ## ------------------------- ## # func_executable_p FILE # ---------------------- # Check that FILE is an executable regular file. func_executable_p () { test -f "$1" && test -x "$1" } # func_path_progs PROGS_LIST CHECK_FUNC [PATH] # -------------------------------------------- # Search for either a program that responds to --version with output # containing "GNU", or else returned by CHECK_FUNC otherwise, by # trying all the directories in PATH with each of the elements of # PROGS_LIST. # # CHECK_FUNC should accept the path to a candidate program, and # set $func_check_prog_result if it truncates its output less than # $_G_path_prog_max characters. func_path_progs () { _G_progs_list=$1 _G_check_func=$2 _G_PATH=${3-"$PATH"} _G_path_prog_max=0 _G_path_prog_found=false _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} for _G_dir in $_G_PATH; do IFS=$_G_save_IFS test -z "$_G_dir" && _G_dir=. for _G_prog_name in $_G_progs_list; do for _exeext in '' .EXE; do _G_path_prog=$_G_dir/$_G_prog_name$_exeext func_executable_p "$_G_path_prog" || continue case `"$_G_path_prog" --version 2>&1` in *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; *) $_G_check_func $_G_path_prog func_path_progs_result=$func_check_prog_result ;; esac $_G_path_prog_found && break 3 done done done IFS=$_G_save_IFS test -z "$func_path_progs_result" && { echo "no acceptable sed could be found in \$PATH" >&2 exit 1 } } # We want to be able to use the functions in this file before configure # has figured out where the best binaries are kept, which means we have # to search for them ourselves - except when the results are already set # where we skip the searches. # Unless the user overrides by setting SED, search the path for either GNU # sed, or the sed that truncates its output the least. test -z "$SED" && { _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for _G_i in 1 2 3 4 5 6 7; do _G_sed_script=$_G_sed_script$nl$_G_sed_script done echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed _G_sed_script= func_check_prog_sed () { _G_path_prog=$1 _G_count=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo '' >> conftest.nl "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin rm -f conftest.sed SED=$func_path_progs_result } # Unless the user overrides by setting GREP, search the path for either GNU # grep, or the grep that truncates its output the least. test -z "$GREP" && { func_check_prog_grep () { _G_path_prog=$1 _G_count=0 _G_path_prog_max=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo 'GREP' >> conftest.nl "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin GREP=$func_path_progs_result } ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # All uppercase variable names are used for environment variables. These # variables can be overridden by the user before calling a script that # uses them if a suitable command of that name is not already available # in the command search PATH. : ${CP="cp -f"} : ${ECHO="printf %s\n"} : ${EGREP="$GREP -E"} : ${FGREP="$GREP -F"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} ## -------------------- ## ## Useful sed snippets. ## ## -------------------- ## sed_dirname='s|/[^/]*$||' sed_basename='s|^.*/||' # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='s|\([`"$\\]\)|\\\1|g' # Same as above, but do not quote variable references. sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' # Sed substitution that converts a w32 file name or path # that contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-'\' parameter expansions in output of sed_double_quote_subst that # were '\'-ed in input to the same. If an odd number of '\' preceded a # '$' in input to sed_double_quote_subst, that '$' was protected from # expansion. Since each input '\' is now two '\'s, look for any number # of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. _G_bs='\\' _G_bs2='\\\\' _G_bs4='\\\\\\\\' _G_dollar='\$' sed_double_backslash="\ s/$_G_bs4/&\\ /g s/^$_G_bs2$_G_dollar/$_G_bs&/ s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g s/\n//g" ## ----------------- ## ## Global variables. ## ## ----------------- ## # Except for the global variables explicitly listed below, the following # functions in the '^func_' namespace, and the '^require_' namespace # variables initialised in the 'Resource management' section, sourcing # this file will not pollute your global namespace with anything # else. There's no portable way to scope variables in Bourne shell # though, so actually running these functions will sometimes place # results into a variable named after the function, and often use # temporary variables in the '^_G_' namespace. If you are careful to # avoid using those namespaces casually in your sourcing script, things # should continue to work as you expect. And, of course, you can freely # overwrite any of the functions or variables defined here before # calling anything to customize them. EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. # Allow overriding, eg assuming that you follow the convention of # putting '$debug_cmd' at the start of all your functions, you can get # bash to show function call trace with: # # debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name debug_cmd=${debug_cmd-":"} exit_cmd=: # By convention, finish your script with: # # exit $exit_status # # so that you can set exit_status to non-zero if you want to indicate # something went wrong during execution without actually bailing out at # the point of failure. exit_status=$EXIT_SUCCESS # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath=$0 # The name of this program. progname=`$ECHO "$progpath" |$SED "$sed_basename"` # Make sure we have an absolute progpath for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` progdir=`cd "$progdir" && pwd` progpath=$progdir/$progname ;; *) _G_IFS=$IFS IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS=$_G_IFS test -x "$progdir/$progname" && break done IFS=$_G_IFS test -n "$progdir" || progdir=`pwd` progpath=$progdir/$progname ;; esac ## ----------------- ## ## Standard options. ## ## ----------------- ## # The following options affect the operation of the functions defined # below, and should be set appropriately depending on run-time para- # meters passed on the command line. opt_dry_run=false opt_quiet=false opt_verbose=false # Categories 'all' and 'none' are always available. Append any others # you will pass as the first argument to func_warning from your own # code. warning_categories= # By default, display warnings according to 'opt_warning_types'. Set # 'warning_func' to ':' to elide all warnings, or func_fatal_error to # treat the next displayed warning as a fatal error. warning_func=func_warn_and_continue # Set to 'all' to display all warnings, 'none' to suppress all # warnings, or a space delimited list of some subset of # 'warning_categories' to display only the listed warnings. opt_warning_types=all ## -------------------- ## ## Resource management. ## ## -------------------- ## # This section contains definitions for functions that each ensure a # particular resource (a file, or a non-empty configuration variable for # example) is available, and if appropriate to extract default values # from pertinent package files. Call them using their associated # 'require_*' variable to ensure that they are executed, at most, once. # # It's entirely deliberate that calling these functions can set # variables that don't obey the namespace limitations obeyed by the rest # of this file, in order that that they be as useful as possible to # callers. # require_term_colors # ------------------- # Allow display of bold text on terminals that support it. require_term_colors=func_require_term_colors func_require_term_colors () { $debug_cmd test -t 1 && { # COLORTERM and USE_ANSI_COLORS environment variables take # precedence, because most terminfo databases neglect to describe # whether color sequences are supported. test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} if test 1 = "$USE_ANSI_COLORS"; then # Standard ANSI escape sequences tc_reset='' tc_bold=''; tc_standout='' tc_red=''; tc_green='' tc_blue=''; tc_cyan='' else # Otherwise trust the terminfo database after all. test -n "`tput sgr0 2>/dev/null`" && { tc_reset=`tput sgr0` test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` tc_standout=$tc_bold test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` } fi } require_term_colors=: } ## ----------------- ## ## Function library. ## ## ----------------- ## # This section contains a variety of useful functions to call in your # scripts. Take note of the portable wrappers for features provided by # some modern shells, which will fall back to slower equivalents on # less featureful shells. # func_append VAR VALUE # --------------------- # Append VALUE onto the existing contents of VAR. # We should try to minimise forks, especially on Windows where they are # unreasonably slow, so skip the feature probes when bash or zsh are # being used: if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then : ${_G_HAVE_ARITH_OP="yes"} : ${_G_HAVE_XSI_OPS="yes"} # The += operator was introduced in bash 3.1 case $BASH_VERSION in [12].* | 3.0 | 3.0*) ;; *) : ${_G_HAVE_PLUSEQ_OP="yes"} ;; esac fi # _G_HAVE_PLUSEQ_OP # Can be empty, in which case the shell is probed, "yes" if += is # useable or anything else if it does not work. test -z "$_G_HAVE_PLUSEQ_OP" \ && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ && _G_HAVE_PLUSEQ_OP=yes if test yes = "$_G_HAVE_PLUSEQ_OP" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_append () { $debug_cmd eval "$1+=\$2" }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_append () { $debug_cmd eval "$1=\$$1\$2" } fi # func_append_quoted VAR VALUE # ---------------------------- # Quote VALUE and append to the end of shell variable VAR, separated # by a space. if test yes = "$_G_HAVE_PLUSEQ_OP"; then eval 'func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1+=\\ \$func_quote_for_eval_result" }' else func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1=\$$1\\ \$func_quote_for_eval_result" } fi # func_append_uniq VAR VALUE # -------------------------- # Append unique VALUE onto the existing contents of VAR, assuming # entries are delimited by the first character of VALUE. For example: # # func_append_uniq options " --another-option option-argument" # # will only append to $options if " --another-option option-argument " # is not already present somewhere in $options already (note spaces at # each end implied by leading space in second argument). func_append_uniq () { $debug_cmd eval _G_current_value='`$ECHO $'$1'`' _G_delim=`expr "$2" : '\(.\)'` case $_G_delim$_G_current_value$_G_delim in *"$2$_G_delim"*) ;; *) func_append "$@" ;; esac } # func_arith TERM... # ------------------ # Set func_arith_result to the result of evaluating TERMs. test -z "$_G_HAVE_ARITH_OP" \ && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ && _G_HAVE_ARITH_OP=yes if test yes = "$_G_HAVE_ARITH_OP"; then eval 'func_arith () { $debug_cmd func_arith_result=$(( $* )) }' else func_arith () { $debug_cmd func_arith_result=`expr "$@"` } fi # func_basename FILE # ------------------ # Set func_basename_result to FILE with everything up to and including # the last / stripped. if test yes = "$_G_HAVE_XSI_OPS"; then # If this shell supports suffix pattern removal, then use it to avoid # forking. Hide the definitions single quotes in case the shell chokes # on unsupported syntax... _b='func_basename_result=${1##*/}' _d='case $1 in */*) func_dirname_result=${1%/*}$2 ;; * ) func_dirname_result=$3 ;; esac' else # ...otherwise fall back to using sed. _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` if test "X$func_dirname_result" = "X$1"; then func_dirname_result=$3 else func_append func_dirname_result "$2" fi' fi eval 'func_basename () { $debug_cmd '"$_b"' }' # func_dirname FILE APPEND NONDIR_REPLACEMENT # ------------------------------------------- # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. eval 'func_dirname () { $debug_cmd '"$_d"' }' # func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT # -------------------------------------------------------- # Perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # For efficiency, we do not delegate to the functions above but instead # duplicate the functionality here. eval 'func_dirname_and_basename () { $debug_cmd '"$_b"' '"$_d"' }' # func_echo ARG... # ---------------- # Echo program name prefixed message. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname: $_G_line" done IFS=$func_echo_IFS } # func_echo_all ARG... # -------------------- # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_echo_infix_1 INFIX ARG... # ------------------------------ # Echo program name, followed by INFIX on the first line, with any # additional lines not showing INFIX. func_echo_infix_1 () { $debug_cmd $require_term_colors _G_infix=$1; shift _G_indent=$_G_infix _G_prefix="$progname: $_G_infix: " _G_message=$* # Strip color escape sequences before counting printable length for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" do test -n "$_G_tc" && { _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` } done _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes func_echo_infix_1_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_infix_1_IFS $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 _G_prefix=$_G_indent done IFS=$func_echo_infix_1_IFS } # func_error ARG... # ----------------- # Echo program name prefixed message to standard error. func_error () { $debug_cmd $require_term_colors func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 } # func_fatal_error ARG... # ----------------------- # Echo program name prefixed message to standard error, and exit. func_fatal_error () { $debug_cmd func_error "$*" exit $EXIT_FAILURE } # func_grep EXPRESSION FILENAME # ----------------------------- # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $debug_cmd $GREP "$1" "$2" >/dev/null 2>&1 } # func_len STRING # --------------- # Set func_len_result to the length of STRING. STRING may not # start with a hyphen. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_len () { $debug_cmd func_len_result=${#1} }' else func_len () { $debug_cmd func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` } fi # func_mkdir_p DIRECTORY-PATH # --------------------------- # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { $debug_cmd _G_directory_path=$1 _G_dir_list= if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then # Protect directory names starting with '-' case $_G_directory_path in -*) _G_directory_path=./$_G_directory_path ;; esac # While some portion of DIR does not yet exist... while test ! -d "$_G_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. _G_dir_list=$_G_directory_path:$_G_dir_list # If the last portion added has no slash in it, the list is done case $_G_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` done _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` func_mkdir_p_IFS=$IFS; IFS=: for _G_dir in $_G_dir_list; do IFS=$func_mkdir_p_IFS # mkdir can fail with a 'File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$_G_dir" 2>/dev/null || : done IFS=$func_mkdir_p_IFS # Bail out if we (or some other process) failed to create a directory. test -d "$_G_directory_path" || \ func_fatal_error "Failed to create '$1'" fi } # func_mktempdir [BASENAME] # ------------------------- # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, BASENAME is the basename for that directory. func_mktempdir () { $debug_cmd _G_template=${TMPDIR-/tmp}/${1-$progname} if test : = "$opt_dry_run"; then # Return a directory name, but don't create it in dry-run mode _G_tmpdir=$_G_template-$$ else # If mktemp works, use that first and foremost _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` if test ! -d "$_G_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race _G_tmpdir=$_G_template-${RANDOM-0}$$ func_mktempdir_umask=`umask` umask 0077 $MKDIR "$_G_tmpdir" umask $func_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$_G_tmpdir" || \ func_fatal_error "cannot create temporary directory '$_G_tmpdir'" fi $ECHO "$_G_tmpdir" } # func_normal_abspath PATH # ------------------------ # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. func_normal_abspath () { $debug_cmd # These SED scripts presuppose an absolute path with a trailing slash. _G_pathcar='s|^/\([^/]*\).*$|\1|' _G_pathcdr='s|^/[^/]*||' _G_removedotparts=':dotsl s|/\./|/|g t dotsl s|/\.$|/|' _G_collapseslashes='s|/\{1,\}|/|g' _G_finalslash='s|/*$|/|' # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` while :; do # Processed it all yet? if test / = "$func_normal_abspath_tpath"; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result"; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_notquiet ARG... # -------------------- # Echo program name prefixed message only when not in quiet mode. func_notquiet () { $debug_cmd $opt_quiet || func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_relative_path SRCDIR DSTDIR # -------------------------------- # Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. func_relative_path () { $debug_cmd func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=$func_dirname_result if test -z "$func_relative_path_tlibdir"; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test -n "$func_stripname_result"; then func_append func_relative_path_result "/$func_stripname_result" fi # Normalisation. If bindir is libdir, return '.' else relative path. if test -n "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result" func_relative_path_result=$func_stripname_result fi test -n "$func_relative_path_result" || func_relative_path_result=. : } # func_quote_for_eval ARG... # -------------------------- # Aesthetically quote ARGs to be evaled later. # This function returns two values: # i) func_quote_for_eval_result # double-quoted, suitable for a subsequent eval # ii) func_quote_for_eval_unquoted_result # has all characters that are still active within double # quotes backslashified. func_quote_for_eval () { $debug_cmd func_quote_for_eval_unquoted_result= func_quote_for_eval_result= while test 0 -lt $#; do case $1 in *[\\\`\"\$]*) _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; *) _G_unquoted_arg=$1 ;; esac if test -n "$func_quote_for_eval_unquoted_result"; then func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" else func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" fi case $_G_unquoted_arg in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and variable expansion # for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_quoted_arg=\"$_G_unquoted_arg\" ;; *) _G_quoted_arg=$_G_unquoted_arg ;; esac if test -n "$func_quote_for_eval_result"; then func_append func_quote_for_eval_result " $_G_quoted_arg" else func_append func_quote_for_eval_result "$_G_quoted_arg" fi shift done } # func_quote_for_expand ARG # ------------------------- # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { $debug_cmd case $1 in *[\\\`\"]*) _G_arg=`$ECHO "$1" | $SED \ -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; *) _G_arg=$1 ;; esac case $_G_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_arg=\"$_G_arg\" ;; esac func_quote_for_expand_result=$_G_arg } # func_stripname PREFIX SUFFIX NAME # --------------------------------- # strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_stripname () { $debug_cmd # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary variable first. func_stripname_result=$3 func_stripname_result=${func_stripname_result#"$1"} func_stripname_result=${func_stripname_result%"$2"} }' else func_stripname () { $debug_cmd case $2 in .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; esac } fi # func_show_eval CMD [FAIL_EXP] # ----------------------------- # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} func_quote_for_expand "$_G_cmd" eval "func_notquiet $func_quote_for_expand_result" $opt_dry_run || { eval "$_G_cmd" _G_status=$? if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_show_eval_locale CMD [FAIL_EXP] # ------------------------------------ # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} $opt_quiet || { func_quote_for_expand "$_G_cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || { eval "$_G_user_locale $_G_cmd" _G_status=$? eval "$_G_safe_locale" if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_tr_sh # ---------- # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { $debug_cmd case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_verbose ARG... # ------------------- # Echo program name prefixed message in verbose mode only. func_verbose () { $debug_cmd $opt_verbose && func_echo "$*" : } # func_warn_and_continue ARG... # ----------------------------- # Echo program name prefixed warning message to standard error. func_warn_and_continue () { $debug_cmd $require_term_colors func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 } # func_warning CATEGORY ARG... # ---------------------------- # Echo program name prefixed warning message to standard error. Warning # messages can be filtered according to CATEGORY, where this function # elides messages where CATEGORY is not listed in the global variable # 'opt_warning_types'. func_warning () { $debug_cmd # CATEGORY must be in the warning_categories list! case " $warning_categories " in *" $1 "*) ;; *) func_internal_error "invalid warning category '$1'" ;; esac _G_category=$1 shift case " $opt_warning_types " in *" $_G_category "*) $warning_func ${1+"$@"} ;; esac } # func_sort_ver VER1 VER2 # ----------------------- # 'sort -V' is not generally available. # Note this deviates from the version comparison in automake # in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a # but this should suffice as we won't be specifying old # version formats or redundant trailing .0 in bootstrap.conf. # If we did want full compatibility then we should probably # use m4_version_compare from autoconf. func_sort_ver () { $debug_cmd printf '%s\n%s\n' "$1" "$2" \ | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n } # func_lt_ver PREV CURR # --------------------- # Return true if PREV and CURR are in the correct order according to # func_sort_ver, otherwise false. Use it like this: # # func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." func_lt_ver () { $debug_cmd test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: #! /bin/sh # Set a version string for this script. scriptversion=2014-01-07.03; # UTC # A portable, pluggable option parser for Bourne shell. # Written by Gary V. Vaughan, 2010 # Copyright (C) 2010-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # This file is a library for parsing options in your shell scripts along # with assorted other useful supporting features that you can make use # of too. # # For the simplest scripts you might need only: # # #!/bin/sh # . relative/path/to/funclib.sh # . relative/path/to/options-parser # scriptversion=1.0 # func_options ${1+"$@"} # eval set dummy "$func_options_result"; shift # ...rest of your script... # # In order for the '--version' option to work, you will need to have a # suitably formatted comment like the one at the top of this file # starting with '# Written by ' and ending with '# warranty; '. # # For '-h' and '--help' to work, you will also need a one line # description of your script's purpose in a comment directly above the # '# Written by ' line, like the one at the top of this file. # # The default options also support '--debug', which will turn on shell # execution tracing (see the comment above debug_cmd below for another # use), and '--verbose' and the func_verbose function to allow your script # to display verbose messages only when your user has specified # '--verbose'. # # After sourcing this file, you can plug processing for additional # options by amending the variables from the 'Configuration' section # below, and following the instructions in the 'Option parsing' # section further down. ## -------------- ## ## Configuration. ## ## -------------- ## # You should override these variables in your script after sourcing this # file so that they reflect the customisations you have added to the # option parser. # The usage line for option parsing errors and the start of '-h' and # '--help' output messages. You can embed shell variables for delayed # expansion at the time the message is displayed, but you will need to # quote other shell meta-characters carefully to prevent them being # expanded when the contents are evaled. usage='$progpath [OPTION]...' # Short help message in response to '-h' and '--help'. Add to this or # override it after sourcing this library to reflect the full set of # options your script accepts. usage_message="\ --debug enable verbose shell tracing -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -v, --verbose verbosely report processing --version print version information and exit -h, --help print short or long help message and exit " # Additional text appended to 'usage_message' in response to '--help'. long_help_message=" Warning categories include: 'all' show all warnings 'none' turn off all the warnings 'error' warnings are treated as fatal errors" # Help message printed before fatal option parsing errors. fatal_help="Try '\$progname --help' for more information." ## ------------------------- ## ## Hook function management. ## ## ------------------------- ## # This section contains functions for adding, removing, and running hooks # to the main code. A hook is just a named list of of function, that can # be run in order later on. # func_hookable FUNC_NAME # ----------------------- # Declare that FUNC_NAME will run hooks added with # 'func_add_hook FUNC_NAME ...'. func_hookable () { $debug_cmd func_append hookable_fns " $1" } # func_add_hook FUNC_NAME HOOK_FUNC # --------------------------------- # Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must # first have been declared "hookable" by a call to 'func_hookable'. func_add_hook () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not accept hook functions." ;; esac eval func_append ${1}_hooks '" $2"' } # func_remove_hook FUNC_NAME HOOK_FUNC # ------------------------------------ # Remove HOOK_FUNC from the list of functions called by FUNC_NAME. func_remove_hook () { $debug_cmd eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' } # func_run_hooks FUNC_NAME [ARG]... # --------------------------------- # Run all hook functions registered to FUNC_NAME. # It is assumed that the list of hook functions contains nothing more # than a whitespace-delimited list of legal shell function names, and # no effort is wasted trying to catch shell meta-characters or preserve # whitespace. func_run_hooks () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not support hook funcions.n" ;; esac eval _G_hook_fns=\$$1_hooks; shift for _G_hook in $_G_hook_fns; do eval $_G_hook '"$@"' # store returned options list back into positional # parameters for next 'cmd' execution. eval _G_hook_result=\$${_G_hook}_result eval set dummy "$_G_hook_result"; shift done func_quote_for_eval ${1+"$@"} func_run_hooks_result=$func_quote_for_eval_result } ## --------------- ## ## Option parsing. ## ## --------------- ## # In order to add your own option parsing hooks, you must accept the # full positional parameter list in your hook function, remove any # options that you action, and then pass back the remaining unprocessed # options in '_result', escaped suitably for # 'eval'. Like this: # # my_options_prep () # { # $debug_cmd # # # Extend the existing usage message. # usage_message=$usage_message' # -s, --silent don'\''t print informational messages # ' # # func_quote_for_eval ${1+"$@"} # my_options_prep_result=$func_quote_for_eval_result # } # func_add_hook func_options_prep my_options_prep # # # my_silent_option () # { # $debug_cmd # # # Note that for efficiency, we parse as many options as we can # # recognise in a loop before passing the remainder back to the # # caller on the first unrecognised argument we encounter. # while test $# -gt 0; do # opt=$1; shift # case $opt in # --silent|-s) opt_silent=: ;; # # Separate non-argument short options: # -s*) func_split_short_opt "$_G_opt" # set dummy "$func_split_short_opt_name" \ # "-$func_split_short_opt_arg" ${1+"$@"} # shift # ;; # *) set dummy "$_G_opt" "$*"; shift; break ;; # esac # done # # func_quote_for_eval ${1+"$@"} # my_silent_option_result=$func_quote_for_eval_result # } # func_add_hook func_parse_options my_silent_option # # # my_option_validation () # { # $debug_cmd # # $opt_silent && $opt_verbose && func_fatal_help "\ # '--silent' and '--verbose' options are mutually exclusive." # # func_quote_for_eval ${1+"$@"} # my_option_validation_result=$func_quote_for_eval_result # } # func_add_hook func_validate_options my_option_validation # # You'll alse need to manually amend $usage_message to reflect the extra # options you parse. It's preferable to append if you can, so that # multiple option parsing hooks can be added safely. # func_options [ARG]... # --------------------- # All the functions called inside func_options are hookable. See the # individual implementations for details. func_hookable func_options func_options () { $debug_cmd func_options_prep ${1+"$@"} eval func_parse_options \ ${func_options_prep_result+"$func_options_prep_result"} eval func_validate_options \ ${func_parse_options_result+"$func_parse_options_result"} eval func_run_hooks func_options \ ${func_validate_options_result+"$func_validate_options_result"} # save modified positional parameters for caller func_options_result=$func_run_hooks_result } # func_options_prep [ARG]... # -------------------------- # All initialisations required before starting the option parse loop. # Note that when calling hook functions, we pass through the list of # positional parameters. If a hook function modifies that list, and # needs to propogate that back to rest of this script, then the complete # modified list must be put in 'func_run_hooks_result' before # returning. func_hookable func_options_prep func_options_prep () { $debug_cmd # Option defaults: opt_verbose=false opt_warning_types= func_run_hooks func_options_prep ${1+"$@"} # save modified positional parameters for caller func_options_prep_result=$func_run_hooks_result } # func_parse_options [ARG]... # --------------------------- # The main option parsing loop. func_hookable func_parse_options func_parse_options () { $debug_cmd func_parse_options_result= # this just eases exit handling while test $# -gt 0; do # Defer to hook functions for initial option parsing, so they # get priority in the event of reusing an option name. func_run_hooks func_parse_options ${1+"$@"} # Adjust func_parse_options positional parameters to match eval set dummy "$func_run_hooks_result"; shift # Break out of the loop if we already parsed every option. test $# -gt 0 || break _G_opt=$1 shift case $_G_opt in --debug|-x) debug_cmd='set -x' func_echo "enabling shell trace mode" $debug_cmd ;; --no-warnings|--no-warning|--no-warn) set dummy --warnings none ${1+"$@"} shift ;; --warnings|--warning|-W) test $# = 0 && func_missing_arg $_G_opt && break case " $warning_categories $1" in *" $1 "*) # trailing space prevents matching last $1 above func_append_uniq opt_warning_types " $1" ;; *all) opt_warning_types=$warning_categories ;; *none) opt_warning_types=none warning_func=: ;; *error) opt_warning_types=$warning_categories warning_func=func_fatal_error ;; *) func_fatal_error \ "unsupported warning category: '$1'" ;; esac shift ;; --verbose|-v) opt_verbose=: ;; --version) func_version ;; -\?|-h) func_usage ;; --help) func_help ;; # Separate optargs to long options (plugins may need this): --*=*) func_split_equals "$_G_opt" set dummy "$func_split_equals_lhs" \ "$func_split_equals_rhs" ${1+"$@"} shift ;; # Separate optargs to short options: -W*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "$func_split_short_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-v*|-x*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) break ;; -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; esac done # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} func_parse_options_result=$func_quote_for_eval_result } # func_validate_options [ARG]... # ------------------------------ # Perform any sanity checks on option settings and/or unconsumed # arguments. func_hookable func_validate_options func_validate_options () { $debug_cmd # Display all warnings if -W was not given. test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" func_run_hooks func_validate_options ${1+"$@"} # Bail if the options were screwed! $exit_cmd $EXIT_FAILURE # save modified positional parameters for caller func_validate_options_result=$func_run_hooks_result } ## ----------------- ## ## Helper functions. ## ## ----------------- ## # This section contains the helper functions used by the rest of the # hookable option parser framework in ascii-betical order. # func_fatal_help ARG... # ---------------------- # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { $debug_cmd eval \$ECHO \""Usage: $usage"\" eval \$ECHO \""$fatal_help"\" func_error ${1+"$@"} exit $EXIT_FAILURE } # func_help # --------- # Echo long help message to standard output and exit. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message" exit 0 } # func_missing_arg ARGNAME # ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $debug_cmd func_error "Missing argument for '$1'." exit_cmd=exit } # func_split_equals STRING # ------------------------ # Set func_split_equals_lhs and func_split_equals_rhs shell variables after # splitting STRING at the '=' sign. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_equals () { $debug_cmd func_split_equals_lhs=${1%%=*} func_split_equals_rhs=${1#*=} test "x$func_split_equals_lhs" = "x$1" \ && func_split_equals_rhs= }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_equals () { $debug_cmd func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` func_split_equals_rhs= test "x$func_split_equals_lhs" = "x$1" \ || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` } fi #func_split_equals # func_split_short_opt SHORTOPT # ----------------------------- # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_short_opt () { $debug_cmd func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"} }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_short_opt () { $debug_cmd func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` } fi #func_split_short_opt # func_usage # ---------- # Echo short help message to standard output and exit. func_usage () { $debug_cmd func_usage_message $ECHO "Run '$progname --help |${PAGER-more}' for full usage" exit 0 } # func_usage_message # ------------------ # Echo short help message to standard output. func_usage_message () { $debug_cmd eval \$ECHO \""Usage: $usage"\" echo $SED -n 's|^# || /^Written by/{ x;p;x } h /^Written by/q' < "$progpath" echo eval \$ECHO \""$usage_message"\" } # func_version # ------------ # Echo version message to standard output and exit. func_version () { $debug_cmd printf '%s\n' "$progname $scriptversion" $SED -n ' /(C)/!b go :more /\./!{ N s|\n# | | b more } :go /^# Written by /,/# warranty; / { s|^# || s|^# *$|| s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| p } /^# Written by / { s|^# || p } /^warranty; /q' < "$progpath" exit $? } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: # Set a version string. scriptversion='(GNU libtool) 2.4.6' # func_echo ARG... # ---------------- # Libtool also displays the current mode in messages, so override # funclib.sh func_echo with this custom definition. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" done IFS=$func_echo_IFS } # func_warning ARG... # ------------------- # Libtool warnings are not categorized, so override funclib.sh # func_warning with this simpler definition. func_warning () { $debug_cmd $warning_func ${1+"$@"} } ## ---------------- ## ## Options parsing. ## ## ---------------- ## # Hook in the functions to make sure our own options are parsed during # the option parsing loop. usage='$progpath [OPTION]... [MODE-ARG]...' # Short help message in response to '-h'. usage_message="Options: --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information and exit --mode=MODE use operation mode MODE --no-warnings equivalent to '-Wnone' --preserve-dup-deps don't remove duplicate dependency libraries --quiet, --silent don't print informational messages --tag=TAG use configuration variables from tag TAG -v, --verbose print more informational messages than default --version print version information -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -h, --help, --help-all print short, long, or detailed help message " # Additional text appended to 'usage_message' in response to '--help'. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. When passed as first option, '--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. Try '$progname --help --mode=MODE' for a more detailed description of MODE. When reporting a bug, please describe a test case to reproduce it and include the following information: host-triplet: $host shell: $SHELL compiler: $LTCC compiler flags: $LTCFLAGS linker: $LD (gnu? $with_gnu_ld) version: $progname (GNU libtool) 2.4.6 automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` Report bugs to . GNU libtool home page: . General help using GNU software: ." exit 0 } # func_lo2o OBJECT-NAME # --------------------- # Transform OBJECT-NAME from a '.lo' suffix to the platform specific # object suffix. lo2o=s/\\.lo\$/.$objext/ o2lo=s/\\.$objext\$/.lo/ if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_lo2o () { case $1 in *.lo) func_lo2o_result=${1%.lo}.$objext ;; * ) func_lo2o_result=$1 ;; esac }' # func_xform LIBOBJ-OR-SOURCE # --------------------------- # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) # suffix to a '.lo' libtool-object suffix. eval 'func_xform () { func_xform_result=${1%.*}.lo }' else # ...otherwise fall back to using sed. func_lo2o () { func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` } func_xform () { func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` } fi # func_fatal_configuration ARG... # ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func__fatal_error ${1+"$@"} \ "See the $PACKAGE documentation for more information." \ "Fatal configuration error." } # func_config # ----------- # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # ------------- # Display the features supported by this script. func_features () { echo "host: $host" if test yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi if test yes = "$build_old_libs"; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag TAGNAME # ----------------------- # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname=$1 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf=/$re_begincf/,/$re_endcf/p # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # ------------------------ # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # libtool_options_prep [ARG]... # ----------------------------- # Preparation for options parsed by libtool. libtool_options_prep () { $debug_mode # Option defaults: opt_config=false opt_dlopen= opt_dry_run=false opt_help=false opt_mode= opt_preserve_dup_deps=false opt_quiet=false nonopt= preserve_args= # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac # Pass back the list of options. func_quote_for_eval ${1+"$@"} libtool_options_prep_result=$func_quote_for_eval_result } func_add_hook func_options_prep libtool_options_prep # libtool_parse_options [ARG]... # --------------------------------- # Provide handling for libtool specific options. libtool_parse_options () { $debug_cmd # Perform our own loop to consume as many options as possible in # each iteration. while test $# -gt 0; do _G_opt=$1 shift case $_G_opt in --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) func_config ;; --dlopen|-dlopen) opt_dlopen="${opt_dlopen+$opt_dlopen }$1" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) func_features ;; --finish) set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $_G_opt && break opt_mode=$1 case $1 in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $_G_opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_quiet=false func_append preserve_args " $_G_opt" ;; --no-warnings|--no-warning|--no-warn) opt_warning=false func_append preserve_args " $_G_opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $_G_opt" ;; --silent|--quiet) opt_quiet=: opt_verbose=false func_append preserve_args " $_G_opt" ;; --tag) test $# = 0 && func_missing_arg $_G_opt && break opt_tag=$1 func_append preserve_args " $_G_opt $1" func_enable_tag "$1" shift ;; --verbose|-v) opt_quiet=false opt_verbose=: func_append preserve_args " $_G_opt" ;; # An option not handled by this hook function: *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; esac done # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} libtool_parse_options_result=$func_quote_for_eval_result } func_add_hook func_parse_options libtool_parse_options # libtool_validate_options [ARG]... # --------------------------------- # Perform any sanity checks on option settings and/or unconsumed # arguments. libtool_validate_options () { # save first non-option argument if test 0 -lt $#; then nonopt=$1 shift fi # preserve --debug test : = "$debug_cmd" || func_append preserve_args " --debug" case $host in # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match test yes != "$build_libtool_libs" \ && test yes != "$build_old_libs" \ && func_fatal_configuration "not configured to build any kind of library" # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test execute != "$opt_mode"; then func_error "unrecognized option '-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help=$help help="Try '$progname --help --mode=$opt_mode' for more information." } # Pass back the unparsed argument list func_quote_for_eval ${1+"$@"} libtool_validate_options_result=$func_quote_for_eval_result } func_add_hook func_validate_options libtool_validate_options # Process options as early as possible so that --help and --version # can return quickly. func_options ${1+"$@"} eval set dummy "$func_options_result"; shift ## ----------- ## ## Main. ## ## ----------- ## magic='%%%MAGIC variable%%%' magic_exe='%%%MAGIC EXE variable%%%' # Global variables. extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # func_generated_by_libtool # True iff stdin has been generated by Libtool. This function is only # a basic sanity check; it will hardly flush out determined imposters. func_generated_by_libtool_p () { $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p } # func_lalib_unsafe_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if 'file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case $lalib_p_line in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test yes = "$lalib_p" } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { test -f "$1" && $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $debug_cmd save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # 'FILE.' does not work on cygwin managed mounts. func_source () { $debug_cmd case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case $lt_sysroot:$1 in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result='='$func_stripname_result ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $debug_cmd if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with '--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=$1 if test yes = "$build_libtool_libs"; then write_lobj=\'$2\' else write_lobj=none fi if test yes = "$build_old_libs"; then write_oldobj=\'$3\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $debug_cmd # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result= if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result"; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $debug_cmd if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $debug_cmd # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $debug_cmd if test -z "$2" && test -n "$1"; then func_error "Could not determine host file name corresponding to" func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result=$1 fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $debug_cmd if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " '$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result=$3 fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $debug_cmd case $4 in $1 ) func_to_host_path_result=$3$func_to_host_path_result ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via '$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $debug_cmd $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $debug_cmd case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result=$1 } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result=$func_convert_core_msys_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result=$func_convert_core_file_wine_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via '$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $debug_cmd if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd=func_convert_path_$func_stripname_result fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $debug_cmd func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result=$1 } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_msys_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_path_wine_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_dll_def_p FILE # True iff FILE is a Windows DLL '.def' file. # Keep in sync with _LT_DLL_DEF_P in libtool.m4 func_dll_def_p () { $debug_cmd func_dll_def_p_tmp=`$SED -n \ -e 's/^[ ]*//' \ -e '/^\(;.*\)*$/d' \ -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ -e q \ "$1"` test DEF = "$func_dll_def_p_tmp" } # func_mode_compile arg... func_mode_compile () { $debug_cmd # Get the compilation command and the source file. base_compile= srcfile=$nonopt # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg=$arg arg_mode=normal ;; target ) libobj=$arg arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify '-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs=$IFS; IFS=, for arg in $args; do IFS=$save_ifs func_append_quoted lastarg "$arg" done IFS=$save_ifs func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg=$srcfile srcfile=$arg ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with '-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj=$func_basename_result } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from '$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test yes = "$build_libtool_libs" \ || func_fatal_configuration "cannot build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname=$func_basename_result xdir=$func_dirname_result lobj=$xdir$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test yes = "$build_old_libs"; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test no = "$compiler_c_o"; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext lockfile=$output_obj.lock else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test yes = "$need_locks"; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test warn = "$need_locks"; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test no != "$pic_mode"; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test yes = "$build_old_libs"; then if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test yes = "$compiler_c_o"; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test compile = "$opt_mode" && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a '.o' file suitable for static linking -static only build a '.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a 'standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix '.c' with the library object suffix, '.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to '-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the '--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the 'install' or 'cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE use a list of object files found in FILE to specify objects -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with '-') are ignored. Every other argument is treated as a filename. Files ending in '.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in '.la', then a libtool library is created, only library objects ('.lo' files) may be specified, and '-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created using 'ar' and 'ranlib', or on Windows using 'lib'. If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode '$opt_mode'" ;; esac echo $ECHO "Try '$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test : = "$opt_help"; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | $SED -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | $SED '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $debug_cmd # The first argument is the command name. cmd=$nonopt test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "'$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "'$file' was not linked with '-export-dynamic'" continue fi func_dirname "$file" "" "." dir=$func_dirname_result if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir=$func_dirname_result ;; *) func_warning "'-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir=$absdir # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic=$magic # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file=$progdir/$program elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file=$progdir/$program fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if $opt_dry_run; then # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS else if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd=\$cmd$args fi } test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $debug_cmd libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "'$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument '$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and '=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_quiet && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the '-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the '$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the '$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the '$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $debug_cmd # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" func_append install_prog "$func_quote_for_eval_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=false stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=: ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test X-m = "X$prev" && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_for_eval "$arg" func_append install_prog " $func_quote_for_eval_result" if test -n "$arg2"; then func_quote_for_eval "$arg2" fi func_append install_shared_prog " $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the '$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_for_eval "$install_override_mode" func_append install_shared_prog " -m $func_quote_for_eval_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=: if $isdir; then destdir=$dest destname= else func_dirname_and_basename "$dest" "" "." destdir=$func_dirname_result destname=$func_basename_result # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "'$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "'$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir=$func_dirname_result func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking '$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname=$1 shift srcname=$realname test -n "$relink_command" && srcname=${realname}T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme=$stripme case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme= ;; esac ;; os2*) case $realname in *_dll.a) tstripme= ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try 'ln -sf' first, because the 'ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib=$destdir/$realname func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name=$func_basename_result instname=$dir/${name}i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest=$destfile destfile= ;; *) func_fatal_help "cannot copy a libtool object to '$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test yes = "$build_old_libs"; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext= case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=.exe fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script '$wrapper'" finalize=: for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` if test -n "$libdir" && test ! -f "$libfile"; then func_warning "'$lib' has not been installed in '$libdir'" finalize=false fi done relink_command= func_source "$wrapper" outputname= if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { if $finalize; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file=$func_basename_result outputname=$tmpdir/$file # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_quiet || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else func_error "error: relink '$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file=$outputname else func_warning "cannot relink '$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name=$func_basename_result # Set up the ranlib parameters. oldlib=$destdir/$name func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run '$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test install = "$opt_mode" && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $debug_cmd my_outputname=$1 my_originator=$2 my_pic_p=${3-false} my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms=${my_outputname}S.c else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist=$output_objdir/$my_outputname.nm func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* External symbol declarations for the compiler. */\ " if test yes = "$dlself"; then func_verbose "generating symbol list for '$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from '$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols=$output_objdir/$outputname.exp $opt_dry_run || { $RM $export_symbols eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from '$dlprefile'" func_basename "$dlprefile" name=$func_basename_result case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename= if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname"; then func_basename "$dlprefile_dlname" dlprefile_dlbasename=$func_basename_result else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename"; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi func_show_eval '$RM "${nlist}I"' if test -n "$global_symbol_to_import"; then eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[];\ " if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ static void lt_syminit(void) { LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; for (; symbol->name; ++symbol) {" $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" echo >> "$output_objdir/$my_dlsyms" "\ } }" fi echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = { {\"$my_originator\", (void *) 0}," if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ {\"@INIT@\", (void *) <_syminit}," fi case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' # Transform the symbol file into the correct name. symfileobj=$output_objdir/${my_outputname}S.$objext case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for '$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $debug_cmd win32_libid_type=unknown win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then case $nm_interface in "MS dumpbin") if func_cygming_ms_implib_p "$1" || func_cygming_gnu_implib_p "$1" then win32_nmres=import else win32_nmres= fi ;; *) func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s|.*|import| p q } }'` ;; esac case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $debug_cmd sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $debug_cmd match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive that possess that section. Heuristic: eliminate # all those that have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $debug_cmd if func_cygming_gnu_implib_p "$1"; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1"; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result= fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $debug_cmd f_ex_an_ar_dir=$1; shift f_ex_an_ar_oldlib=$1 if test yes = "$lock_old_archive_extraction"; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test yes = "$lock_old_archive_extraction"; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $debug_cmd my_gentop=$1; shift my_oldlibs=${1+"$@"} my_oldobjs= my_xlib= my_xabs= my_xdir= for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib=$func_basename_result my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir=$my_gentop/$my_xlib_u func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` func_basename "$darwin_archive" darwin_base_archive=$func_basename_result darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches; do func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" cd "unfat-$$/$darwin_base_archive-$darwin_arch" func_extract_an_archive "`pwd`" "$darwin_base_archive" cd "$darwin_curdir" $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result=$my_oldobjs } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory where it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=\"$qECHO\" fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options that match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test yes = "$fast_install"; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else \$ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* declarations of non-ANSI functions */ #if defined __MINGW32__ # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined __CYGWIN__ # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined other_platform || defined ... */ #endif /* portability defines, excluding path handling macros */ #if defined _MSC_VER # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC #elif defined __MINGW32__ # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined __CYGWIN__ # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined other platforms ... */ #endif #if defined PATH_MAX # define LT_PATHMAX PATH_MAX #elif defined MAXPATHLEN # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ defined __OS2__ # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free (stale); stale = 0; } \ } while (0) #if defined LT_DEBUGWRAPPER static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; size_t tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined HAVE_DOS_BASED_FILE_SYSTEM if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined HAVE_DOS_BASED_FILE_SYSTEM } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = (size_t) (q - p); p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (STREQ (str, pat)) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else size_t len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { size_t orig_value_len = strlen (orig_value); size_t add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ size_t len = strlen (new_value); while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[--len] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $debug_cmd case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_suncc_cstd_abi # !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! # Several compiler flags select an ABI that is incompatible with the # Cstd library. Avoid specifying it if any are in CXXFLAGS. func_suncc_cstd_abi () { $debug_cmd case " $compile_command " in *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) suncc_use_cstd_abi=no ;; *) suncc_use_cstd_abi=yes ;; esac } # func_mode_link arg... func_mode_link () { $debug_cmd case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # what system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll that has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=false prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module=$wl-single_module func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test yes != "$build_libtool_libs" \ && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg=$1 shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir=$arg prev= continue ;; dlfiles|dlprefiles) $preload || { # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=: } case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test no = "$dlself"; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test dlprefiles = "$prev"; then dlself=yes elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test dlfiles = "$prev"; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols=$arg test -f "$arg" \ || func_fatal_error "symbol file '$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex=$arg prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir=$arg prev= continue ;; mllvm) # Clang does not use LLVM to link, so we can simply discard any # '-mllvm $arg' options when doing the link step. prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result if test none != "$pic_object"; then # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object fi # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file '$arg' does not exist" fi arg=$save_arg prev= continue ;; os2dllname) os2dllname=$arg prev= continue ;; precious_regex) precious_files_regex=$arg prev= continue ;; release) release=-$arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test rpath = "$prev"; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds=$arg prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg=$arg case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "'-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test X-export-symbols = "X$arg"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between '-L' and '$1'" else func_fatal_error "need path for '-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of '$dir'" dir=$absdir ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test X-lc = "X$arg" || test X-lm = "X$arg"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test X-lc = "X$arg" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc due to us having libc/libc_r. test X-lc = "X$arg" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test X-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test X-lc = "X$arg" && continue ;; esac elif test X-lc_r = "X$arg"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -mllvm) prev=mllvm continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module=$wl-multi_module continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "'-no-install' is ignored for $host" func_warning "assuming '-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -os2dllname) prev=os2dllname continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; # Flags to be passed through unchanged, with rationale: # -64, -mips[0-9] enable 64-bit mode for the SGI compiler # -r[0-9][0-9]* specify processor for the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler # +DA*, +DD* enable 64-bit mode for the HP compiler # -q* compiler args for the IBM compiler # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC # -fstack-protector* stack protector flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization # -stdlib=* select c++ std lib with clang -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; -Z*) if test os2 = "`expr $host : '.*\(os2\)'`"; then # OS/2 uses -Zxxx to specify OS/2-specific options compiler_flags="$compiler_flags $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case $arg in -Zlinker | -Zstack) prev=xcompiler ;; esac continue else # Otherwise treat like 'Some other compiler flag' below func_quote_for_eval "$arg" arg=$func_quote_for_eval_result fi ;; # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; *.$objext) # A standard object. func_append objs " $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result test none = "$pic_object" || { # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object } # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test dlfiles = "$prev"; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test dlprefiles = "$prev"; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the '$prevarg' option requires an argument" if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname=$func_basename_result libobjs_save=$libobjs if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" # Definition is injected by LT_CONFIG during libtool generation. func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" func_dirname "$output" "/" "" output_objdir=$func_dirname_result$objdir func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test lib = "$linkmode"; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=false newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test lib,link = "$linkmode,$pass"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs=$tmp_deplibs fi if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass"; then libs=$deplibs deplibs= fi if test prog = "$linkmode"; then case $pass in dlopen) libs=$dlfiles ;; dlpreopen) libs=$dlprefiles ;; link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; esac fi if test lib,dlpreopen = "$linkmode,$pass"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs=$dlprefiles fi if test dlopen = "$pass"; then # Collect dlpreopened libraries save_deplibs=$deplibs deplibs= fi for deplib in $libs; do lib= found=false case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test lib != "$linkmode" && test prog != "$linkmode"; then func_warning "'-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test lib = "$linkmode"; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib=$searchdir/lib$name$search_ext if test -f "$lib"; then if test .la = "$search_ext"; then found=: else found=false fi break 2 fi done done if $found; then # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll=$l done if test "X$ll" = "X$old_library"; then # only static version available found=false func_dirname "$lib" "" "." ladir=$func_dirname_result lib=$ladir/$old_library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi else # deplib doesn't seem to be a libtool library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi ;; # -l *.ltframework) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test conv = "$pass" && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi if test scan = "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "'-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test link = "$pass"; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=false case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=: fi ;; pass_all) valid_a_lib=: ;; esac if $valid_a_lib; then echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" else echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." fi ;; esac continue ;; prog) if test link != "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test conv = "$pass"; then deplibs="$deplib $deplibs" elif test prog = "$linkmode"; then if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=: continue ;; esac # case $deplib $found || test -f "$lib" \ || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "'$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir=$func_dirname_result dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass" || { test prog != "$linkmode" && test lib != "$linkmode"; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test conv = "$pass"; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for '$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" elif test prog != "$linkmode" && test lib != "$linkmode"; then func_fatal_error "'$lib' is not a convenience library" fi tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test yes = "$prefer_static_libs" || test built,no = "$prefer_static_libs,$installed"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib=$l done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for '$lib'" fi # This library was specified with -dlopen. if test dlopen = "$pass"; then test -z "$libdir" \ && func_fatal_error "cannot -dlopen a convenience library: '$lib'" if test -z "$dlname" || test yes != "$dlopen_support" || test no = "$build_libtool_libs" then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of '$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir=$ladir fi ;; esac func_basename "$lib" laname=$func_basename_result # Find the relevant object directory and library name. if test yes = "$installed"; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library '$lib' was moved." dir=$ladir absdir=$abs_ladir libdir=$abs_ladir else dir=$lt_sysroot$libdir absdir=$lt_sysroot$libdir fi test yes = "$hardcode_automatic" && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir=$ladir absdir=$abs_ladir # Remove this search path later func_append notinst_path " $abs_ladir" else dir=$ladir/$objdir absdir=$abs_ladir/$objdir # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test dlpreopen = "$pass"; then if test -z "$libdir" && test prog = "$linkmode"; then func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" fi case $host in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test lib = "$linkmode"; then deplibs="$dir/$old_library $deplibs" elif test prog,link = "$linkmode,$pass"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test prog = "$linkmode" && test link != "$pass"; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=false if test no != "$link_all_deplibs" || test -z "$library_names" || test no = "$build_libtool_libs"; then linkalldeplibs=: fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if $linkalldeplibs; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test prog,link = "$linkmode,$pass"; then if test -n "$library_names" && { { test no = "$prefer_static_libs" || test built,yes = "$prefer_static_libs,$installed"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then # Make sure the rpath contains only unique directories. case $temp_rpath: in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if $alldeplibs && { test pass_all = "$deplibs_check_method" || { test yes = "$build_libtool_libs" && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test built = "$use_static_libs" && test yes = "$installed"; then use_static_libs=no fi if test -n "$library_names" && { test no = "$use_static_libs" || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc* | *os2*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test no = "$installed"; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule= for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule=$dlpremoduletest break fi done if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then echo if test prog = "$linkmode"; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test lib = "$linkmode" && test yes = "$hardcode_into_libs"; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname=$1 shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname=$dlname elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc* | *os2*) func_arith $current - $age major=$func_arith_result versuffix=-$major ;; esac eval soname=\"$soname_spec\" else soname=$realname fi # Make a new name for the extract_expsyms_cmds to use soroot=$soname func_basename "$soroot" soname=$func_basename_result func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from '$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for '$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test prog = "$linkmode" || test relink != "$opt_mode"; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test no = "$hardcode_direct"; then add=$dir/$linklib case $host in *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; *-*-sysv4*uw2*) add_dir=-L$dir ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir=-L$dir ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we cannot # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library"; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add=$dir/$old_library fi elif test -n "$old_library"; then add=$dir/$old_library fi fi esac elif test no = "$hardcode_minus_L"; then case $host in *-*-sunos*) add_shlibpath=$dir ;; esac add_dir=-L$dir add=-l$name elif test no = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; relink) if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$dir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$absdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name elif test yes = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; *) lib_linked=no ;; esac if test yes != "$lib_linked"; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test prog = "$linkmode"; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test yes != "$hardcode_direct" && test yes != "$hardcode_minus_L" && test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test prog = "$linkmode" || test relink = "$opt_mode"; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$libdir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$libdir add=-l$name elif test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add=-l$name elif test yes = "$hardcode_automatic"; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib"; then add=$inst_prefix_dir$libdir/$linklib else add=$libdir/$linklib fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir=-L$libdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name fi if test prog = "$linkmode"; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test prog = "$linkmode"; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test unsupported != "$hardcode_direct"; then test -n "$old_library" && linklib=$old_library compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test yes = "$build_libtool_libs"; then # Not a shared library if test pass_all != "$deplibs_check_method"; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system cannot link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test yes = "$module"; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test lib = "$linkmode"; then if test -n "$dependency_libs" && { test yes != "$hardcode_into_libs" || test yes = "$build_old_libs" || test yes = "$link_static"; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs=$temp_deplibs fi func_append newlib_search_path " $absdir" # Link against this library test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test no != "$link_all_deplibs"; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path=$deplib ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of '$dir'" absdir=$dir fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names"; then for tmp in $deplibrary_names; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl"; then depdepl=$absdir/$objdir/$depdepl darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" path= fi fi ;; *) path=-L$absdir/$objdir ;; esac else eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "'$deplib' seems to be moved" path=-L$absdir fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test link = "$pass"; then if test prog = "$linkmode"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs=$newdependency_libs if test dlpreopen = "$pass"; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test dlopen != "$pass"; then test conv = "$pass" || { # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= } if test prog,link = "$linkmode,$pass"; then vars="compile_deplibs finalize_deplibs" else vars=deplibs fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Add Sun CC postdeps if required: test CXX = "$tagname" && { case $host_os in linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; solaris*) func_cc_basename "$CC" case $func_cc_basename_result in CC* | sunCC*) func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; esac } # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i= ;; esac if test -n "$i"; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test prog = "$linkmode"; then dlfiles=$newdlfiles fi if test prog = "$linkmode" || test lib = "$linkmode"; then dlprefiles=$newdlprefiles fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "'-R' is ignored for archives" test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "'-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "'-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs=$output func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form 'libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test no = "$module" \ && func_fatal_help "libtool library '$output' must begin with 'lib'" if test no != "$need_lib_prefix"; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test pass_all != "$deplibs_check_method"; then func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test no = "$dlself" \ || func_warning "'-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test 1 -lt "$#" \ && func_warning "ignoring multiple '-rpath's for a libtool library" install_libdir=$1 oldlibs= if test -z "$rpath"; then if test yes = "$build_libtool_libs"; then # Building a libtool convenience library. # Some compilers have problems with a '.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "'-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs=$IFS; IFS=: set dummy $vinfo 0 0 0 shift IFS=$save_ifs test -n "$7" && \ func_fatal_help "too many parameters to '-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major=$1 number_minor=$2 number_revision=$3 # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # that has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|freebsd-elf|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_revision ;; freebsd-aout|qnx|sunos) current=$number_major revision=$number_minor age=0 ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_minor lt_irix_increment=no ;; esac ;; no) current=$1 revision=$2 age=$3 ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT '$current' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION '$revision' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE '$age' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE '$age' is greater than the current interface number '$current'" func_fatal_error "'$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" # On Darwin other compilers case $CC in nagfor*) verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" ;; *) verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; esac ;; freebsd-aout) major=.$current versuffix=.$current.$revision ;; freebsd-elf) func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; irix | nonstopux) if test no = "$lt_irix_increment"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring=$verstring_prefix$major.$revision # Add in all the interfaces that we are compatible with. loop=$revision while test 0 -ne "$loop"; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring_prefix$major.$iface:$verstring done # Before this point, $major must not contain '.'. major=.$major versuffix=$major.$revision ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=.$current.$age.$revision verstring=$current.$age.$revision # Add in all the interfaces that we are compatible with. loop=$age while test 0 -ne "$loop"; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring:$iface.0 done # Make executables depend on our current version. func_append verstring ":$current.0" ;; qnx) major=.$current versuffix=.$current ;; sco) major=.$current versuffix=.$current ;; sunos) major=.$current versuffix=.$current.$revision ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 file systems. func_arith $current - $age major=$func_arith_result versuffix=-$major ;; *) func_fatal_configuration "unknown library version type '$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring=0.0 ;; esac if test no = "$need_version"; then versuffix= else versuffix=.0.0 fi fi # Remove version info from name if versioning should be avoided if test yes,no = "$avoid_version,$need_version"; then major= versuffix= verstring= fi # Check to see if the archive will have undefined symbols. if test yes = "$allow_undefined"; then if test unsupported = "$allow_undefined_flag"; then if test yes = "$build_old_libs"; then func_warning "undefined symbols not allowed in $host shared libraries; building static only" build_libtool_libs=no else func_fatal_error "can't build $host shared library unless -no-undefined is specified" fi fi else # Don't allow undefined symbols. allow_undefined_flag=$no_undefined_flag fi fi func_generate_dlsyms "$libname" "$libname" : func_append libobjs " $symfileobj" test " " = "$libobjs" && libobjs= if test relink != "$opt_mode"; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) if test -n "$precious_files_regex"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles=$dlfiles dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles=$dlprefiles dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test yes = "$build_libtool_libs"; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test yes = "$build_libtool_need_lc"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release= versuffix= major= newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib=$potent_lib while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | $SED 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib= ;; esac fi if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib=$potent_lib # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs= tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test yes = "$allow_libtool_libs_with_static_runtimes"; then for i in $predeps $postdeps; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test none = "$deplibs_check_method"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test yes = "$droppeddeps"; then if test yes = "$module"; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test no = "$allow_undefined"; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs=$new_libs # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test yes = "$build_libtool_libs"; then # Remove $wl instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test yes = "$hardcode_into_libs"; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath=$finalize_rpath test relink = "$opt_mode" || rpath=$compile_rpath$rpath for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath=$finalize_shlibpath test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname=$1 shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname=$realname fi if test -z "$dlname"; then dlname=$soname fi lib=$output_objdir/$realname linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols=$output_objdir/$libname.uexp func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile func_dll_def_p "$export_symbols" || { # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols=$export_symbols export_symbols= always_export_symbols=yes } fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs=$IFS; IFS='~' for cmd1 in $cmds; do IFS=$save_ifs # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test yes = "$try_normal_branch" \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=$output_objdir/$output_la.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS=$save_ifs if test -n "$export_symbols_regex" && test : != "$skipped_export"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test : != "$skipped_export" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs=$tmp_deplibs if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test yes = "$compiler_needs_object" && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test : != "$skipped_export" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then output=$output_objdir/$output_la.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then output=$output_objdir/$output_la.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test yes = "$compiler_needs_object"; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-$k.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test -z "$objlist" || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test 1 -eq "$k"; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-$k.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-$k.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi ${skipped_export-false} && { func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi } test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs=$IFS; IFS='~' for cmd in $concat_cmds; do IFS=$save_ifs $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi ${skipped_export-false} && { if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi } libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs=$IFS; IFS='~' for cmd in $cmds; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs # Restore the uninstalled library and exit if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test yes = "$module" || test yes = "$export_dynamic"; then # On all known operating systems, these are identical. dlname=$soname fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "'-R' is ignored for objects" test -n "$vinfo" && \ func_warning "'-version-info' is ignored for objects" test -n "$release" && \ func_warning "'-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object '$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj=$output ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # if reload_cmds runs $LD directly, get rid of -Wl from # whole_archive_flag_spec and hope we can get by with turning comma # into space. case $reload_cmds in *\$LD[\ \$]*) wl= ;; esac if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags else gentop=$output_objdir/${obj}x func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test yes = "$build_libtool_libs" || libobjs=$non_pic_objects # Create the old-style object. reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs output=$obj func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi test yes = "$build_libtool_libs" || { if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS } if test -n "$pic_flag" || test default != "$pic_mode"; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output=$libobj func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "'-version-info' is ignored for programs" test -n "$release" && \ func_warning "'-release' is ignored for programs" $preload \ && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test CXX = "$tagname"; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " $wl-bind_at_load" func_append finalize_command " $wl-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs=$new_libs func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath=$rpath rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath=$rpath if test -n "$libobjs" && test yes = "$build_old_libs"; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" false # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=: case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=false ;; *cygwin* | *mingw* ) test yes = "$build_libtool_libs" || wrappers_required=false ;; *) if test no = "$need_relink" || test yes != "$build_libtool_libs"; then wrappers_required=false fi ;; esac $wrappers_required || { # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command=$compile_command$compile_rpath # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.$objext"; then func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' fi exit $exit_status } if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test yes = "$no_install"; then # We don't need to create a wrapper script. link_command=$compile_var$compile_command$compile_rpath # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi case $hardcode_action,$fast_install in relink,*) # Fast installation is not supported link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath func_warning "this platform does not like uninstalled shared libraries" func_warning "'$output' will be relinked during installation" ;; *,yes) link_command=$finalize_var$compile_command$finalize_rpath relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` ;; *,no) link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath ;; *,needless) link_command=$finalize_var$compile_command$finalize_rpath relink_command= ;; esac # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource=$output_path/$objdir/lt-$output_name.c cwrapper=$output_path/$output_name.exe $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host"; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do case $build_libtool_libs in convenience) oldobjs="$libobjs_save $symfileobj" addlibs=$convenience build_libtool_libs=no ;; module) oldobjs=$libobjs_save addlibs=$old_convenience build_libtool_libs=no ;; *) oldobjs="$old_deplibs $non_pic_objects" $preload && test -f "$symfileobj" \ && func_append oldobjs " $symfileobj" addlibs=$old_convenience ;; esac if test -n "$addlibs"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase=$func_basename_result case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj"; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test -z "$oldobjs"; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test yes = "$build_old_libs" && old_library=$libname.$libext func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` if test yes = "$hardcode_automatic"; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test yes = "$installed"; then if test -z "$install_libdir"; then break fi output=$output_objdir/${outputname}i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name=$func_basename_result func_resolve_sysroot "$deplib" eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs=$newdependency_libs newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles=$newdlprefiles else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles=$newdlprefiles fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test -n "$bindir"; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result/$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that cannot go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test no,yes = "$installed,$need_relink"; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } if test link = "$opt_mode" || test relink = "$opt_mode"; then func_mode_link ${1+"$@"} fi # func_mode_uninstall arg... func_mode_uninstall () { $debug_cmd RM=$nonopt files= rmforce=false exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic for arg do case $arg in -f) func_append RM " $arg"; rmforce=: ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir=$func_dirname_result if test . = "$dir"; then odir=$objdir else odir=$dir/$objdir fi func_basename "$file" name=$func_basename_result test uninstall = "$opt_mode" && odir=$dir # Remember odir for removal later, being careful to avoid duplicates if test clean = "$opt_mode"; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif $rmforce; then continue fi rmfiles=$file case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case $opt_mode in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test none != "$pic_object"; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test none != "$non_pic_object"; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test clean = "$opt_mode"; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.$objext" if test yes = "$fast_install" && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name"; then func_append rmfiles " $odir/lt-$noexename.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the $objdir's in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then func_mode_uninstall ${1+"$@"} fi test -z "$opt_mode" && { help=$generic_help func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode '$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # where we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: tvtime-1.0.11/Makefile.am0000664000175000017500000000164712354244126012074 00000000000000# Makefile.am is the root Automakefile which calls all the sub-Automakefiles. # Copyright (C) 2002, 2003 Billy Biggs # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. AUTOMAKE_OPTIONS = 1.6 SUBDIRS = intl m4 docs data plugins src po EXTRA_DIST = config.rpath COPYING.LGPL ACLOCAL_AMFLAGS = -I m4 tvtime-1.0.11/docs/0000775000175000017500000000000013026503655011042 500000000000000tvtime-1.0.11/docs/tvtime.appdata.xml0000664000175000017500000000253312663345553014437 00000000000000 tvtime.desktop CC0-1.0 GPL-2.0+ TVtime Television Viewer High quality video deinterlacer

TVtime is a high quality television application for use with analog video capture cards on Linux systems. TVtime processes the input from a capture card and displays it on a computer monitor or projector.

Features:

  • Smooth motion: Experience the full framerate of the video signal. Every field is deinterlaced to a unique frame for television quality and beyond.
  • Quality picture: Highest quality picture of any Linux TV viewer. Uses the best deinterlacers from DScaler for the ultimate experience.
  • Slick On-Screen-Display: Gorgeously rendered text composited in realtime on the live video signal.
http://tvtime.sourceforge.net/ http://tvtime.sourceforge.net/screenshot-small.jpg http://tvtime.sourceforge.net/screenshots/15-sep-03-shot3.jpg jwrdegoede_at_fedoraproject.org
tvtime-1.0.11/docs/man/0000775000175000017500000000000013026503655011615 500000000000000tvtime-1.0.11/docs/man/de/0000775000175000017500000000000013026503655012205 500000000000000tvtime-1.0.11/docs/man/de/tvtime-scanner.10000664000175000017500000000466712354244126015161 00000000000000.\" Man page for tvtime-scanner .\" Copyright (c) 2003, 2004 Billy Biggs .\" German translation (c) 2004 Ingo van Lil .\" .\" This program is free software; you can redistribute it and/or modify .\" it under the terms of the GNU General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or (at .\" your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU General Public License .\" along with this program; if not, write to the Free Software .\" Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. .\" .TH tvtime-scanner 1 "Oktober 2004" "tvtime 1.0RC1" .SH NAME tvtime\-scanner \- durchsucht das gesamte Frequenzband nach Sendern für .BR tvtime . .SH SYNTAX .B tvtime\-scanner [ .IR OPTION ] ... .SH BESCHREIBUNG .B tvtime\-scanner ermöglicht es, das gesamte Frequenzband nach aktiven Sendern abzusuchen. Dies ist hilfreich für Kunden europäischer Kabelfirmen, z. B. .B UPC oder .BR Casema , die eine vom Standard abweichende Frequenztabelle verwenden. .B tvtime-scanner notiert alle gefundenen Sender in der Datei .I stationlist.xml in einer Frequenztabelle mit Namen "Custom". Diese kann dann durch den Aufruf .br \h'4n'tvtime --frequencies=custom .br oder durch Auswahl der benutzerdefinierten Frequenztabelle im Menü verwendet werden. .SH OPTIONEN .TP .B \-h, \-\-help Informationen zum Programmaufruf. .TP .B \-F, \-\-configfile=FILE Zusätzliche Konfigurationsdatei einlesen. .TP .B \-d, \-\-device=NAME Legt da zu verwendende video4linux\-Gerät fest. Standardmäßig wird .IR /dev/video0 verwendet. .TP .B \-i, \-\-input=INPUTNUM Legt die video4linux\-Quellennummer fest. Standardwert ist .IR 0 . Die meisten Karten besitzen eine ganze Reihe von Quellen, so ist z. B. bei einer WinTV\-Karte .I Quelle 0 der TV\-Empfänger und .I Quelle 1 der Composite Video\-Eingang. .TP .B \-n, \-\-norm=NORM Stellt den TV\-Empfänger auf die angegebene Fernsehnorm ein (Standardwert ist .IR NTSC ). Gültige Werte sind: .TS nokeep tab (@); l l. \(bu@NTSC \(bu@PAL \(bu@SECAM \(bu@PAL\-NC \(bu@PAL\-M \(bu@PAL\-N \(bu@NTSC\-JP .TE .SH AUTOR Billy Biggs. .SH "SIEHE AUCH" .BR tvtime (1), .BR tvtime-configure (1), .IR tvtime.xml (5), tvtime-1.0.11/docs/man/de/tvtime-configure.10000664000175000017500000001227612354244126015504 00000000000000.\" Man page for tvtime-configure .\" Copyright (c) 2003, 2004 Billy Biggs .\" German translation (c) 2004 Ingo van Lil .\" .\" This program is free software; you can redistribute it and/or modify .\" it under the terms of the GNU General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or (at .\" your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU General Public License .\" along with this program; if not, write to the Free Software .\" Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. .\" .TH tvtime-configure 1 "April 2005" "tvtime 1.0RC1" .SH NAME tvtime\-configure \- bearbeitet die Einstellungen der .BR tvtime \-Konfigurationsdatei. .SH SYNTAX .B tvtime\-configure [ .IR OPTION ] ... .SH BESCHREIBUNG .B tvtime\-configure ermöglicht es, die Konfigurationseinstellungen für .B tvtime zu ändern, ohne das eigentliche Programm zu starten. Dies ist nützlich für Programme wie debconf, die auf diese Weise .B tvtime konfigurieren können, ohne einen eigenen Parser für die Konfigurationsdatei zu enthalten. Die Kommandozeilenoptionen sind eine Teilmenge derer, die .B tvtime selbst akzeptiert. .SH OPTIONEN .TP .B \-a, \-\-widescreen Diese Option startet .B tvtime im 16:9\-Modus. .TP .B \-A, \-\-nowidescreen Diese Option startet .B tvtime im 4:3\-Modus. .TP .B \-h, \-\-help Informationen zum Programmaufruf. .TP .B \-m, \-\-fullscreen .B tvtime im Vollbildmodus starten. .TP .B \-M, \-\-window .B tvtime im Fenstermodus starten. .TP .B \-p, \-\-fspos=POS Legt fest, wie ein zu breites Bild im Vollbildmodus plaziert wird. Mögliche Werte sind .TS nokeep tab (@); l l. \(bu@top (oberer Bildrand) \(bu@bottom (unterer Bildrand) \(bu@centre (mittig, Standardwert) .TE .TP .B \-F, \-\-configfile=FILE Zusätzliche Konfigurationsdatei einlesen. .TP .B \-H, \-\-height=HEIGHT Legt die Höhe des Ausgabefensters fest. Die Standardgröße beträgt .I 576 Bildzeilen. .TP .B -I, \-\-inputwidth=SAMPLING Horizontale Auflösung des V4L\-Eingangssignals. Der Standardwert beträgt .IR 720 . Diese Einstellung legt fest, wie viele Pixel pro Bildzeile von der TV\-Karte ausgelesen werden sollen. Ein höherer Wert liefert ein besseres Bild, ein niedriger Wert verringert die benötigte Rechenzeit. Wenn Sie eine langsame CPU besitzen (etwa 500 MHz oder weniger), sollten Sie einen Wert von .IR 480 " oder " 400 verwenden. Für höchste Bildqualität verwenden Sie .IR 720 " oder " 768 Pixel. Die meisten TV\-Karten können das Eingangssignal nicht mit mehr als .I 768 Pixeln pro Bildzeile abtasten. .TP .B \-d, \-\-device=NAME Legt da zu verwendende video4linux\-Gerät fest. Standardmäßig wird .IR /dev/video0 verwendet. .TP .B \-b, \-\-vbidevice=DEVICE Legt das zu verwendende VBI\-Gerät fest. Standardmäßig wird .IR /dev/vbi0 verwendet. .TP .B \-i, \-\-input=INPUTNUM Legt die video4linux\-Quellennummer fest. Standardwert ist .IR 0 . Die meisten Karten besitzen eine ganze Reihe von Quellen, so ist z. B. bei einer WinTV\-Karte .I Quelle 0 der TV\-Empfänger und .I Quelle 1 der Composite Video\-Eingang. .TP .B \-c, \-\-channel=CHANNEL Startet .B tvtime auf dem angegebenen Sender. Andernfalls wird die Einstellung aus der Konfigurationsdatei verwendet. .TP .B \-n, \-\-norm=NORM Stellt den TV\-Empfänger auf die angegebene Fernsehnorm ein (Standardwert ist .IR NTSC ). Gültige Werte sind: .TS nokeep tab (@); l l. \(bu@NTSC \(bu@PAL \(bu@SECAM \(bu@PAL\-NC \(bu@PAL\-M \(bu@PAL\-N \(bu@NTSC\-JP .TE .TP .B \-f, \-\-frequencies=NAME Wählt die zu verwendende Frequenztabelle (Standardwert ist .IR us\-cable ). Gültige Werte sind: .TS nokeep tab (@); l l. \(bu@us\-cable \(bu@us\-broadcast \(bu@japan\-cable \(bu@japan\-broadcast \(bu@europe \(bu@australia \(bu@australia\-optus \(bu@newzealand \(bu@france \(bu@russia \(bu@custom (erst tvtime\-scanner starten) .TE .TP .B \-R, \-\-priority=PRI Legt die Prozeßpriorität (siehe .BR nice (1)) fest, mit der .B tvtime gestartet werden soll. .TP .B \-t, \-\-xmltv=FILE Liest die XMLTV\-Daten zur Anzeige im OSD aus der angegebenen Datei. Die Zuordnung der Sender erfolgt aufgrund ihrer Namen. .B tvtime zeigt dann Titel, Untertitel und Beschreibung zur aktuellen Sendung im OSD an. .TP .B \-l, \-\-xmltvlanguage=LANG XMLTV\-Daten in der angegebenen Sprache anzeigen, wenn vorhanden. Sprachen werden durch ihren zweibuchstabigen Code (z.B. "de" für Deutsch) angegeben. Fehlt diese Angabe oder ist sie auf "none" gesetzt, wird die Standardsprache verwendet. .TP .B \-x, \-\-mixer=DEVICE[:CH] Legt Mixergerät und \-kanal fest. Der Standardwert ist .IR /dev/mixer:line ). Gültige Kanäle sind: .TS nokeep tab (@); l l. \(bu@vol \(bu@bass \(bu@treble \(bu@synth \(bu@pcm \(bu@speaker \(bu@line \(bu@mic \(bu@cd \(bu@mix \(bu@pcm2 \(bu@rec \(bu@igain \(bu@ogain \(bu@line1 \(bu@line2 \(bu@line3 \(bu@dig1 \(bu@dig2 \(bu@dig3 \(bu@phin \(bu@phout \(bu@video \(bu@radio \(bu@monitor .TE .SH AUTOR Billy Biggs. .SH "SIEHE AUCH" .BR tvtime (1), .IR tvtime.xml (5), tvtime-1.0.11/docs/man/de/stationlist.xml.50000664000175000017500000001255412354244126015374 00000000000000.\" Man page for stationlist.xml .\" Copyright (c) 2003, 2004 Billy Biggs .\" German translation (c) 2004 Ingo van Lil .\" .\" This program is free software; you can redistribute it and/or modify .\" it under the terms of the GNU General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or (at .\" your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU General Public License .\" along with this program; if not, write to the Free Software .\" Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. .\" .TH stationlist.xml 5 "Oktober 2004" "tvtime 1.0RC1" .SH NAME stationlist.xml \- Senderkonfigurationsdatei für tvtime .SH ÜBERSICHT .I ~/.tvtime/stationlist.xml .SH BESCHREIBUNG Die Datei .I stationlist.xml enthält die Senderkonfiguration für TV-Karten mit Empfangsteil. Sie enthält eine Liste aller aktiven Sender, deren Frequenzen, Speicherplätze und Namen. Die Datei wird zur Laufzeit durch .B tvtime gespeichert und sollte daher nicht bearbeitet werden, während .B tvtime läuft, da die Änderungen sonst überschrieben werden könnten. Die Datei .I stationlist.xml wird immer dann erzeugt oder geändert, wenn Senderinformationen in .B tvtime geändert werden, also wenn ein Sender auf einen neuen Speicherplatz verschoben wird, wenn der Kanalscanner benutzt wird oder wenn ein Sender manuell aktiviert oder deaktviert wird. Sendereinstellungen werden nach Norm und Frequenztabelle getrennt gespeichert: ... station list Das heißt, jede Kombination aus Fernsehnorm und Frequenztabelle erhält ihren eigenen Abschnitt in der Konfigurationsdatei. Der Name der Frequenztabelle ist nicht vordefiniert, Sie können also einen Abschnitt mit frequencies="foobar" einleiten und durch .br \h'4n'tvtime -f foobar .br aufrufen. Die Fernsehnorm muß jedoch mit der verwendeten Norm übereinstimmen. Einträge in der Liste haben folgende Form: .SH STATIONEN Jede Station hat ihre eigenen Eigenschaften, die gesetzt werden sollten: .TP .B name Der menschenlesbare Name des jeweiligen Senders. .TP .B active Wenn der Wert dieser Einstellung .IR 1 ist, ist der Sender aktviert. Setzen sie den Wert auf .IR 0 , um den Sender zu deaktivieren. .TP .B position Gibt die Senderspeicherplatz der jeweiligen Station an. .TP .PD 0 .B band .TP .B channel Legt das Frequenzband und den Kanal fest. .B tvtime bietet die folgenden Bänder/Kanäle: .PD .TS nokeep tab (@); lb lb l l. Frequenzband@Mögliche Kanäle US Cable@1\[en]99 US Cable 100@100\[en]125 US Two-Way@T7, T8, T9, T10, T11, T12 T13, T14 US Broadcast@2\[en]83 China Broadcast@1\[en]68, A1\[en]A7, B1\[en]B31, C1\[en]C5 Japan Broadcast@1\[en]62 Japan Cable@13\[en]63 VHF E2-E12@E1\[en]E12 VHF S1-S41@S1\[en]S41 VHF Misc@X, Y, Z, Z+1, Z+2 VHF France@K01\[en]K10, KB\[en]KQ, H01\[en]H19 VHF Russia@R1\[en]R12, SR1\[en]SR19 VHF Australia@AS1\[en]AS12, AS5A, AS9A VHF Italy@A\[en]H, H1, H2 VHF Ireland@I1\[en]I9 VHF South Africa@1\[en]13 UHF@U21\[en]U69 UHF Australia@AU28\[en]AU69 Australia Optus@01\[en]058 .TE Benutzerdefinierte Kanäle können durch manuelle Angabe der Frequenz in MHz angegeben werden: .TP .B norm Die Fernsehnorm kann für jeden Sender einzeln definiert werden. Auf diese Weise kann in Gebieten, in denen sowohl PAL\- als auch SECAM\-Sender empfangen werden, das Format der Farbkodierung kanalspezifisch festgelegt werden. Gültige Werte sind ausschließlich PAL oder SECAM. .TP .B network Gibt den Namen des Sendernetzes an, dem der jeweilige Kanal angehört. Dieser wird im OSD angezeigt. In NTSC\-Gebieten wird dieser aus den XDS\-Informationen ausgelesen, sofern die VBI\-Dekodierung aktiviert ist. .TP .B call Gibt das Senderkürzel zur Anzeige im OSD an. In NTSC\-Gebieten wird es aus den XDS\-Informationen ausgelesen, sofern die VBI\-Dekodierung aktiviert ist. .TP .B xmltvid Gibt die XMLTV\-Kennung des Senders an, für den Fall, daß die automatische Auswahl anhand des Sendernamens fehlschlägt. Angenommen, in Ihrer XMLTV\-Datei ist ein Sender folgendermaßen definiert: ZDF Ein passender Eintrag in der Senderliste sähe dann so aus: Den Sendernamen können Sie in nach Belieben festlegen, solange die xmltvid in der Senderliste mit der Kennung in der XMLTV\-Datei übereinstimmt. .SH AUTOREN Achim Schneider, Billy Biggs. .SH "SIEHE AUCH" .BR tvtime (1), .BR tvtime-command (1), .BR tvtime-scanner (1), .IR tvtime.xml (5). tvtime-1.0.11/docs/man/de/Makefile.in0000664000175000017500000004617713026503062014201 00000000000000# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # docs/man/de/Makefile.am distributes german tvtime manuals # Copyright (C) 2004 Ingo van Lil # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = docs/man/de ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc21.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intdiv0.m4 \ $(top_srcdir)/m4/inttypes-pri.m4 $(top_srcdir)/m4/inttypes.m4 \ $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/isc-posix.m4 \ $(top_srcdir)/m4/lcmessage.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \ $(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)" NROFF = nroff MANS = $(man_MANS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/mkinstalldirs DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ ALSA_CFLAGS = @ALSA_CFLAGS@ ALSA_LIBS = @ALSA_LIBS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ ASOUND_LIBS = @ASOUND_LIBS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FREETYPE_CONFIG = @FREETYPE_CONFIG@ GENCAT = @GENCAT@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML2_CONFIG = @LIBXML2_CONFIG@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PNG_LIBS = @PNG_LIBS@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ X11_CFLAGS = @X11_CFLAGS@ X11_LIBS = @X11_LIBS@ XGETTEXT = @XGETTEXT@ XMKMF = @XMKMF@ XML2_FLAG = @XML2_FLAG@ XML2_LIBS = @XML2_LIBS@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ ZLIB_LIBS = @ZLIB_LIBS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ found_cc = @found_cc@ found_cxx = @found_cxx@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ LANGUAGE = de man_MANS = tvtime.1 tvtime-command.1 tvtime.xml.5 stationlist.xml.5 \ tvtime-configure.1 tvtime-scanner.1 EXTRA_DIST = $(man_MANS) man1dir = $(mandir)/$(LANGUAGE)/man1 man5dir = $(mandir)/$(LANGUAGE)/man5 all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign docs/man/de/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign docs/man/de/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-man1: $(man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(man_MANS)'; \ test -n "$(man1dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.1[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ done; } uninstall-man1: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man1dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.1[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) install-man5: $(man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(man_MANS)'; \ test -n "$(man5dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man5dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man5dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.5[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man5dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man5dir)" || exit $$?; }; \ done; } uninstall-man5: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man5dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.5[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man5dir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(MANS) installdirs: for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-man install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-man1 install-man5 install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-man uninstall-man: uninstall-man1 uninstall-man5 .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-man1 install-man5 install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-man uninstall-man1 uninstall-man5 .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: tvtime-1.0.11/docs/man/de/Makefile.am0000664000175000017500000000175612354244126014170 00000000000000# docs/man/de/Makefile.am distributes german tvtime manuals # Copyright (C) 2004 Ingo van Lil # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. LANGUAGE = de man_MANS = tvtime.1 tvtime-command.1 tvtime.xml.5 stationlist.xml.5 \ tvtime-configure.1 tvtime-scanner.1 EXTRA_DIST = $(man_MANS) man1dir = $(mandir)/$(LANGUAGE)/man1 man5dir = $(mandir)/$(LANGUAGE)/man5 tvtime-1.0.11/docs/man/de/tvtime.xml.50000664000175000017500000003551612354244126014332 00000000000000.\" Man page for tvtime.xml .\" Copyright (c) 2003, 2004 Billy Biggs .\" German translation (c) 2004 Ingo van Lil .\" .\" This program is free software; you can redistribute it and/or modify .\" it under the terms of the GNU General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or (at .\" your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU General Public License .\" along with this program; if not, write to the Free Software .\" Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. .\" .TH tvtime.xml 5 "Oktober 2004" "tvtime 1.0RC1" .SH NAME tvtime.xml \- tvtime\-Konfigurationsdatei .SH ÜBERSICHT .I ~/.tvtime/tvtime.xml .br .I /etc/tvtime/tvtime.xml .br .SH BESCHREIBUNG Die Datei .I tvtime.xml ist die zentrale Konfigurationsdatei für .BR tvtime . Sie enthält alle Standardeinstellungen und Tastenbindungen. Die Datei wird zur Laufzeit durch .B tvtime aktualisiert, um Einstellungen für den nächsten Programmstart zu erhalten. Daher sollten Sie die Datei nicht bearbeiten, während .B tvtime läuft, da Ihre Änderungen sonst überschrieben werden könnten. Die globale Syntax sieht folgendermaßen aus: Den DTD und weitere Informationen über die XML\-Konfigurationsdateien finden Sie unter .nh .UR http://tvtime.sourceforge.net/DTD/ http://tvtime.sourceforge.net/DTD/ .UE .hy .SH OPTIONEN .B tvtime bietet eine große Menge an Optionen. Die