#!/usr/bin/perl

package Debian::DictionariesCommon;

use strict;
use base qw(Exporter);
use Text::Iconv;

# List all exported symbols here.
our @EXPORT_OK = qw(parseinfo updatedb loaddb
		    dico_checkroot
		    dico_debug
		    dico_debugprint
		    dico_get_spellchecker_params
		    getlibdir
                    dico_getsysdefault dico_setsysdefault
		    getuserdefault setuserdefault
		    dico_find_matching_choice
		    build_emacsen_support
		    build_jed_support
		    build_squirrelmail_support
		    dico_activate_trigger
		    dico_clean_orphaned_removefiles
		    dico_preprocess_default_symlinks
                    dico_set_default_symlink
		    );
# Import :all to get everything.
our %EXPORT_TAGS = (all => [@EXPORT_OK]);

my $infodir             = "/var/lib/dictionaries-common";
my $cachedir            = "/var/cache/dictionaries-common";
my $emacsensupport      = "emacsen-ispell-dicts.el";
my $jedsupport          = "jed-ispell-dicts.sl";
my $squirrelmailsupport = "sqspell.php";
my $debug               = 1 if ( defined $ENV{'DICT_COMMON_DEBUG'} );

# Directories and files to store default values
my $sys_etc_dir         = "/etc/dictionaries-common";
my $sys_default_dir     = "$cachedir";
my $hunspelldir         = "/usr/share/hunspell";
my $ispelldefault       = "ispell-default";
my $userdefault         = ( defined $ENV{HOME} ) ? "$ENV{HOME}/.$ispelldefault" : undef;
my %sys_default_file    = ("ispell"   => "$sys_default_dir/ispell-default",
			   "wordlist" => "$sys_default_dir/wordlist-default");

# ------------------------------------------------------------------
sub dico_checkroot {
# ------------------------------------------------------------------
# Check if we are root
# ------------------------------------------------------------------
  return if ($> == 0 or ($^O eq 'interix' and $> == 197108));
  die "$0: You must run this as root.\n";
}

# -------------------------------------------------------------
sub dico_debug {
# -------------------------------------------------------------
# Enable debug mode
# -------------------------------------------------------------
  $debug++;
  $ENV{'DICT_COMMON_DEBUG'}++;
}

# -------------------------------------------------------------
sub dico_debugprint {
# -------------------------------------------------------------
# Show info if in debug mode
# -------------------------------------------------------------
  print STDERR "@_\n" if $debug;
}

# ------------------------------------------------------------------
sub getlibdir {
# ------------------------------------------------------------------
# Get location for dict-common info snippets
# ------------------------------------------------------------------
  my $class = shift;
  return "$infodir/$class";
}

# ------------------------------------------------------------------
sub mydie {
# ------------------------------------------------------------------
# A wrapper to die with some local flavor.
# ------------------------------------------------------------------
  my $routine = shift;
  my $errmsg = shift;
  die __PACKAGE__, "($routine):E: $errmsg";
}

# ------------------------------------------------------------------
sub parseinfo {
# ------------------------------------------------------------------
# Parse given dict-common info file
# ------------------------------------------------------------------
  my $file = shift;
  local $/ = "";    # IRS is global, we need 'local' here, not 'my'
  open (DICT, "< $file");
  my %dictionaries =
    map {
      s/^([^:]+):/lc ($1) . ":"/meg;  # Lower case field names
      my %hash = /^([^:]+):\s*((?<!\n)[^\n]+)\s*$/mg;
      map { delete $hash{$_} if ($hash{$_} =~ /^\s+$/) } keys %hash;
      mydie ('parseinfo',
	     qq{Record in file $file does not have a "Language" entry})
	if not exists $hash{language};
      mydie ('parseinfo',
	     qq{Record in file $file does not have a "Hash-Name" entry})
	if not exists $hash{"hash-name"};
      my $lang = delete $hash{language};
      ($lang, \%hash);
    } <DICT>;
  return \%dictionaries;
}

# ------------------------------------------------------------------
sub dico_dumpdb {
# ------------------------------------------------------------------
# Save %dictionaries in Data::Dumper like format. This function
# should be enough for the limited needs of dictionaries-common
# ------------------------------------------------------------------
  my $class        = shift;
  my $dictionaries = shift;
  my @fullarray    = ();
  my @dictarray    = ();
  my $output       = "$cachedir/$class.db";
  my $dictentries  = '';
  my $thevalue     = '';

  foreach my $thedict ( sort keys %{$dictionaries}){
    $dictentries = $dictionaries->{$thedict};
    @dictarray   = ();
    foreach my $thekey ( sort keys %{$dictentries}){
      $thevalue = $dictentries->{$thekey};
      # Make sure \ and ' are escaped in keyvals
      $thevalue =~ s/(\\|\')/\\$1/g;
      push (@dictarray,"     \'$thekey\' => \'$thevalue\'");
    }
    # Make sure \ and ' are escaped in dict names
    $thedict =~ s/(\\|\')/\\$1/g;
    push (@fullarray,
	  "  \'$thedict\' => \{\n" . join(",\n",@dictarray) . "\n  \}");
  }

  mkdir $cachedir unless (-d $cachedir);

  open (DB,"> $output");
  print DB generate_comment("### ") . "\n";
  print DB "package Debian::DictionariesCommon::dbfile;\n\n";
  print DB "%dictionaries = (\n";
  print DB join (",\n",@fullarray);
  print DB "\n);\n\n1;\n";
  close DB;
}

# ------------------------------------------------------------------
sub dico_get_spellchecker_params {
# ------------------------------------------------------------------
# dico_get_spellchecker_params($class,\%language)
#  Get right params for $class (currently unused) and $language
# ------------------------------------------------------------------
  my $class       = shift;
  my $language    = shift;
  my $d_option    = "";
  my $w_option    = "";
  my $T_option    = "";
  my $ispell_args = "";

  $d_option = "-d $language->{'hash-name'}"
      if exists $language->{'hash-name'};
  $w_option = "-w $language->{'additionalchars'}"
      if exists $language->{'additionalchars'};

  if ( exists $language->{'extended-character-mode'} ){
    $T_option =  $language->{'extended-character-mode'};
    $T_option =~ s/^~//; # Strip leading ~ from Extended-Character-Mode.
    $T_option =  '-T ' . $T_option;
  }

  if ( exists $language->{'ispell-args'} ){
    $ispell_args = $language->{'ispell-args'};
    foreach ( split('\s+',$ispell_args) ) {
      # No d_option if already in $ispell_args
      $d_option = "" if /^\-d/;
    }
  }
  return "$d_option $w_option $T_option $ispell_args";
}

# ------------------------------------------------------------------
sub updatedb {
# ------------------------------------------------------------------
# Parse info files for the given class and update class database
# ------------------------------------------------------------------
  my $class        = shift;
  my %dictionaries = ();

  foreach my $file (<$infodir/$class/*>) {
    next if $file =~ m/.*~$/;                 # Ignore ~ backup files
    my %dicts = %{ parseinfo ("$file") };

    # Add package name to all entries
    my $file_basename = $file;
    $file_basename =~ s/^$infodir\/$class\///;
    $dicts{$_}{'package'} = $file_basename foreach ( keys %dicts );

    %dictionaries = (%dictionaries, %dicts);
  }

  # Merge auto-detected and declared hunspell info.
  if ( "$class" eq "hunspell" ){
    %dictionaries = %{
      dc_merge_installed_hunspell_dicts
	($hunspelldir,\%dictionaries) };
  }

  &dico_dumpdb($class,\%dictionaries);
}

# ------------------------------------------------------------------
sub loaddb {
# ------------------------------------------------------------------
# Load class database
# ------------------------------------------------------------------
  my $class  = shift;
  my $dbfile = "$cachedir/$class.db";

  if (-e $dbfile) {
    do $dbfile;
  }
  return \%Debian::DictionariesCommon::dbfile::dictionaries;
}

# ------------------------------------------------------------------
sub getdefault {
# ------------------------------------------------------------------
# Read default value from specified file. Comments and empty lines are ignored.
# ------------------------------------------------------------------
  my $file = shift;
  my $lang = "";

  if (-f $file) {
    open( my $FILE,"< $file")
      or die "Dictionaries-common::getdefault: Could not open $file for read. Aborting ...\n";
    while (<$FILE>){
      next if m/^\s*\#/;
      next if m/^\s*$/;
      $lang = $_;
      last;
    }
    close $FILE;
    return $lang;
  }
  return;
}

# ------------------------------------------------------------------
sub getuserdefault {
# ------------------------------------------------------------------
# Get user default from user's default file
# ------------------------------------------------------------------
  die "Dictionaries-common::getuserdefault: Could not set \$userdefault. Aborting ...\n"
    unless $userdefault;
  getdefault ($userdefault);
}

# ------------------------------------------------------------------
sub dico_getsysdefault {
# ------------------------------------------------------------------
# Get system default value for given class
# ------------------------------------------------------------------
  my $class = shift;
  getdefault ($sys_default_file{$class});
}

# ------------------------------------------------------------------
sub dico_setsysdefault {
# ------------------------------------------------------------------
# Set system default value for given class
# ------------------------------------------------------------------
  my $class = shift;
  my $value = shift;

  my $default_file       = "$sys_default_file{$class}";
  my $old_ispell_default = "$sys_etc_dir/$ispelldefault";

  if ( "$value" ){
    open (DEFAULT, "> $default_file");
    print DEFAULT $value;
    close DEFAULT;

    # Set symlink from old to new location for squirrelmail benefit.
    if ( $class eq "ispell" ){
      unlink "$old_ispell_default";
      symlink "$default_file", "$old_ispell_default";
    }
  } else {
    unlink "$default_file" if ( -e "$default_file" );

    # squirrelmail expects an empty file if no ispell dicts are installed.
    if ( $class eq "ispell" ){
      # Remove $old_ispell_default. Could be a symlink and target be written.
      unlink "$old_ispell_default"; #
      open (DEFAULT, "> $old_ispell_default");
      print DEFAULT "";
      close DEFAULT;
    }
  }
}

# ------------------------------------------------------------------
sub setuserdefault {
# ------------------------------------------------------------------
# Write user's default value to user's default file
# ------------------------------------------------------------------
  my $default      = getuserdefault ();
  my $dictionaries = loaddb ("ispell");
  my %languages    = ();
  my %elanguages   = ();

  foreach my $language ( sort keys %$dictionaries ){
    my $entry     = $dictionaries->{$language};
    my $elanguage = $language;
    if ( defined $entry->{'elanguage'} ){
      $elanguage = $entry->{'elanguage'};
    }
    $languages{$elanguage} = $language;
    $elanguages{$language} = $elanguage;
  }

  unless  ( %languages ) {
    warn "Sorry, no ispell dictionary is installed in your system.\n";
    return;
  }

  my @choices = sort keys %languages;

  my $initial = -1;
  if ( defined $default ) {
    my $default = $elanguages{$default};
    for ( my $i = 0; $i < scalar @choices; $i++ ) {
      if ( $default eq $choices[$i] ) {
	$initial = $i;
	last;
      }
    }
  }

  open (TTY, "/dev/tty");
  while (1) {
    $| = 1;
    print
      "\nSelect your personal ispell dictionary for use with ispell-wrapper\n\n";
    for ( my $i = 0; $i < scalar @choices; $i++ ) {
      print "  " . ($i == $initial ? "*" : " ")
	     . " [" . ($i+1) . "] $choices[$i]\n";
    }
    print qq(\nSelect number or "q" for quit)
      . ($initial != -1 ? " (* is the current default): " : ": ");
    my $sel = <TTY>;
    chomp $sel;
    last if $sel eq "q";
    if ($sel < 1 or $sel > scalar @choices) {
      print qq{\nInvalid choice "$sel".\n\n};
      next;
    }
    else {
      $sel--;
      open (DEFAULT, "> $userdefault");
      print DEFAULT $languages{$choices[$sel]};
      close DEFAULT;
      last;
    }
  }
  close TTY;
}

# ------------------------------------------------------------------
sub generate_comment {
# ------------------------------------------------------------------
# Generate a standard comment string with given prefix
# ------------------------------------------------------------------
  my $commstr = shift;
  my $comment = "This file is part of the dictionaries-common package.
It has been automatically generated.
DO NOT EDIT!";
  $comment =~ s{^}{$commstr}mg;
  return "$comment\n";
}

# ------------------------------------------------------------------
sub dico_find_matching_choice {
# ------------------------------------------------------------------
# Try a single regexp match from given class choices
# ------------------------------------------------------------------
  my $dictionaries = shift;
  my $regexp       = shift;

  my @found_matches = grep {/$regexp/} keys %$dictionaries;
  unless (@found_matches ) {
    dico_debugprint "Try harder with case-independent match";
    @found_matches = grep {/$regexp/i} keys %$dictionaries;
  }

  if ( scalar @found_matches eq 1 ){
    return $found_matches[0];
  } else {
    my $dict_list = join("\n",sort keys %$dictionaries);
    if ( @found_matches ){
      dico_debugprint "Multiple matches for \"$regexp\":\n"
        . join("\n",sort  @found_matches);
    } else {
      dico_debugprint "No matches found for \"$regexp\". Available dicts:\n$dict_list";
    }
    return;
  }
}

# ------------------------------------------------------------------
sub dc_merge_installed_hunspell_dicts {
# ------------------------------------------------------------------
# Parse installed hunspell dicts for hunspell-info like stuff and
# merge it with declared list.
# ------------------------------------------------------------------
  my $hunspelldir = shift;
  my $main_dicts  = shift;

  # Do nothing if no hunspell dicts are installed
  return {} unless ( -d $hunspelldir);

  $main_dicts = {} unless $main_dicts;

  my @hunspell_aff = <$hunspelldir/*.aff>;
  my $parsed_dicts = {};
  my $locales_info = {};
  my $emacs_equivs = {
    "cs_CZ" => "czech",
    "da_DK" => "dansk",
    "de_DE" => "german8",
    "en_GB" => "british",
    "en_US" => "american",
    "eo"    => "esperanto",
    "es"    => "castellano8",
    "es_ES" => "castellano8",
    "fi_FI" => "finnish",
    "fr_FR" => "francais",
    "he_IL" => "hebrew",
    "it_IT" => "italiano",
    "nl_NL" => "nederlands",
    "nn_NO" => "norsk",
    "pl_PL" => "polish",
    "pt_BR" => "brasileiro",
    "pt_PT" => "portugues",
    "ru_RU" => "russian",
    "sk_SK" => "slovak",
    "sl_SI" => "slovenian",
    "sv_SE" => "svenska"
  };
  # Function to get value for key in hunspell aff file
  my $parse_value = sub {
    my $string = shift;
    my $file   = shift;

    my $value = ( grep(/^\s*$string/,@{$file}) )[0];
    if ( defined $value ){
      chomp $value;
      $value =~ s/\s+$//;
      $value =~ s/^\s*$string\s*//;
    }
    return $value;
  };
  # Extract aff basename in a way that does not need anything
  # outside perl-base (File::Basename is in perl-modules).
  my $aff_basename = sub {
    my $path = shift;
    my $base =  (split( /\/|\\/, $path))[-1];
    $base =~ s/.aff$//;
    return $base;
  };

  dico_debugprint "--< Debian/DictionariesCommon.pm: Start dc_merge_installed_hunspell_dicts function";

  foreach my $aff ( @hunspell_aff ){
    my $info = {};

    chomp $aff;

    if ( -l "$aff" && ! -e "$aff" ){
      print STDERR "dmihd: Skipping broken symlink \"$aff\"\n";
      next;
    }

    my $lang = &$aff_basename($aff);
    $info->{'hash-name'}    = $lang;
    $info->{'emacsen-name'} = $lang;

    open my $fh, '<:raw', $aff
	or die "dmihd: Could not open \"$aff\" for read. Aborting.\n";
    my @aff_contents = <$fh>;
    close $fh;

    my $coding = &$parse_value("SET",\@aff_contents);
    if ( defined $coding ){
      if ( $coding =~ m/^iso\d.*/i ){
	# Emacs uses iso- for iso coding systems.
	$coding =~ s/^iso/iso-/i;
      }
      $info->{'coding-system'} = lc($coding);
    }

    my $wordchars = &$parse_value("WORDCHARS",\@aff_contents);
    if ( defined $wordchars ){
      $info->{'otherchars'} = "[$wordchars]";
    }

    my $allchars = &$parse_value("TRY",\@aff_contents);
    if ( defined $allchars ){
      my $nonasciichars   =  $allchars;
      $nonasciichars      =~ s/[[:ascii:]]//g;
      $info->{'additionalchars'} = $nonasciichars;
      my @tmp2 = map { "\\" . sprintf("%o", ord($_)) } split('',$nonasciichars);
      my $octal_nonascii =
	  join('',
	       map { "\\" . sprintf("%o", ord($_)) } split('',$nonasciichars)
	  );
      $info->{'casechars'}     = "[a-zA-Z$octal_nonascii]";
      $info->{'not-casechars'} = "[^a-zA-Z$octal_nonascii]";
      # $info->{'allchars'} =  $allchars;
    }
    $info->{'package'} = "auto-detect";

    if ( -l $aff ){
      if ( my $target = readlink ($aff) ) {
	chomp $target;
	$target = &$aff_basename($target);
	$locales_info->{$target}->{$lang}++;
      };
    } else {
      $parsed_dicts->{$lang} = $info;
      $locales_info->{$lang}->{$lang}++;
    }
  }

  foreach my $lang ( keys %$parsed_dicts ){
    if ( defined $locales_info->{$lang} ){
      $parsed_dicts->{$lang}->{'hunspell-locales'} =
	  join(', ', sort keys %{$locales_info->{$lang}});
    }
  }

  # Add aliases for classical emacsen dict names
  foreach my $lang ( keys %$parsed_dicts ){
    if ( defined $emacs_equivs->{$lang} ){
      $parsed_dicts->{$lang}->{'emacsen-name'} = $emacs_equivs->{$lang};
    }
  }

  my %main_dicts_emacsen;
  my %main_dicts_hashes;
  # Get a list of emacsen and hash names declared in hunspell-info files.
  foreach my $lang ( keys %$main_dicts ){
    my $lang_entries = $main_dicts->{$lang};
    $main_dicts_emacsen{$lang_entries->{'emacsen-name'}}++
	if ( defined $lang_entries->{'emacsen-name'} );
    $main_dicts_hashes{$lang_entries->{'hash-name'}}++
	unless ( $lang_entries->{'emacsen-name'} eq "english_american" );
  }
  # Show some debugging code
  dico_debugprint "main-dicts: ". join(', ',sort keys %$main_dicts);
  dico_debugprint "emacsen-names:" . join(', ',sort keys %main_dicts_emacsen);
  dico_debugprint "hash-names:" . join(', ',sort keys %main_dicts_hashes);
  dico_debugprint "parsed-dicts-before: " .  join(', ',sort keys %$parsed_dicts);

  # Remove parsed entries redundant with a declared dict.
  foreach my $lang ( keys %$parsed_dicts ){
    if ( defined $main_dicts_emacsen{$parsed_dicts->{$lang}->{'emacsen-name'}}
	 ||
	 defined $main_dicts_hashes{$parsed_dicts->{$lang}->{'hash-name'}}
      ){
      # Parsed dict matches emacsen or hash name of a declared dict.
      delete $parsed_dicts->{$lang};
    } else {
      my %lang_locales = ();
      if ( defined $parsed_dicts->{$lang}->{'hunspell-locales'} ){
	map { $lang_locales{$_}++ }
	split ('\s*,\s*',$parsed_dicts->{$lang}->{'hunspell-locales'});
      }
      # A parsed dict locale matches hash name of a declared dict.
      foreach my $locale ( keys %lang_locales ){
	if ( defined $main_dicts_hashes{$locale} ){
	  delete $parsed_dicts->{$lang};
	  last;
	}
      }
    }
  }
  dico_debugprint "parsed-dicts-cleaned: ", join(', ',sort keys %$parsed_dicts);

  # Merge parsed dicts with declared main dicts (preferred)
  foreach my $lang ( keys %$main_dicts ){
    $parsed_dicts->{$lang} = $main_dicts->{$lang};
  }
  dico_debugprint "output-hunspell-dicts: ", join(', ',sort keys %$parsed_dicts), "\n>--";

  return $parsed_dicts;
}

# ------------------------------------------------------------------
sub build_emacsen_support {
# ------------------------------------------------------------------
# Put info from dicts info files into emacsen-ispell-dicts.el
# ------------------------------------------------------------------
  my $elisp          = '';
  my @classes        = ("aspell","hunspell","ispell");
  my %entries        = ();
  my %class_locales  = ();

  foreach my $class ( @classes ){
    my $dictionaries = loaddb ($class);

    foreach my $k (keys %$dictionaries) {
      my $lang = $dictionaries->{$k};

      next if (exists $lang->{'emacs-display'}
	       && $lang->{'emacs-display'} eq "no");

      my $hashname = $lang->{"hash-name"};
      my $casechars = exists $lang->{casechars} ?
	  $lang->{casechars} : "[a-zA-Z]";
      my $notcasechars = exists $lang->{"not-casechars"} ?
	  $lang->{"not-casechars"} : "[^a-zA-Z]";
      my $otherchars = exists $lang->{otherchars} ?
	  $lang->{otherchars} : "[']";
      my $manyothercharsp = exists $lang->{"many-otherchars"} ?
	  ($lang->{"many-otherchars"} eq "yes" ? "t" : "nil") : "nil";
      my $ispellargs = exists $lang->{"ispell-args"} ?
	  $lang->{"ispell-args"} : "-d $hashname";
      my $extendedcharactermode = exists $lang->{"extended-character-mode"} ?
	  ('"' . $lang->{"extended-character-mode"} . '"') : "nil";
      my $codingsystem  = exists $lang->{"coding-system"} ?
	  lc($lang->{"coding-system"}) : "nil";
      my $emacsen_name  = defined $lang->{"emacsen-name"} ?
	  $lang->{"emacsen-name"} : $hashname;
      my $emacsen_names = defined $lang->{"emacsen-names"} ?
	  $lang->{"emacsen-names"} : $emacsen_name;

      # Explicitly add " -d $hashname" to $ispellargs if not already there.
      # Note that this must check for "-dxx", "-d xx", "-C -d xx", "-C -dxx" like matches
      if ( $ispellargs !~ m/( |^)-d/ ){
	dico_debugprint(" - $class-emacsen: Adding \" -d $hashname\" to \"$ispellargs\"");
	$ispellargs .= " -d $hashname";
      }

      # Escape double quotes in otherchars unless already escaped
      $otherchars =~ s/\"/\\"/ unless $otherchars =~ /\\"/;

      foreach my $emacsenname ( split(',\s*',$emacsen_names) ){
	$entries{$class}{$emacsenname} = $entries{'all'}{$emacsenname} =
	  ['"' . $emacsenname  . '"',
	   '"' . $casechars    . '"',
	   '"' . $notcasechars . '"',
	   '"' . $otherchars   . '"',
	   $manyothercharsp,
	   '("' . join ('" "', split (/\s+/,$ispellargs)) . '")',
	   $extendedcharactermode,
	   $codingsystem];

	if ( $class eq "aspell" && exists $lang->{"aspell-locales"} ){
	  foreach ( split(/\s*,\s*/,$lang->{"aspell-locales"}) ){
	    $class_locales{"aspell"}{$_} = $emacsenname;
	  }
	} elsif ( $class eq "hunspell" && exists $lang->{"hunspell-locales"} ){
	  foreach ( split(/\s*,\s*/,$lang->{"hunspell-locales"}) ){
	    $class_locales{"hunspell"}{$_} = $emacsenname;
	  }
	}
      }
    }
  }

  # Write alists of ispell, hunspell and aspell only installed dicts and their properties

  foreach my $class ( @classes ) {
    my @class_dicts = reverse sort keys %{ $entries{$class} };
    if ( scalar @class_dicts ){
      $elisp .= "\n;; Adding $class dicts\n\n";
      foreach ( @class_dicts ){
	my $mystring = join ("\n     ",@{ $entries{$class}{$_} });
	$elisp .= "(add-to-list \'debian-$class-only-dictionary-alist\n  \'($mystring))\n";
      }
      $elisp .= "\n";
    }
  }

  # Write a list of locales associated to each emacsen name

  foreach my $class ("aspell", "hunspell"){
    my $tmp_locales = $class_locales{$class};
    if ( defined $tmp_locales && scalar %$tmp_locales ){
      $elisp .= "\n\n;; An alist that will try to map $class locales to emacsen names";
      $elisp .= "\n\n(setq debian-$class-equivs-alist \'(\n";
      foreach ( sort keys %$tmp_locales ){
	$elisp .= "     (\"$_\" \"$tmp_locales->{$_}\")\n";
      }
      $elisp .= "))\n";

      # Obtain here debian-aspell-dictionary, after debian-aspell-equivs-alist
      # is loaded

      $elisp .="
;; Get default value for debian-$class-dictionary. Will be used if
;; spellchecker is $class and ispell-local-dictionary is not set.
;; We need to get it here, after debian-$class-equivs-alist is loaded

(setq debian-$class-dictionary (debian-ispell-get-$class-default))\n\n";
   } else {
      $elisp .= "\n\n;; No emacsen-$class-equivs entries were found\n";
   }}

  open (ELISP, "> $cachedir/$emacsensupport")
      or die "Cannot open emacsen cache file";
  print ELISP generate_comment (";;; ");
  print ELISP $elisp;
  close ELISP;
}

# ------------------------------------------------------------------
sub build_jed_support {
# ------------------------------------------------------------------
# Put info from dicts info files into jed-ispell-dicts.sl
# ------------------------------------------------------------------

  my @classes = ("aspell","ispell");
  my $slang   = generate_comment ("%%% ");

  ## The S-Lang code generated below will be wrapped in preprocessor
  ## ifexists constructs, insuring that the $jedsupport file will
  ## always evaluate correctly.

  foreach my $class ( @classes ){
    my %class_slang    = ();
    my %class_slang_u8 = ();
    if ( my $dictionaries = loaddb ($class) ){
      foreach my $k (sort keys %$dictionaries) {
	my $lang = $dictionaries->{$k};
	next if (exists $lang->{'jed-display'}
		 && $lang->{'jed-display'} eq "no");

	my $hashname = $lang->{"hash-name"};
	my $additionalchars = exists $lang->{additionalchars} ?
	    $lang->{additionalchars} : "";
	my $otherchars = exists $lang->{otherchars} ?
	    $lang->{otherchars} : "'";
	my $emacsenname = exists $lang->{"emacsen-name"} ?
	    $lang->{"emacsen-name"} : $hashname;
	my $extendedcharmode = exists $lang->{"extended-character-mode"} ?
	    $lang->{"extended-character-mode"} : "";
	my $ispellargs = exists $lang->{"ispell-args"} ?
	    $lang->{"ispell-args"} : "";
	my $codingsystem = exists $lang->{"coding-system"} ?
	    $lang->{"coding-system"} : "l1";

	# Strip enclosing [] from $otherchars
	$otherchars =~ s/^\[//;
	$otherchars =~ s/\]$//;
	# Convert chars in octal \xxx representation to the character
	$otherchars =~ s/\\([0-3][0-7][0-7])/chr(oct($1))/ge;
	$additionalchars =~ s/\\([0-3][0-7][0-7])/chr(oct($1))/ge;

	$class_slang{$emacsenname} =
	    "  $class" . "_add_dictionary (\n"
	    . "    \"$emacsenname\",\n"
	    . "    \"$hashname\",\n"
	    . "    \"$additionalchars\",\n"
	    . "    \"$otherchars\",\n"
	    . ($class eq "ispell" ? "    \"$extendedcharmode\",\n" : "")
	    . "    \"$ispellargs\");";
	if ( $class eq "aspell" ){
	  my $converter = Text::Iconv->new ($codingsystem, "utf8");
	  my $additionalchars_utf = $converter->convert ($additionalchars);
	  my $otherchars_utf = $converter->convert ($otherchars);
	  $class_slang_u8{$emacsenname} =
	      qq{    aspell_add_dictionary (
      "$emacsenname",
      "$hashname",
      "$additionalchars_utf",
      "$otherchars_utf",
      "$ispellargs");};
	} # if $class ..
      } # foreach $k ..
    } # if loaddb ..
    if ( scalar keys %class_slang ){
      $slang .= "\n\#ifexists $class" . "_add_dictionary\n";
      if ( $class eq "aspell" ){
	$slang .= "  if (_slang_utf8_ok) {\n"
	    . join("\n",sort values %class_slang_u8)
	    . "\n  } else {\n"
	    . join("\n",sort values %class_slang)
	    . "\n  }";
      } else {
	$slang .= join("\n",sort values %class_slang);
      }
      $slang .= "\n\#endif\n";
    }
  } # foreach $class
  open (SLANG, "> $cachedir/$jedsupport")
      or die "Cannot open jed cache file";
  print SLANG $slang;
  close SLANG;
}

# ------------------------------------------------------------------
sub build_squirrelmail_support {
# ------------------------------------------------------------------
# Build support file for squirrelmail with a list of available
# dictionaries and associated spellchecker calls, in php format.
# ------------------------------------------------------------------
  my @classes      = ("aspell","ispell","hunspell");
  my $php          = "<?php\n";
  my @dictlist     = ();

  $php .= generate_comment ("### ");
  $php .= "\$SQSPELL_APP = array (\n";

  foreach my $class (@classes) {
    my $dictionaries = loaddb ($class);
    foreach ( keys %$dictionaries ){
      next if m/.*[^a-z]tex[^a-z]/i;            # Discard tex variants
      my $lang = $dictionaries->{$_};
      my $squirrelname;
      if ( defined $lang->{"squirrelmail"} ){
	next if ( lc($lang->{"squirrelmail"}) eq "no" );
	$squirrelname = $lang->{"squirrelmail"};
      } else {
	next unless m/^(.*)\((.+)\)$/;
	$squirrelname = $2;
      }
      my $spellchecker_params =
	&dico_get_spellchecker_params($class,$lang);
      push @dictlist, qq {  '$squirrelname ($class)' => '$class -a $spellchecker_params'};
    }
  }

  $php .= join(",\n", sort @dictlist);
  $php .= "\n);\n";

  open (PHP, "> $cachedir/$squirrelmailsupport")
      or die "Cannot open SquirrelMail cache file";
  print PHP $php;
  close PHP;
}

# ------------------------------------------------------------------
sub dico_activate_trigger {
# ------------------------------------------------------------------
# Try activating provided trigger if run under dpkg control.
# Return true in success, nil otherwise.
# ------------------------------------------------------------------
  my $trigger       = shift;
  my $options       = shift;
  my $await_trigger = defined $options->{'trigger-await'} ? "" : " --no-await ";

  die "DictionariesCommon::dico_activate_trigger: No trigger provided. Aborting ...\n" unless $trigger;

  if ( defined $ENV{'DPKG_RUNNING_VERSION'} &&
       system("type dpkg-trigger >/dev/null 2>&1 && dpkg-trigger $await_trigger $trigger") == 0 ){
    dico_debugprint("DictionariesCommon::dico_activate_trigger: Enabled trigger \"$trigger\" [$await_trigger]");
    return 1;
  }
  return;
}

# ------------------------------------------------------------------
sub dico_clean_orphaned_removefiles {
# ------------------------------------------------------------------
# Clean orphaned remove files and their contents.
#
#  dico_clean_orphaned_removefiles($class,$dictionaries)
# ------------------------------------------------------------------
  my $class        = shift;
  die "DictionariesCommon::dico_preprocess_default_symlinks: No class passed"
    unless $class;
  my $dictionaries = shift;
  die "DictionariesCommon::dico_preprocess_default_symlinks: No dictionaries passed"
    unless $dictionaries;
  my $program      = "update-default-$class";
  my $varlibdir    = "/var/lib/$class";

  return unless ( $class eq "aspell" or $class eq "ispell" );

  foreach my $remove_file (<$varlibdir/*.remove>){
    my $dict        = $remove_file;
    $dict           =~ s/\.remove$//;
    $dict           =~ s/.*\///;
    my $compat_file = "$varlibdir/$dict.compat";

    # Remove orphaned remove files and its contents if no matching .compat file is found
    unless ( -e "$compat_file" ){
      open (my $REMOVE,"$remove_file");
      while (<$REMOVE>){
	chomp;
	next if m/^\s*$/;
	if ( -e "$_"
	     && m:^(/usr/lib|/var/lib): ){
	  unlink "$_";
	  print STDERR "$program: Removing \"$_\".\n";
	}
      }
      close $REMOVE;
      unlink "$remove_file";
      print STDERR "$program: Removing remove file \"$remove_file\".\n";
    }
  }

  # Remove $varlibdir directory if empty and not owned
  if ( -d "$varlibdir" ){
    unless ( scalar <"$varlibdir/*"> ){
      if ( system("dpkg-query -S $varlibdir  > /dev/null 2>&1") == 0 ){
	dico_debugprint("$program: Empty \"$varlibdir\" is owned by some package.");
      } elsif ( scalar %$dictionaries ){
	print STDERR "$program: Empty and unowned \"$varlibdir\", but \"$class\" elements installed.\n";
      } else {
	rmdir "$varlibdir";
	print STDERR "$program: Removing unowned and empty \"$varlibdir\" directory.\n";
      }
    }
  }
}

# ------------------------------------------------------------------
sub dico_preprocess_default_symlinks {
# ------------------------------------------------------------------
# Set default symlinks at $libdir if needed. Remove default symlinks
# at $libdir and $etcdir unless they are not dangling
#
# dico_preprocess_default_symlinks ($class,$dictionaries)
  # ------------------------------------------------------------------
  my $class        = shift;
  die "DictionariesCommon::dico_preprocess_default_symlinks: No class passed"
    unless $class;
  my $dictionaries = shift;
  die "DictionariesCommon::dico_preprocess_default_symlinks: No dictionaries passed"
    unless $dictionaries;
  my $program      = "installdeb-$class";


  my $linkdir = "/etc/dictionaries-common";
  my $libdir  = { 'ispell'   => "/usr/lib/ispell",
		  'wordlist' => "/usr/share/dict"};
  my $links   = {'ispell'    => ["default.hash", "default.aff"],
		 'wordlist'  => ["words"]};

  if ( %{$dictionaries} ){
    foreach my $link ( @{$links->{$class}} ){
      my $link_from = "$libdir->{$class}/$link";
      unless ( -e "$link_from" ){
	if ( -w "$libdir->{$class}" ){
	  print STDERR "Symlinking $link_from to $linkdir/$link\n"
	    if $debug;
	  symlink "$linkdir/$link","$link_from";
	} else {
	  print STDERR "$program:Warning: Non writable \"$libdir->{$class}\" dir. Read-only filesystem?\n";
	}
      }
    }
  } else {
    foreach my $link ( @{$links->{$class}} ){
      my $default_etc_link = "$linkdir/$link";
      my $default_usr_link = "$libdir->{$class}/$link";

      foreach my $default_link ( "$default_etc_link","$default_usr_link"){
	if ( -l "$default_link" ){
	  if ( -e readlink "$default_link" ){ # Non-dangling symlink
	    print STDERR "$program: Leaving non dangling symlink behind: \"$default_link\"\n";
	  } else {
	    if ( -w "$libdir->{$class}" ){
	      dico_debugprint("No $class elements. Remove $default_link.");
	      unlink "$default_link"
	    } else {
	      print STDERR "$program:Warning: Non writable \"$libdir->{$class}\" dir. Read-only filesystem?\n";
	    }
	  }
	} elsif ( -e "$default_link" ){
	  print STDERR "Leaving non symlink \"$default_link\" behind.\n"
	}
      }
    }
  }
}

# ------------------------------------------------------------------
sub dico_set_default_symlink {
# ------------------------------------------------------------------
# Try setting default symlinks for ispell dictionaries and wordlists.
#    dico_set_default_symlink($class,$value)
# ------------------------------------------------------------------
  my $class = shift;
  die "DictionariesCommon::dico_set_default_symlink: No class passed" unless $class;
  my $value = shift;
  die "DictionariesCommon::dico_set_default_symlink: No value passed" unless $value;

  my $dictionaries  = loaddb ($class);
  my $program       = "update-default-$class";
  my $linkdir       = "/etc/dictionaries-common";
  my $class_name    = { 'ispell'   => "ispell dictionary",
                        'wordlist' => "wordlist"};
  my $libdir        = { 'ispell'   => "/usr/lib/ispell",
                        'wordlist' => "/usr/share/dict"};
  my $link_suffixes = { 'ispell'   => [".hash", ".aff"],
                        'wordlist' => [""]};
  my $link_basename = { 'ispell'   => "default",
                        'wordlist' => "words"};

  if ( defined $dictionaries->{$value}{"hash-name"} ){
    dico_debugprint("update-default-$class: \"$value\" -> \"$dictionaries->{$value}{'hash-name'}\"");
    my $hash   = "$libdir->{$class}/" . $dictionaries->{$value}{"hash-name"};
    foreach my $i ( @{$link_suffixes->{$class}}) {
      my $link_to   = "$hash$i";
      if ( -e "$link_to" ) {
        my $link_from = "$linkdir/$link_basename->{$class}$i";
	system "ln -fs $link_to $link_from";
        dico_debugprint("$program: \"$link_from\" symlink set to \"$link_to\"");
      } else {
	die "$program:
  Could not make the default symlink to \"$link_to\".
  This may be a temporary problem due to installation ordering. If that
  file is not present after installation, please file a bugreport
  against $class_name->{$class} package owning that file.
  \n";
      }
    }
  } else {
    die "$program: Selected value \"$value\" for $class_name->{$class}\n" .
      "does not contain a hash name entry in the database.\n";
  }
}


# Ensure we evaluate to true.
1;

__END__

#Local Variables:
#perl-indent-level: 2
#End:

=head1 NAME

Debian::DictionariesCommon.pm - dictionaries-common library

=head1 SYNOPSIS

    use Debian::DictionariesCommon q(:all)
    $dictionaries = parseinfo ('/var/lib/dictionaries-common/ispell/iwolof');
    loaddb ('ispell')
    updatedb ('wordlist')

=head1 DESCRIPTION

Common functions for use from the dictionaries-common system.

=head1 CALLING FUNCTIONS

=over

=item C<dico_checkroot>

Check for rootness and fail if not.

=item C<build_emacsen_support>

Put info from dicts info files into emacsen-ispell-dicts.el

=item C<build_jed_support>

Put info from dicts info files into jed-ispell-dicts.sl

=item C<build_squirrelmail_support>

Build support file for squirrelmail with a list of available
dictionaries and associated spellchecker calls, in php format.

=item C<$libdir = getlibdir($class)>

Return info dir for given class.

=item C<$default = dico_getsysdefault($class)>

Return system default value for given class.

=item C<$libdir = getuserdefault>

Return value for user default ispell dictionary.

=item C<dico_get_spellchecker_params($class,\%language)>

Get right params for $class (currently unused) and $language

=item C<\%dictionaries = loaddb($class)>

Read class .db file and return a reference to a hash
with its contents.

=item C<\%result = parseinfo($file)>

Parse given info file and return a reference to a hash with
the relevant data.

=item C<setsysdefault($value)>

Set value for system default ispell dictionary.

=item C<setuserdefault>

Set value for user default ispell dictionary, after asking
to select it from the available values.

=item C<updatedb($class)>

Parse info files for given class and update class .db
file under dictionaries-common cache dir.

=back

=head1 SEE ALSO

Debian dictionaries-common policy.

=head1 AUTHORS

 Rafael Laboissiere
 Agustin Martin

=cut
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This directory will contain files related to aspell hash autobuild.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This directory will contain files related to ispell hash autobuild.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            /.
/etc
/etc/dictionaries-common
/etc/emacs
/etc/emacs/site-start.d
/etc/emacs/site-start.d/50dictionaries-common.el
/usr
/usr/bin
/usr/bin/ispell-wrapper
/usr/bin/select-default-iwrap
/usr/lib
/usr/lib/emacsen-common
/usr/lib/emacsen-common/packages
/usr/lib/emacsen-common/packages/compat
/usr/lib/emacsen-common/packages/compat/dictionaries-common
/usr/lib/emacsen-common/packages/install
/usr/lib/emacsen-common/packages/install/dictionaries-common
/usr/lib/emacsen-common/packages/remove
/usr/lib/emacsen-common/packages/remove/dictionaries-common
/usr/lib/ispell
/usr/lib/ispell/README.select-ispell
/usr/sbin
/usr/sbin/aspell-autobuildhash
/usr/sbin/ispell-autobuildhash
/usr/sbin/remove-default-ispell
/usr/sbin/remove-default-wordlist
/usr/sbin/select-default-ispell
/usr/sbin/select-default-wordlist
/usr/sbin/update-default-ispell
/usr/sbin/update-default-wordlist
/usr/sbin/update-dictcommon-aspell
/usr/sbin/update-dictcommon-hunspell
/usr/share
/usr/share/dict
/usr/share/dict/README.select-wordlist
/usr/share/dictionaries-common
/usr/share/dictionaries-common/dc-debconf-default-value.pl
/usr/share/dictionaries-common/dc-debconf-select.pl
/usr/share/dictionaries-common/elanguages
/usr/share/dictionaries-common/mutt-ispell-init
/usr/share/dictionaries-common/site-elisp
/usr/share/dictionaries-common/site-elisp/.nosearch
/usr/share/dictionaries-common/site-elisp/debian-ispell.el
/usr/share/dictionaries-common/site-elisp/flyspell.el
/usr/share/dictionaries-common/site-elisp/ispell.el
/usr/share/doc
/usr/share/doc/dictionaries-common
/usr/share/doc/dictionaries-common/NEWS.Debian.gz
/usr/share/doc/dictionaries-common/README.Debian.gz
/usr/share/doc/dictionaries-common/README.dictionary.lst
/usr/share/doc/dictionaries-common/README.emacs.gz
/usr/share/doc/dictionaries-common/README.jed-support
/usr/share/doc/dictionaries-common/README.problems
/usr/share/doc/dictionaries-common/README.source
/usr/share/doc/dictionaries-common/changelog.gz
/usr/share/doc/dictionaries-common/copyright
/usr/share/doc/dictionaries-common/dictionaries-common.checklist.gz
/usr/share/lintian
/usr/share/lintian/overrides
/usr/share/lintian/overrides/dictionaries-common
/usr/share/man
/usr/share/man/man1
/usr/share/man/man1/ispell-wrapper.1.gz
/usr/share/man/man1/select-default-iwrap.1.gz
/usr/share/man/man3
/usr/share/man/man3/Debian::DictionariesCommon.3pm.gz
/usr/share/man/man8
/usr/share/man/man8/aspell-autobuildhash.8.gz
/usr/share/man/man8/ispell-autobuildhash.8.gz
/usr/share/man/man8/remove-default-ispell.8.gz
/usr/share/man/man8/remove-default-wordlist.8.gz
/usr/share/man/man8/select-default-ispell.8.gz
/usr/share/man/man8/select-default-wordlist.8.gz
/usr/share/man/man8/update-default-ispell.8.gz
/usr/share/man/man8/update-default-wordlist.8.gz
/usr/share/man/man8/update-dictcommon-aspell.8.gz
/usr/share/man/man8/update-dictcommon-hunspell.8.gz
/usr/share/perl5
/usr/share/perl5/Debian
/usr/share/perl5/Debian/DictionariesCommon.pm
/var
/var/cache
/var/cache/dictionaries-common
/var/lib
/var/lib/aspell
/var/lib/aspell/README
/var/lib/ispell
/var/lib/ispell/README
/usr/sbin/update-default-aspell
/usr/share/man/man8/update-default-aspell.8.gz
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          dictionaries-common/noawait
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    dictionaries-common/noawait
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    dictionaries-common/noawait
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    dictionaries-common/noawait
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    /usr/share/debianutils/shells.d debianutils/noawait
/usr/lib/systemd/catalog systemd/noawait
/usr/lib/binfmt.d systemd/noawait
/lib/udev/hwdb.d udev/noawait
/etc/dbus-1/system.d dbus/noawait
/usr/share/dbus-1/system.d dbus/noawait
/usr/share/dbus-1/system-services dbus/noawait
/usr/lib/mime/packages mailcap/noawait
/usr/share/applications mailcap/noawait
/usr/man man-db/noawait
/usr/share/man man-db/noawait
/usr/local/man man-db/noawait
/usr/local/share/man man-db/noawait
/usr/X11R6/man man-db/noawait
/opt/man man-db/noawait
/usr/share/hunspell dictionaries-common/noawait
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Package: dictionaries-common
Status: install reinstreq unpacked
Priority: optional
Section: text
Installed-Size: 717
Maintainer: Agustin Martin Domingo <agmartin@debian.org>
Architecture: all
Multi-Arch: foreign
Version: 1.29.5
Replaces: openoffice.org-updatedicts
Provides: openoffice.org-updatedicts
Depends: debconf (>= 0.5) | debconf-2.0, libtext-iconv-perl, emacsen-common
Suggests: ispell | aspell | hunspell, wordlist
Breaks: myspell-ca (<= 0.6-10), myspell-cs-cz (<= 20040229-5), myspell-de-de-oldspell (<= 1:2-27), myspell-eu-es (<= 0.4.20081029-4), myspell-fi (<= 0.7-17.3), myspell-gl-es (<= 2.2a-8), myspell-ku (<= 0.20.0-1.1), myspell-nl (<= 1:2.0-1), myspell-nr (<< 20070206-4ubuntu1), myspell-ns (<< 20070206-4ubuntu1), myspell-sl (<< 1.0-3ubuntu1), myspell-ss (<< 20070206-4ubuntu1), myspell-tn (<< 20070206-4ubuntu1), myspell-ts (<< 20070207-4ubuntu1), myspell-ve (<< 20070206-3ubuntu1), myspell-xh (<< 20070206-4ubuntu1), myspell-zu (<< 20070207-5ubuntu1), openoffice.org-thesaurus-it (<< 2.0.7.gh.deb1-1.1ubuntu3)
Conffiles:
 /etc/emacs/site-start.d/50dictionaries-common.el newconffile
Description: spelling dictionaries - common utilities
 This package provides utilities shared between all wordlists and spelling
 dictionaries for Ispell, Aspell, or MySpell/Hunspell. It also includes
 support infrastructure for software using them (such as JED and Mutt),
 and some patched spell-checking Lisp files for better Emacs integration.
 .
 More information about the availability of these dictionaries and their
 naming conventions is available in the README.Debian file.
Homepage: https://salsa.debian.org/debian/dictionaries-common
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Package: dictionaries-common
Status: install ok unpacked
Priority: optional
Section: text
Installed-Size: 717
Maintainer: Agustin Martin Domingo <agmartin@debian.org>
Architecture: all
Multi-Arch: foreign
Version: 1.29.5
Replaces: openoffice.org-updatedicts
Provides: openoffice.org-updatedicts
Depends: debconf (>= 0.5) | debconf-2.0, libtext-iconv-perl, emacsen-common
Suggests: ispell | aspell | hunspell, wordlist
Breaks: myspell-ca (<= 0.6-10), myspell-cs-cz (<= 20040229-5), myspell-de-de-oldspell (<= 1:2-27), myspell-eu-es (<= 0.4.20081029-4), myspell-fi (<= 0.7-17.3), myspell-gl-es (<= 2.2a-8), myspell-ku (<= 0.20.0-1.1), myspell-nl (<= 1:2.0-1), myspell-nr (<< 20070206-4ubuntu1), myspell-ns (<< 20070206-4ubuntu1), myspell-sl (<< 1.0-3ubuntu1), myspell-ss (<< 20070206-4ubuntu1), myspell-tn (<< 20070206-4ubuntu1), myspell-ts (<< 20070207-4ubuntu1), myspell-ve (<< 20070206-3ubuntu1), myspell-xh (<< 20070206-4ubuntu1), myspell-zu (<< 20070207-5ubuntu1), openoffice.org-thesaurus-it (<< 2.0.7.gh.deb1-1.1ubuntu3)
Conffiles:
 /etc/emacs/site-start.d/50dictionaries-common.el newconffile
Description: spelling dictionaries - common utilities
 This package provides utilities shared between all wordlists and spelling
 dictionaries for Ispell, Aspell, or MySpell/Hunspell. It also includes
 support infrastructure for software using them (such as JED and Mutt),
 and some patched spell-checking Lisp files for better Emacs integration.
 .
 More information about the availability of these dictionaries and their
 naming conventions is available in the README.Debian file.
Homepage: https://salsa.debian.org/debian/dictionaries-common
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    d802520655c8835ea23dec4ae19cd34c  usr/bin/buildhash
29e57f823992cd055de0b95e3e455f1d  usr/bin/defmt-c
27314b5103b896b07061b4c2c145c7a6  usr/bin/defmt-sh
b7bc598b2cfe7a59f99016c314b4beb5  usr/bin/findaffix
50c00d6e2114416114241ecf608d1f9d  usr/bin/icombine
cd26eced0377f1bcf1b63590726b02ae  usr/bin/ijoin
abbfe2c847806763b84a596e2ed6a599  usr/bin/ispell
68709ec78e26e381c287caa3c3a87dd6  usr/bin/munchlist
9736bdf515d38a4308baf86996d7ed5f  usr/bin/tryaffix
abc6fcc4570dce73b79a2c55749f48d6  usr/share/doc/ispell/Contributors.gz
34fa0778eac985165f5fda72256b319d  usr/share/doc/ispell/NEWS.Debian.gz
e5727d6f9d57b74654d7b6dd73a97a6b  usr/share/doc/ispell/README.gz
0a79209406204102c268e79f57c69647  usr/share/doc/ispell/WISHES
0d3d56576e8b39f1de73da924e52c3d6  usr/share/doc/ispell/changelog.Debian.gz
380b65155daa2a746d456eec6fbaf433  usr/share/doc/ispell/changelog.gz
63f1a245712b543e54809d66098bc7e3  usr/share/doc/ispell/copyright
2edaa4aef45a0577788ce1381e7441d3  usr/share/lintian/overrides/ispell
e9f20419b85047ee65de6e32b92d29be  usr/share/man/man1/defmt-c.1.gz
8cdb4492cdeeb898379109761dd1a649  usr/share/man/man1/ispell.1.gz
e7615c135bffd7793bcea10f958e61c2  usr/share/man/man5/ispell.5.gz
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   #!/bin/sh
set -e

SCRIPT="ispell-autobuildhash"

if [ "$1" = "configure" ] ; then
  ! which "$SCRIPT" > /dev/null 2>&1 || "$SCRIPT"
fi



exit 0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Package: ispell
Version: 3.4.05-1
Architecture: amd64
Maintainer: Robert Luberda <robert@debian.org>
Installed-Size: 381
Depends: libc6 (>= 2.33), libtinfo6 (>= 6)
Recommends: iamerican | ispell-dictionary, wamerican | wordlist
Suggests: spell
Breaks: ifinnish (<= 0.7-17.3), ifinnish-large (<= 0.7-17.3)
Section: text
Priority: optional
Multi-Arch: foreign
Homepage: https://www.cs.hmc.edu/~geoff/ispell.html
Description: International Ispell (an interactive spelling corrector)
 Ispell corrects spelling in plain text, LaTeX, sgml/html/xml, and nroff files.
 [x]Emacs and jed have nice interfaces to ispell, and ispell works from many
 other tools and from the command line as well.
 .
 No ispell dictionaries are included in this package; you must install
 at least one of them ("iamerican" is recommended by default for no good
 reason); install the "ispell-dictionary" package(s) for the language(s)
 you and your users will want to spell-check.
 .
 It's a good idea to install "word list" package(s) for the same language(s),
 because they'll be used by ispell's (L)ookup command.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Package: ispell
Status: install reinstreq half-installed
Priority: optional
Section: text
Architecture: amd64
Multi-Arch: foreign
Version: 3.4.05-1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Package: ispell
Status: install ok unpacked
Priority: optional
Section: text
Installed-Size: 381
Maintainer: Robert Luberda <robert@debian.org>
Architecture: amd64
Multi-Arch: foreign
Version: 3.4.05-1
Depends: libc6 (>= 2.33), libtinfo6 (>= 6)
Recommends: iamerican | ispell-dictionary, wamerican | wordlist
Suggests: spell
Breaks: ifinnish (<= 0.7-17.3), ifinnish-large (<= 0.7-17.3)
Description: International Ispell (an interactive spelling corrector)
 Ispell corrects spelling in plain text, LaTeX, sgml/html/xml, and nroff files.
 [x]Emacs and jed have nice interfaces to ispell, and ispell works from many
 other tools and from the command line as well.
 .
 No ispell dictionaries are included in this package; you must install
 at least one of them ("iamerican" is recommended by default for no good
 reason); install the "ispell-dictionary" package(s) for the language(s)
 you and your users will want to spell-check.
 .
 It's a good idea to install "word list" package(s) for the same language(s),
 because they'll be used by ispell's (L)ookup command.
Homepage: https://www.cs.hmc.edu/~geoff/ispell.html
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     b164ed45ea9c4bdb4bb7c6d0e74675eb  usr/lib/ispell/english.aff
34fa0778eac985165f5fda72256b319d  usr/share/doc/ienglish-common/NEWS.Debian.gz
0d3d56576e8b39f1de73da924e52c3d6  usr/share/doc/ienglish-common/changelog.Debian.gz
380b65155daa2a746d456eec6fbaf433  usr/share/doc/ienglish-common/changelog.gz
63f1a245712b543e54809d66098bc7e3  usr/share/doc/ienglish-common/copyright
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Package: ienglish-common
Source: ispell
Version: 3.4.05-1
Architecture: all
Maintainer: Robert Luberda <robert@debian.org>
Installed-Size: 68
Depends: ispell (>= 3.4.05)
Recommends: iamerican | iamerican-small | iamerican-large | iamerican-huge | iamerican-insane | ibritish | ibritish-small | ibritish-large | ibritish-huge | ibritish-insane
Section: text
Priority: optional
Multi-Arch: foreign
Homepage: https://www.cs.hmc.edu/~geoff/ispell.html
Description: Common files for British and American ispell dictionaries
 This package provides common files and dependencies for all American and
 British ispell dictionary packages. The package is useless if none of the
 dictionaries is also installed.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Package: ienglish-common
Status: install reinstreq half-installed
Priority: optional
Section: text
Architecture: all
Multi-Arch: foreign
Version: 3.4.05-1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     #
# $Id: english.aff,v 1.26 2020-12-30 22:20:19-08 geoff Exp $
#
# Copyright 1992, 1993, 1999, 2000, 2001, 2005, Geoff Kuenning, Claremont, CA
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
# 3. All modifications to the source code must be clearly marked as
#    such.  Binary redistributions based on modified source code
#    must be clearly marked as modified versions in the documentation
#    and/or other materials provided with the distribution.
# 4. The code that causes the 'ispell -v' command to display a prominent
#    link to the official ispell Web site may not be removed.
# 5. The name of Geoff Kuenning may not be used to endorse or promote
#    products derived from this software without specific prior
#    written permission.
#
# THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL GEOFF KUENNING OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
#	Affix table for English
#

nroffchars	().\\*
texchars	()\[]{}<\>\\$*.%

# First we declare the character set.  Since it's English, it would be
# easy, except that English likes to borrow accents (notably
# acute/grave) from other languages.  To be safe, we'll declare a majority
# of ISO Latin-1.  However, we do not declare the German "eszett"
# (sharp S) in capitalized form, because ispell can't handle a capital
# letter that has a different length than a lowercase one (the capital
# sharp s was only added to German orthography in 2017).
#
# In keeping with the march of progress, UTF-8 is the default
# encoding.  This helps us avoid some of the more obviously difficult
# problems involving encoding acute and grave accents as apostrophes.
#
# We also declare the apostrophe, so that possessives can
# be handled.  We declare it as a boundary character, so that quoting with
# single quotes doesn't confuse things.  The apostrophe is the only
# character that gets such treatment.
#
# We declare the apostrophe first so that "Jon's" collates before "Jonas".
# (This is the way ASCII does it).

#
# UTF-8
#
defstringtype "utf8" "nroff" ".txt"

options raw_display squeeze_strings

boundarychars '

wordchars       a        A
stringchar      \xC3\xA0 \xC3\x80       # àÀ Latin letter A with grave
stringchar      \xC3\xA1 \xC3\x81       # áÁ Latin letter A with acute
stringchar      \xC3\xA2 \xC3\x82       # âÂ Latin letter A with circumflex
stringchar      \xC3\xA3 \xC3\x83       # ãÃ Latin letter A with tilde
stringchar      \xC3\xA4 \xC3\x84       # äÄ Latin letter A with diaeresis
stringchar      \xC3\xA5 \xC3\x85       # åÅ Latin letter A with ring above
stringchar      \xC3\xA6 \xC3\x86       # æÆ Latin letter AE
wordchars       [bc]     [BC]
stringchar      \xC3\xA7 \xC3\x87       # çÇ Latin letter C with cedilla
wordchars       [de]     [DE]
stringchar      \xC3\xA8 \xC3\x88       # èÈ Latin letter E with grave
stringchar      \xC3\xA9 \xC3\x89       # éÉ Latin letter E with acute
stringchar      \xC3\xAA \xC3\x8A       # êÊ Latin letter E with circumflex
stringchar      \xC3\xAB \xC3\x8B       # ëË Latin letter E with diaeresis
wordchars       [f-i]    [F-I]
stringchar      \xC3\xAC \xC3\x8C       # ìÌ Latin letter I with grave
stringchar      \xC3\xAD \xC3\x8D       # íÍ Latin letter I with acute
stringchar      \xC3\xAE \xC3\x8E       # îÎ Latin letter I with circumflex
stringchar      \xC3\xAF \xC3\x8F       # ïÏ Latin letter I with diaeresis
stringchar      \xC3\xB0 \xC3\x90       # ðÐ Latin letter eth
wordchars       [j-n]    [J-N]
stringchar      \xC3\xB1 \xC3\x91       # ñÑ Latin letter N with tilde
wordchars       o       O
stringchar      \xC3\xB2 \xC3\x92       # òÒ Latin letter O with grave
stringchar      \xC3\xB3 \xC3\x93       # óÓ Latin letter O with acute
stringchar      \xC3\xB4 \xC3\x94       # ôÔ Latin letter O with circumflex
stringchar      \xC3\xB5 \xC3\x95       # õÕ Latin letter O with tilde
stringchar      \xC3\xB6 \xC3\x96       # öÖ Latin letter O with diaeresis
stringchar      \xC3\xB8 \xC3\x98       # øØ Latin letter O with stroke
wordchars       [p-s]    [P-S]
# See comments about eszett above
# stringchar    \xC3\x9F SS             # ß Latin small letter sharp s
# stringchar    \xC3\x9F \xE1\xBA\x9E   # ß Latin letter sharp S
stringchar      \xC3\x9F                # ß Latin letter sharp S
wordchars       [tu]     [TU]
stringchar      \xC3\xB9 \xC3\x99       # ùÙ Latin letter U with grave
stringchar      \xC3\xBA \xC3\x9A       # úÚ Latin letter U with acute
stringchar      \xC3\xBB \xC3\x9B       # ûÛ Latin letter U with circumflex
stringchar      \xC3\xBC \xC3\x9C       # üÜ Latin letter U with diaeresis
wordchars       [v-y]    [V-Y]
stringchar      \xC3\xBD \xC3\x9D       # ýÝ Latin letter Y with acute
stringchar      \xC3\xBF \xC5\xB8       # ÿŸ Latin letter Y with diaeresis
wordchars       z        Z
stringchar      \xC3\xBE \xC3\x9E       # þÞ Latin letter Thorn

altstringtype "latin1" "nroff" ".list" ".txt"

altstringchar   \xE0    \xC3\xA0        # à Latin letter a with grave
altstringchar   \xC0    \xC3\x80        # À Latin letter A with grave
altstringchar   \xE1    \xC3\xA1        # á Latin letter a with acute
altstringchar   \xC1    \xC3\x81        # Á Latin letter A with acute
altstringchar   \xE2    \xC3\xA2        # â Latin letter a with circumflex
altstringchar   \xC2    \xC3\x82        # Â Latin letter A with circumflex
altstringchar   \xE3    \xC3\xA3        # ã Latin letter a with tilde
altstringchar   \xC3    \xC3\x83        # Ã Latin letter A with tilde
altstringchar   \xE4    \xC3\xA4        # ä Latin letter a with diaeresis
altstringchar   \xC4    \xC3\x84        # Ä Latin letter A with diaeresis
altstringchar   \xE5    \xC3\xA5        # å Latin letter a with ring above
altstringchar   \xC5    \xC3\x85        # Å Latin letter A with ring above
altstringchar   \xE6    \xC3\xA6        # æ Latin letter ae
altstringchar   \xC6    \xC3\x86        # Æ Latin letter AE
altstringchar   \xE7    \xC3\xA7        # ç Latin letter c with cedilla
altstringchar   \xC7    \xC3\x87        # Ç Latin letter C with cedilla
altstringchar   \xE8    \xC3\xA8        # è Latin letter e with grave
altstringchar   \xC8    \xC3\x88        # È Latin letter E with grave
altstringchar   \xE9    \xC3\xA9        # é Latin letter e with acute
altstringchar   \xC9    \xC3\x89        # É Latin letter E with acute
altstringchar   \xEA    \xC3\xAA        # ê Latin letter e with circumflex
altstringchar   \xCA    \xC3\x8A        # Ê Latin letter E with circumflex
altstringchar   \xEB    \xC3\xAB        # ë Latin letter e with diaeresis
altstringchar   \xCB    \xC3\x8B        # Ë Latin letter E with diaeresis
altstringchar   \xEC    \xC3\xAC        # ì Latin letter i with grave
altstringchar   \xCC    \xC3\x8C        # Ì Latin letter I with grave
altstringchar   \xED    \xC3\xAD        # í Latin letter i with acute
altstringchar   \xCD    \xC3\x8D        # Í Latin letter I with acute
altstringchar   \xEE    \xC3\xAE        # î Latin letter i with circumflex
altstringchar   \xCE    \xC3\x8E        # Î Latin letter I with circumflex
altstringchar   \xEF    \xC3\xAF        # ï Latin letter i with diaeresis
altstringchar   \xCF    \xC3\x8F        # Ï Latin letter I with diaeresis
altstringchar   \xF0    \xC3\xB0        # ð Latin letter eth
altstringchar   \xD0    \xC3\x90        # Ð Latin letter Eth
altstringchar   \xF1    \xC3\xB1        # ñ Latin letter n with tilde
altstringchar   \xD1    \xC3\x91        # Ñ Latin letter N with tilde
altstringchar   \xF2    \xC3\xB2        # ò Latin letter o with grave
altstringchar   \xD2    \xC3\x92        # Ò Latin letter O with grave
altstringchar   \xF3    \xC3\xB3        # ó Latin letter o with acute
altstringchar   \xD3    \xC3\x93        # Ó Latin letter O with acute
altstringchar   \xF4    \xC3\xB4        # ô Latin letter o with circumflex
altstringchar   \xD4    \xC3\x94        # Ô Latin letter O with circumflex
altstringchar   \xF5    \xC3\xB5        # õ Latin letter o with tilde
altstringchar   \xD5    \xC3\x95        # Õ Latin letter O with tilde
altstringchar   \xF6    \xC3\xB6        # ö Latin letter o with diaeresis
altstringchar   \xD6    \xC3\x96        # Ö Latin letter O with diaeresis
altstringchar   \xF8    \xC3\xB8        # ø Latin letter o with stroke
altstringchar   \xD8    \xC3\x98        # Ø Latin letter O with stroke
altstringchar   \xDF    \xC3\x9F        # ß Latin small letter sharp s
altstringchar   \xF9    \xC3\xB9        # ù Latin letter u with grave
altstringchar   \xD9    \xC3\x99        # Ù Latin letter U with grave
altstringchar   \xFA    \xC3\xBA        # ú Latin letter u with acute
altstringchar   \xDA    \xC3\x9A        # Ú Latin letter U with acute
altstringchar   \xFB    \xC3\xBB        # û Latin letter u with circumflex
altstringchar   \xDB    \xC3\x9B        # Û Latin letter U with circumflex
altstringchar   \xFC    \xC3\xBC        # ü Latin letter u with diaeresis
altstringchar   \xDC    \xC3\x9C        # Ü Latin letter U with diaeresis
altstringchar   \xFD    \xC3\xBD        # ý Latin letter y with acute
altstringchar   \xDD    \xC3\x9D        # Ý Latin letter Y with acute
altstringchar   \xFF    \xC3\xBF        # ÿ Latin letter y with diaeresis
altstringchar   Y       \xC5\xB8        # Ÿ Latin letter Y with diaeresis
altstringchar   \xFE    \xC3\xBE        # þ latin letter thorn
altstringchar   \xDE    \xC3\x9E        # Þ Latin letter Thorn

#
# TeX/LaTeX
#
altstringtype "tex" "TeX" ".tex" ".bib"

altstringchar   \\`a    \xC3\xA0
altstringchar   \\`A    \xC3\x80        # àÀ Latin letter A with grave
altstringchar   \\'a    \xC3\xA1
altstringchar   \\'A    \xC3\x81        # áÁ Latin letter A with acute
altstringchar   \\^a    \xC3\xA2
altstringchar   \\^A    \xC3\x82        # âÂ Latin letter A with circumflex
altstringchar   \\~a    \xC3\xA3
altstringchar   \\~A    \xC3\x83        # ãÃ Latin letter A with tilde
altstringchar   \\\"a   \xC3\xA4
altstringchar   \\\"A   \xC3\x84        # äÄ Latin letter A with diaeresis
altstringchar   {\\aa}  \xC3\xA5
altstringchar   {\\AA}  \xC3\x85        # åÅ Latin letter A with ring above
altstringchar   {\\ae}  \xC3\xA6
altstringchar   {\\AE}  \xC3\x86        # æÆ Latin letter AE
altstringchar   \\c{c}  \xC3\xA7
altstringchar   \\c{C}  \xC3\x87        # çÇ Latin letter C with cedilla
altstringchar   \\`e    \xC3\xA8
altstringchar   \\`E    \xC3\x88        # èÈ Latin letter E with grave
altstringchar   \\'e    \xC3\xA9
altstringchar   \\'E    \xC3\x89        # éÉ Latin letter E with acute
altstringchar   \\^e    \xC3\xAA
altstringchar   \\^E    \xC3\x8A        # êÊ Latin letter E with circumflex
altstringchar   \\\"e   \xC3\xAB
altstringchar   \\\"E   \xC3\x8B        # ëË Latin letter E with diaeresis
altstringchar   \\`{\\i} \xC3\xAC
altstringchar   \\`I    \xC3\x8C        # ìÌ Latin letter I with grave
altstringchar   \\'{\\i} \xC3\xAD
altstringchar   \\'I    \xC3\x8D        # íÍ Latin letter I with acute
altstringchar   \\^{\\i} \xC3\xAE
altstringchar   \\^I    \xC3\x8E        # îÎ Latin letter I with circumflex
altstringchar   \\\"{\\i} \xC3\xAF
altstringchar   \\\"I   \xC3\x8F        # ïÏ Latin letter I with diaeresis
# (not listed) Latin letter eth
# TeX doesn't define it, but ispell requires us to provide *something*.
altstringchar   {\\eth} \xC3\xB0
altstringchar   {\\Eth} \xC3\x90        # ðÐ Latin letter eth
altstringchar   \\~n    \xC3\xB1
altstringchar   \\~N    \xC3\x91        # ñÑ Latin letter N with tilde
altstringchar   \\`o    \xC3\xB2
altstringchar   \\`O    \xC3\x92        # òÒ Latin letter O with grave
altstringchar   \\'o    \xC3\xB3
altstringchar   \\'O    \xC3\x93        # óÓ Latin letter O with acute
altstringchar   \\^o    \xC3\xB4
altstringchar   \\^O    \xC3\x94        # ôÔ Latin letter O with circumflex
altstringchar   \\~o    \xC3\xB5
altstringchar   \\~O    \xC3\x95        # õÕ Latin letter O with tilde
altstringchar   \\\"o   \xC3\xB6
altstringchar   \\\"O   \xC3\x96        # öÖ Latin letter O with diaeresis
altstringchar   {\\o}   \xC3\xB8
altstringchar   {\\O}   \xC3\x98        # øØ Latin letter O with stroke
altstringchar   {\\ss}  \xC3\x9F        # ß Latin small letter sharp s
altstringchar   \\`u    \xC3\xB9
altstringchar   \\`U    \xC3\x99        # ùÙ Latin letter U with grave
altstringchar   \\'u    \xC3\xBA
altstringchar   \\'U    \xC3\x9A        # úÚ Latin letter U with acute
altstringchar   \\^u    \xC3\xBB
altstringchar   \\^U    \xC3\x9B        # ûÛ Latin letter U with circumflex
altstringchar   \\\"u   \xC3\xBC
altstringchar   \\\"U   \xC3\x9C        # üÜ Latin letter U with diaeresis
altstringchar   \\'y    \xC3\xBD
altstringchar   \\'Y    \xC3\x9D        # ýÝ Latin letter Y with acute
altstringchar   \\\"y   \xC3\xBF
altstringchar   \\\"Y   \xC3\xB8        # ÿŸ Latin letter Y with diaeresis
# (not listed) Latin letter thorn
# TeX doesn't define it, but ispell requires us to provide *something*.
altstringchar   {\\thorn} \xC3\xBE
altstringchar   {\\Thorn} \xC3\x9E      # þÞ Latin letter Thorn

#
# N/Troff with -ms/-me/man macro packages.  Some of these are only
# supported by the FSF versions of the packages.
#
altstringtype "nroff" "nroff" ".nr" ".ms" ".me" ".man"

altstringchar   a\\*`   \xC3\xA0
altstringchar   A\\*`   \xC3\x80        # àÀ Latin letter A with grave
altstringchar   a\\*'   \xC3\xA1
altstringchar   A\\*'   \xC3\x81        # áÁ Latin letter A with acute
altstringchar   a\\*^   \xC3\xA2
altstringchar   A\\*^   \xC3\x82        # âÂ Latin letter A with circumflex
altstringchar   a\\*~   \xC3\xA3
altstringchar   A\\*~   \xC3\x83        # ãÃ Latin letter A with tilde
altstringchar   a\\*\:  \xC3\xA4
altstringchar   A\\*\:  \xC3\x84        # äÄ Latin letter A with diaeresis
altstringchar   a\\*o   \xC3\xA5
altstringchar   A\\*o   \xC3\x85        # åÅ Latin letter A with ring above
altstringchar   \\(ae   \xC3\xA6
altstringchar   \\(AE   \xC3\x86        # æÆ Latin letter AE
altstringchar   c\\*\,  \xC3\xA7
altstringchar   C\\*\,  \xC3\x87        # çÇ Latin letter C with cedilla
altstringchar   e\\*`   \xC3\xA8
altstringchar   E\\*`   \xC3\x88        # èÈ Latin letter E with grave
altstringchar   e\\*'   \xC3\xA9
altstringchar   E\\*'   \xC3\x89        # éÉ Latin letter E with acute
altstringchar   e\\*^   \xC3\xAA
altstringchar   E\\*^   \xC3\x8A        # êÊ Latin letter E with circumflex
altstringchar   e\\*\:  \xC3\xAB
altstringchar   E\\*\:  \xC3\x8B        # ëË Latin letter E with diaeresis
altstringchar   i\\*`   \xC3\xAC
altstringchar   I\\*`   \xC3\x8C        # ìÌ Latin letter I with grave
altstringchar   i\\*'   \xC3\xAD
altstringchar   I\\*'   \xC3\x8D        # íÍ Latin letter I with acute
altstringchar   i\\*^   \xC3\xAE
altstringchar   I\\*^   \xC3\x8E        # îÎ Latin letter I with circumflex
altstringchar   i\\*\:  \xC3\xAF
altstringchar   I\\*\:  \xC3\x8F        # ïÏ Latin letter I with diaeresis
# (not listed) Latin letter eth
# nroff doesn't define it, but ispell requires us to provide *something*.
altstringchar   \*(et   \xC3\xB0
altstringchar   \*(ET   \xC3\x90        # ðÐ Latin letter eth
altstringchar   n\\*~   \xC3\xB1
altstringchar   N\\*~   \xC3\x91        # ñÑ Latin letter N with tilde
altstringchar   o\\*`   \xC3\xB2
altstringchar   O\\*`   \xC3\x92        # òÒ Latin letter O with grave
altstringchar   o\\*'   \xC3\xB3
altstringchar   O\\*'   \xC3\x93        # óÓ Latin letter O with acute
altstringchar   o\\*^   \xC3\xB4
altstringchar   O\\*^   \xC3\x94        # ôÔ Latin letter O with circumflex
altstringchar   o\\*~   \xC3\xB5
altstringchar   O\\*~   \xC3\x95        # õÕ Latin letter O with tilde
altstringchar   o\\*\:  \xC3\xB6
altstringchar   O\\*\:  \xC3\x96        # öÖ Latin letter O with diaeresis
altstringchar   o\\*/   \xC3\xB8
altstringchar   O\\*/   \xC3\x98        # øØ Latin letter O with stroke
altstringchar   \\*8    \xC3\x9F        # ß Latin small letter sharp s
altstringchar   u\\*`   \xC3\xB9
altstringchar   U\\*`   \xC3\x99        # ùÙ Latin letter U with grave
altstringchar   u\\*'   \xC3\xBA
altstringchar   U\\*'   \xC3\x9A        # úÚ Latin letter U with acute
altstringchar   u\\*^   \xC3\xBB
altstringchar   U\\*^   \xC3\x9B        # ûÛ Latin letter U with circumflex
altstringchar   u\\*\:  \xC3\xBC
altstringchar   U\\*\:  \xC3\x9C        # üÜ Latin letter U with diaeresis
altstringchar   y\\*'   \xC3\xBD
altstringchar   Y\\*'   \xC3\x9D        # ýÝ Latin letter Y with acute
altstringchar   y\\*\:  \xC3\xBF
altstringchar   Y\\*\:  \xC3\xB8        # ÿŸ Latin letter Y with diaeresis
# (not listed) Latin letter thorn
# nroff doesn't define it, but ispell requires us to provide *something*.
altstringchar   \*(th   \xC3\xBE
altstringchar   \*(TH   \xC3\x9E        # þÞ Latin letter Thorn

#
# N/Troff with -mm macros.  Some of these are not actually supported
# by nroff.
#
altstringtype "-mm" "nroff" ".mm"

altstringchar   a\\*`   \xC3\xA0
altstringchar   A\\*`   \xC3\x80        # àÀ Latin letter A with grave
altstringchar   a\\*'   \xC3\xA1
altstringchar   A\\*'   \xC3\x81        # áÁ Latin letter A with acute
altstringchar   a\\*^   \xC3\xA2
altstringchar   A\\*^   \xC3\x82        # âÂ Latin letter A with circumflex
altstringchar   a\\*~   \xC3\xA3
altstringchar   A\\*~   \xC3\x83        # ãÃ Latin letter A with tilde
altstringchar   a\\*\:  \xC3\xA4
altstringchar   A\\*;   \xC3\x84        # äÄ Latin letter A with diaeresis
altstringchar   a\\*o   \xC3\xA5
altstringchar   A\\*o   \xC3\x85        # åÅ Latin letter A with ring above
altstringchar   \\(ae   \xC3\xA6
altstringchar   \\(AE   \xC3\x86        # æÆ Latin letter AE
altstringchar   c\\*\,  \xC3\xA7
altstringchar   C\\*\,  \xC3\x87        # çÇ Latin letter C with cedilla
altstringchar   e\\*`   \xC3\xA8
altstringchar   E\\*`   \xC3\x88        # èÈ Latin letter E with grave
altstringchar   e\\*'   \xC3\xA9
altstringchar   E\\*'   \xC3\x89        # éÉ Latin letter E with acute
altstringchar   e\\*^   \xC3\xAA
altstringchar   E\\*^   \xC3\x8A        # êÊ Latin letter E with circumflex
altstringchar   e\\*\:  \xC3\xAB
altstringchar   E\\*;   \xC3\x8B        # ëË Latin letter E with diaeresis
altstringchar   i\\*`   \xC3\xAC
altstringchar   I\\*`   \xC3\x8C        # ìÌ Latin letter I with grave
altstringchar   i\\*'   \xC3\xAD
altstringchar   I\\*'   \xC3\x8D        # íÍ Latin letter I with acute
altstringchar   i\\*^   \xC3\xAE
altstringchar   I\\*^   \xC3\x8E        # îÎ Latin letter I with circumflex
altstringchar   i\\*\:  \xC3\xAF
altstringchar   I\\*;   \xC3\x8F        # ïÏ Latin letter I with diaeresis
# (not listed) Latin letter eth
# nroff doesn't define it, but ispell requires us to provide *something*.
altstringchar   \*(et   \xC3\xB0
altstringchar   \*(ET   \xC3\x90        # ðÐ Latin letter eth
altstringchar   n\\*~   \xC3\xB1
altstringchar   N\\*~   \xC3\x91        # ñÑ Latin letter N with tilde
altstringchar   o\\*`   \xC3\xB2
altstringchar   O\\*`   \xC3\x92        # òÒ Latin letter O with grave
altstringchar   o\\*'   \xC3\xB3
altstringchar   O\\*'   \xC3\x93        # óÓ Latin letter O with acute
altstringchar   o\\*^   \xC3\xB4
altstringchar   O\\*^   \xC3\x94        # ôÔ Latin letter O with circumflex
altstringchar   o\\*~   \xC3\xB5
altstringchar   O\\*~   \xC3\x95        # õÕ Latin letter O with tilde
altstringchar   o\\*\:  \xC3\xB6
altstringchar   O\\*;   \xC3\x96        # öÖ Latin letter O with diaeresis
altstringchar   o\\*/   \xC3\xB8
altstringchar   O\\*/   \xC3\x98        # øØ Latin letter O with stroke
altstringchar   \\*(ss  \xC3\x9F        # ß Latin small letter sharp s
altstringchar   u\\*`   \xC3\xB9
altstringchar   U\\*`   \xC3\x99        # ùÙ Latin letter U with grave
altstringchar   u\\*'   \xC3\xBA
altstringchar   U\\*'   \xC3\x9A        # úÚ Latin letter U with acute
altstringchar   u\\*^   \xC3\xBB
altstringchar   U\\*^   \xC3\x9B        # ûÛ Latin letter U with circumflex
altstringchar   u\\*\:  \xC3\xBC
altstringchar   U\\*;   \xC3\x9C        # üÜ Latin letter U with diaeresis
altstringchar   y\\*'   \xC3\xBD
altstringchar   Y\\*'   \xC3\x9D        # ýÝ Latin letter Y with acute
altstringchar   y\\*\:  \xC3\xBF
altstringchar   Y\\*\:  \xC3\xB8        # ÿŸ Latin letter Y with diaeresis
# (not listed) Latin letter thorn
# nroff doesn't define it, but ispell requires us to provide *something*.
altstringchar   \*(th   \xC3\xBE
altstringchar   \*(TH   \xC3\x9E        # þÞ Latin letter Thorn

#
# HTML/SGML/XML
#
altstringtype "html" "html" ".html" ".htm" ".shtml" ".xml"

altstringchar   &agrave;     \xC3\xA0
altstringchar   &Agrave;     \xC3\x80        # àÀ Latin letter A with grave
altstringchar   &aacute;     \xC3\xA1
altstringchar   &Aacute;     \xC3\x81        # áÁ Latin letter A with acute
altstringchar   &acirc;      \xC3\xA2
altstringchar   &Acirc;      \xC3\x82        # âÂ Latin letter A with circumflex
altstringchar   &atilde;     \xC3\xA3
altstringchar   &Atilde;     \xC3\x83        # ãÃ Latin letter A with tilde
altstringchar   &auml;       \xC3\xA4
altstringchar   &Auml;       \xC3\x84        # äÄ Latin letter A with diaeresis
altstringchar   &acirc;      \xC3\xA5
altstringchar   &Acirc;      \xC3\x85        # åÅ Latin letter A with ring above
altstringchar   &aelig;      \xC3\xA6
altstringchar   &AElig;      \xC3\x86        # æÆ Latin letter AE
altstringchar   &ccedil;     \xC3\xA7
altstringchar   &Ccedil;     \xC3\x87        # çÇ Latin letter C with cedilla
altstringchar   &egrave;     \xC3\xA8
altstringchar   &Egrave;     \xC3\x88        # èÈ Latin letter E with grave
altstringchar   &eacute;     \xC3\xA9
altstringchar   &Eacute;     \xC3\x89        # éÉ Latin letter E with acute
altstringchar   &ecirc;      \xC3\xAA
altstringchar   &Ecirc;      \xC3\x8A        # êÊ Latin letter E with circumflex
altstringchar   &euml;       \xC3\xAB
altstringchar   &Euml;       \xC3\x8B        # ëË Latin letter E with diaeresis
altstringchar   &igrave;     \xC3\xAC
altstringchar   &Igrave;     \xC3\x8C        # ìÌ Latin letter I with grave
altstringchar   &iacute;     \xC3\xAD
altstringchar   &Iacute;     \xC3\x8D        # íÍ Latin letter I with acute
altstringchar   &icirc;      \xC3\xAE
altstringchar   &Icirc;      \xC3\x8E        # îÎ Latin letter I with circumflex
altstringchar   &iuml;       \xC3\xAF
altstringchar   &Iuml;       \xC3\x8F        # ïÏ Latin letter I with diaeresis
altstringchar   &eth;        \xC3\xB0
altstringchar   &ETH;        \xC3\x90        # ðÐ Latin letter eth
altstringchar   &ntilde;     \xC3\xB1
altstringchar   &Ntilde;     \xC3\x91        # ñÑ Latin letter N with tilde
altstringchar   &ograve;     \xC3\xB2
altstringchar   &Ograve;     \xC3\x92        # òÒ Latin letter O with grave
altstringchar   &oacute;     \xC3\xB3
altstringchar   &Oacute;     \xC3\x93        # óÓ Latin letter O with acute
altstringchar   &ocirc;      \xC3\xB4
altstringchar   &Ocirc;      \xC3\x94        # ôÔ Latin letter O with circumflex
altstringchar   &otilde;     \xC3\xB5
altstringchar   &Otilde;     \xC3\x95        # õÕ Latin letter O with tilde
altstringchar   &ouml;       \xC3\xB6
altstringchar   &Ouml;       \xC3\x96        # öÖ Latin letter O with diaeresis
altstringchar   &oslash;     \xC3\xB8
altstringchar   &Oslash;     \xC3\x98        # øØ Latin letter O with stroke
altstringchar   &szlig;      \xC3\x9F        # ß Latin small letter sharp s
altstringchar   &ugrave;     \xC3\xB9
altstringchar   &Ugrave;     \xC3\x99        # ùÙ Latin letter U with grave
altstringchar   &uacute;     \xC3\xBA
altstringchar   &Uacute;     \xC3\x9A        # úÚ Latin letter U with acute
altstringchar   &ucirc;      \xC3\xBB
altstringchar   &Ucirc;      \xC3\x9B        # ûÛ Latin letter U with circumflex
altstringchar   &uuml;       \xC3\xBC
altstringchar   &Uuml;       \xC3\x9C        # üÜ Latin letter U with diaeresis
altstringchar   &yacute;     \xC3\xBD
altstringchar   &Yacute;     \xC3\x9D        # ýÝ Latin letter Y with acute
altstringchar   &yuml;       \xC3\xBF
altstringchar   &Yuml;       \xC3\xB8      # ÿŸ Latin letter Y with diaeresis
altstringchar   &thorn;      \xC3\xBE
altstringchar   &THORN;      \xC3\x9E        # þÞ Latin letter thorn

# Here's a record of flags used, in case you want to add new ones.
# Right now, we fit within the minimal MASKBITS definition.
#
#            ABCDEFGHIJKLMNOPQRSTUVWXYZ
# Used:      *  *  ****  ** * ***** ***
#            A  D  GHIJ  MN P RSTUV XYZ
# Available:  -- --    --  - -     -
#             BC EF    KL  O Q     W

# Now the prefix table.  There are only three prefixes that are truly
# frequent in English, and none of them seem to need conditional variations.
#
prefixes

flag *A:
    .		>	RE		# As in enter > reenter

flag *I:
    .		>	IN		# As in disposed > indisposed

flag *U:
    .		>	UN		# As in natural > unnatural

# Finally, the suffixes.  These are exactly the suffixes that came out
# with the original "ispell";  I haven't tried to improve them.  The only
# thing I did besides translate them was to add selected cross-product flags.
#
suffixes

flag V:
    E		>	-E,IVE		# As in create > creative
    [^E]	>	IVE		# As in prevent > preventive

flag *N:
    E		>	-E,ION		# As in create > creation
    Y		>	-Y,ICATION	# As in multiply > multiplication
    [^EY]	>	EN		# As in fall > fallen

flag *X:
    E		>	-E,IONS		# As in create > creations
    Y		>	-Y,ICATIONS	# As in multiply > multiplications
    [^EY]	>	ENS		# As in weak > weakens

flag H:
    Y		>	-Y,IETH		# As in twenty > twentieth
    [^Y]	>	TH		# As in hundred > hundredth

flag *Y:
    Y		>	-Y,ILY		# As in messy > messily
    [^Y]	>	LY		# As in quick > quickly

flag *G:
    E		>	-E,ING		# As in file > filing
    [^E]	>	ING		# As in cross > crossing

flag *J:
    E		>	-E,INGS		# As in file > filings
    [^E]	>	INGS		# As in cross > crossings

flag *D:
    E		>	D		# As in create > created
    [^AEIOU]Y	>	-Y,IED		# As in imply > implied
    [^EY]	>	ED		# As in cross > crossed
    [AEIOU]Y	>	ED		# As in convey > conveyed

flag T:
    E		>	ST		# As in late > latest
    [^AEIOU]Y	>	-Y,IEST		# As in dirty > dirtiest
    [AEIOU]Y	>	EST		# As in gray > grayest
    [^EY]	>	EST		# As in small > smallest

flag *R:
    E		>	R		# As in skate > skater
    [^AEIOU]Y	>	-Y,IER		# As in multiply > multiplier
    [AEIOU]Y	>	ER		# As in convey > conveyer
    [^EY]	>	ER		# As in build > builder

flag *Z:
    E		>	RS		# As in skate > skaters
    [^AEIOU]Y	>	-Y,IERS		# As in multiply > multipliers
    [AEIOU]Y	>	ERS		# As in convey > conveyers
    [^EY]	>	ERS		# As in build > builders

flag *S:
    [^AEIOU]Y	>	-Y,IES		# As in imply > implies
    [AEIOU]Y	>	S		# As in convey > conveys
    [CS]H	>	ES		# As in lash > lashes
    [^CS]H	>	S		# As in cough > coughs
    [SXZ]	>	ES		# As in fix > fixes
    [^SXZHY]	>	S		# As in bat > bats

flag *P:
    [^AEIOU]Y	>	-Y,INESS	# As in cloudy > cloudiness
    [AEIOU]Y	>	NESS		# As in gray > grayness
    [^Y]	>	NESS		# As in late > lateness

flag *M:
    .		>	'S		# As in dog > dog's

# $Log: english.aff,v $
# Revision 1.26  2020-12-30 22:20:19-08  geoff
# Add UTF-8 options to the default character set.
#
# Revision 1.25  2020-12-23 16:26:37-08  geoff
# Switch to UTF-8 as the default character encoding.
#
# Revision 1.24  2015-02-07 23:59:51-08  geoff
# Correct the suffix generation for words ending in TH.
#
# Revision 1.23  2005/04/21 14:06:40  geoff
# Add UTF-8 as an encoding option.
#
# Revision 1.22  2005/04/13 22:52:37  geoff
# Update the license.  Add expanded rules for LY and ES.
#
# Revision 1.21  2001/07/25 21:51:47  geoff
# *** empty log message ***
#
# Revision 1.20  2001/07/23 20:43:37  geoff
# *** empty log message ***
#
# Revision 1.19  2000/08/22 11:03:59  geoff
# Fix a typo in the previous checkin.  Provide dummy definitions for eth
# and thorn for tex/nroff, since ispell insists on having them.
#
# Revision 1.18  2000/08/22 10:52:25  geoff
# *** empty log message ***
#
# Revision 1.17  1999/01/07 01:58:15  geoff
# Update the copyright.
#
# Revision 1.16  1995/01/08  23:23:59  geoff
# Add a NeXT to the defstringtype statement so that nextispell can
# select it.
#
# Revision 1.15  1994/01/25  07:12:40  geoff
# Get rid of all old RCS log lines in preparation for the 3.1 release.
#
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SKk@W`ZBvq4=K@Ici>>⨿P
!,e~lsw]C?({ -{'
45htΖ2O.v>8B
O<[ .u8X_w =}+PT4pB^qf-4OT/A@5EK6pqfq`BUX.ֵ@,GQ!v~4)2O#Lu>KkTJD664Lhq *id?p{|BViy
ᢲ& J$au&ijǠ,P=qhu<2N</QagZ^F&o,_Ih9[+6E|j~5f`DZF*x"-]P@YӐ-Lҗ-L;/[m(
/aUm* 
TPF1';&[8*ZYB -I޻5eQ\_:XvxuQfEY@AJ*DɺcFI)b
M*uqY;kDEz6o'?(4=                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   [ےF}W8=H-ˣIV%ac
E 
. ݢ؏٧=YUQlKm=H X(de<Uu
e$Zezk.=b?3I'~~,xO%ljLQue٦x?3xkLɊrUYl4%DyT,OM(3^}f»JI9Sၳow|6e'yC"~g	YRfGSU
m,LcDl|
G/̨𺑥m,/]f\طdB9Df")?R;3䎫B_U27U[gxf'&hohQ5Q'7 a/[%k+h'E]%
65X(K<-ds%lLJXeC03~4Ӭb]qϴͥ-ثD1}Vk7`v}}HwSZ@mH*0i#E[a
3]6+exrkPx*XZ*wV2ci.k*˙/f(y+{59&9{PVD-[!Hte"?`
GL#F;U`2چՍH,v֔uH[ 0LOC-w<ȶyrYj&YZWM3gtJ^D`1/^l>S>ii+>h/)tB
|@ɬM87r.C\Wp(QJF6*iҽVe8@g]J?@1$b
q ^{IxL1fe:D|C4e+2C 8&8РYjDhD$ Pi[Tp͞Wg	Y`@ﰍd^`"ZG'-s\lδ34 @Unq<LJHd4vDC3D
ܲmY9YoZByî/eF:$gAQncME˪i]mu3|=>?1NL#Ho6Г$RyLeΑ$BQ/rbg癕ym$t(mz("=Z;۶	I:i^;3$ έLЍ*([ZB,P'QjYS
p I 6k&;9(*7	bhb0xi2{IvWutҭ]'[IFMW4
Y,MBϱ&98Z-w
Y={QNyRɇ	YͦuuIZ~
8]y ?W
^'z+!aOY~Nĥ}g**R;E>3ј\}Yʿ<zfYcwX뻟Փ͛o_?c_7QȜk.Լi+3Y,ð$L|LΓ[)2ދV;th2jCD/h~Qj#V23`?К/Pt!eFj::運UXAT 0 \AE*`$3<21KJ1ii2ʜ\;	;F]:I^'aEEsd_+XտhQeO{ܕz<\D(;uz=>L(jMnvm
eփ,^wB'Ӗp	`S%*r@JfF~0#XF<Dxq0%^t./b(/oHYꨉ?x^ ~Ԛ"Jֵqci[E$G۪B///{.r~-Q0rmӴDw5W;ј7%)fɗ\e `2`CKLs;]oGxn9<4
[JjLQy*
v3P)"[K7k]`(J86b/
.B/rpau8Dj_أ"$bv n	]3PF>\q_9ߖ4̀!pKr:P0FD7O|\=p(7^`2 lj%:* 1|2)MbӄˤZ^1t Mm9`++1B0r)X`$*Tq-<P!F8`j#dc,>gb^ts_+E̿f=|R:xވB2I*6|,K g2yľ0}TqĭN":F[#m=ɿ`bG
&Ѵr%PBnej-r1⨎ybۀ]P=I.
wuju&u˪]_s %(էeI(]wUYe$u&4OUg0/i
)|殛[[]e2m5}TqT
DHԔ.ol*]ҩ j24d}&d{͖Z}XčٓJQX{}	o
e&n<pQ\c!'KhݱʛYs5uBі:]+W Sux5*KI݌0=Z ݴ<R[kʐ	(9Vv%q4й|O w9ƁE &(#`iV15'[Q,Dh޵SiQT ]g2Qkp:@Fcc⒎8f]R|iF,\q.`Lxo=$c˝)Ɣ̶i+ٯl&ݗP&+\RM12DGJ%)KS0jF8nm	hOzKBZ)I=-LϮFB 5}RnʑdabR"`h_P([;sh_
/@A RѢn<}{5ӽ+#U-sBUCd07F=7+.u O_MYs(
iEGaiwv$ϿxwE?:RPWj7'df
MvB/уxMph(lT辣gn>n*Z˫Ni>ulU̉6=_}Sp&z(4fĐhv8Ώ٤r6:!}͆˼VYlj.~W.'^ӕ"ZP+ytgl%>J@$4$ZT6
$;PsXdo[X_[EJ'AzwNc"\f}H@sss1YoesubM}3@Xg'vL;:pO$gQeuiwq5e3PFv{<#N86&'w]D*tPdjHZLxq1g/z %Lc牙,9cCueXҒR8{N-<H|Љ%s@DԚlm+;xg?PGXQuk|ʵ}Ȝ=+C
 V_ZqǉXX>C1\l'n/s )a'hЈi<Fї =I.|=[~0̍r68g4f阡x}/['ɞhDf&-!y*i7:ӵA
Ęҿ>]3_URGPYY3m)	ݸFa9(\k`Ըԍ*7V9 2ZD۲J_hVp$>T"
ƛVFeG6hwLg0'چkQ#*	~ˤG8c l4
ݚVZ0Az_{󪝜ZT.}??1-ݾ`T5y\hdZZp30|`Y9%BDhE~?M!Akp.Pv<g)8AYRg"iD ?LfYxXԕl:3~0n7hX87ssVV<HCErzϷ-c-Acb$QWiW ¨$gL(^d[⨾NCDXr2Ԍ2WZLh#{)k7
X\!$1<)>ĝ&tF7v#+Iбw,Y7DMht*s䈠t΂TV\V.qFSmhXKAn~ft9ٔ	%>OQ&@sCw9-{,WP5q9NfݑAK'a<}PGr`)l/x
طXhTD%3a=U7^"K!QrCRP`rԂU(&Y#JQb
{Lux:O 72<a43T43qFvWJgS>s9Zˑ(2϶( V2?W7ȇDȀ%cCGfE< r+T1!A~w
Lu썔x#逥Tq^9
/9,G_B*0&r17N5RqpQrrz/X$zCwnV5~=Zsx F}3
ޕ7ZnGAduʪIMfǙ	:
e^i1>p*I pb͔!{wÛV0DOʮ͓f
 @V#A܏ (n5f!ƛ0S!uQ
v $chu2
K[
!NTCxqf6RǶ9r\hjăP،h7i-:jHw+oSrf.POyh4fKKfqr%_łSnZS3|h5։ksqGwݍS;~Ġ'q\ޞOgS!F^S9Kw㚲8 Z^v񬮇i[Db\4F(Qas-J1<"!/<ENe,ggd3cۮ/]o@+=Ąpؖl닷/$A	I0h*UewGL@:{J5x:[Ӟnҧ{NI	)/ݤw(r9
I$z0-enp5OHK#bƤxG*6UN0Hu>A{DkYݡ1ahI>@
UE%hGf^2{;niUj\W"+-v5p||U-?㙶DhI0i%&3ܙF(EYj;#
A*wУJ;K/28`/_=ӪB:FhY:eVj(KN 1cCG9S:]g2agzPewX7~2uB=7H%{ΟōKGGIn${ru4ߥƧBG8`G"HvT_md#'Pۺd^uzp`U\y
e d[,f?Eg|IM9q?n$"-f<PV2ش.ˍ<m4h\sL`^<c1@m5JRfKL;u9G䷒=^\qylO4HHXӷ/zBUGN<zr=[&LB!AAՆca nl@
h9_zb6(CjгNN?t548N`ԯa(@`A7Ļ!M1S+7y(?+x4x,ijCz
Vdb61hL0`Q!B4qcp%9EgԄEl0H3
ݟ {)oCA	bGJQ-9U;	; ZߨCEOo`t\0\P狉]2r#kDib0ꖲcC2 hװiؖP= H54ZC8j̎#똤+7#:gŷF*!z2Y7I%v |>i;;dfJS%րC	Ȟ/࿙"[>=ys0oscu`6KBhp_?ͮVzHo
C|"D1	^8.n4-:TCjtUظ:X%%C9,қ3
;FI[|yXJE_{sJ7T-EK[+R*,eiX!r3-0Y
FACCg^ZG"Y^<zfAaoh֌
g/6$L5I֠]@<^]y-"<mRWx<?fjDUC(5<kkT/d$sN5Kdwl@ts%HC
ɷwuoHʀs<.8jV9tz/rYR<֎1ʡO=}0;p"68/x Z.P_"=^ܧSdtBU4h@@8G<[$uã '?bzeʚeNz8`^tq_MRB&mtZd7#0nȰ{ؤ;T)A;I;9<9;״4?Ʌ$T}֙|
m
ѹz&ѕ^)SXrF!>6>A,w5j20jF|_M8UǿyNxmvӐξ{k?wƜn=FQꝣA0i${f
BgY*d>=xKnD«	ID Q1<uO?KKB)edC<:~	(LMg6gpL~O43iMrQ'g\bWdpˏ)4Tｇ|)A:ɲ9EBE+Ǎ0G%zQc"75k#}Xt1(+<KS?EEe$,>=HupY9is$k2QpwZOt=A8b`Ye5@
H]truag,hAG`ʮD
R(~ߏ֡;m& [Rktbqw`6~z}G]V(SuH#<g>}K<?{J
^ى;tlI3]QeGM""rW͊_I6U'diѬ|jLRMOJ<*"VN$&ֽV=(kfY&kDn.oBZp+u͛yN(D \Z2*_62`aOyqWWډ`ifdH7b4TMjmeYOMI<Q>hluզ=WTҬK/%
c׷.@XZ5WjLj#|n Mͬ
+M~탲2TFιVb=핶WK^NU6emc")WumEr%u볜_HQn"WwϻtǴHjB#Wx_%ˏ]"//)d+P%+p q,'>tx	Bs!fq)Loоa(e9.vi9,L&98BKy[jF`<+ϟN&Q:AMgɝ~CTc|*ۧξhG>]U^#n"frC6DkPmlW
<҄
{]We5#zپ\
Cb,hw8AE#a
/*a}b6.0e"f`8\D1e!cw'dƀMs~OjRӛQG2lU=vꭳ i|ˍ(C;*)O}9{Rrנ%CdJ+̀ޘ%fpN*u"ә.2fYl0/l&}!};&!V+oʛT;Xy$nźÙJa6s
qH
9K$az4<~ΌM6aFO^?hֿܖJqd0R$⽏ `24^
,aCLtL}ed`K/b[`'ܥ{|o`b7U?w7݇<:\vu}L: 0[qFcJ AynxmN#t6yďQ	11gוAJ;r0*wIH{OLEs	#<UZ	5熇?#j)]ecJ8OPWFkwtm(=&x!HKT!RL[ēX!`vHpMftwиB`3f\IE`3AVEkc䥕P"Jqe`U	1*׈3ƫYoiwzZPxdJ7۬ 9Lx~T"FզHcǐu9Ovԃv-?	lh D5K@ AM[fnߨ"fFlG([h;NWv	ojIIc9RƉ$L6E:/q :}LNvۦ

d1^75dmѨ5d}]|4z ^ C6)y3RPj	mW\0Pܳ:zbR
Ҋ!-3ǣunR@9Nˇ~>^a=ðR9sO4SW E=NS#Q^.u#XI22ڻ6mHqB뒬8G<9΋5avNdZ7鯹#Kd.'~QƄ}]wD}}V{dgQfic	۪s18s$#hp1'dcy-ݕߤ"ޮaPƋ&pn 7.
&=CR[(v#'T|̂:?.rC1	vdnp?d^Q\2UzAuwQײ[b ~SHX7@u 3/1ѿC
8^kN (E4NipxD*^Vx㖮xCoF(׉0+FS8`eE]=TC>vltJ8XG+SY:J!L;pqhZ)y"r1-D'wRh{
A@Ĳz(=KN@('&wP󲏙X2Ǟu)qZ[NKrq8pY|
tu@!R[Ux\y@5q
KJAzv.IsnGu1I}kvt|n4yjXz[z_._5j/,.^\" A?f'
8(J3
1|XKi)BJ%nP<QPrfS, |)}!}ޔcEcw
bv*uob*پ)fԩ4'q:&Uث{#Cpfİ,ɤFBDd|3;LIv4i[-{5'#\i gIH(g
R8gk݅*8H&lόvũhIE
#e%Enn#RюŚDNꄫR
@H i=ZԼ$Qp8t#oEIAD>%7Ԕ%UapYYIB@E;;Z!%Z!~Y 6DH\X }x
:Bޏ=t+`EwDJ;}CO#
mY&i@Msߴ$v&UxexC?2uH(ex09ܸ~L'yPٓaMscvuƻ~)ߤj>bC"\=G|oqC5%S5w)RE@;f~xHr	*# DiR
s`cٴ)0rT
,G|MxJϝT6(~7ױU0u` TQyn${u%
|-'r
76鳫g?>z{s}昹 Y*9-`S=4BAԳ؀q2F7VOpKK))'YؠRje\O@ibe8NqgT_>5.AXT溧J]<	RD*tXѪ vZ!\> 
.'[8A2|_YA'4jMӎf
q' gRICU:<w?Fmn'뱲3{VoZUg?D5h/_#GGas2i,'TZQc+EvKSRLlD`łfslx兒?g+P	=zȹ28DExPr,ȏKp V#PBpeS^@_,[hL0@Xy#U@H16y犬Q_@[goQU|i-
t-<	*	hX6fDG*zԹU,I/tE#5X)-"$\0ބ4[/BQc%kP)zO훟,pm&.1-QHθWbd6jQ=n[QyN`:E~_JyCb6vU(΍f`K);QON6dKuUڶ٣$xCvtJL
B"B0?o4QtF0u'.*HɕxNr[CZ wI
҃(%˯ߤÔ ȍ:q_Ym<5R 4-DqF^M+z_|C="<$bqn5`:ɛm-Yš"D_ KR;BttdC.9z'/A3˥2.I5]
YCGGIXp5tf"5μ/)*:WkEP颓yoh':_9aA?4굦 U9M[N`"bF
e1~B䅝Ǉ 4_ڍ"g"WS<QB|#xԗPFI Pq
[%M7\;jU}5%CgTwE_9poB>'ׄ?8#C2=5[obdiL3rl9'}uf
9%<&\E|kƜmǼ7GQtϘ~95i
N9ikll6Kigu)/ˌ'CӟO/<1ͱ(0}hjo!x5`%G~vLFH/*C"[;*7N&/s"3%ށ%{d
RԱ$1MK{G_\bN,%MQ.Mm/Ke*bl`I
a7Xm|PJS&oA2
Xͷ
ҤOA<V]DC4Iw` qP|=ѾLR	H{1s\X}
qa)lq!'/.^LY~lG͎$
0X{6ΓtE.KdȮWI#RK, wӷW/߽<}{eƥb=Hg;ts8lzmDgp*	רJ%j.(Y^mn0z05܃F1&aG!-+U]?X+on[})cEQ(B ^3~+Y?-PAzdi4Xs`h{Cc`\RtuIA-ʌ_DŃU/,Cȝ{8y+DNQ)x/ZӺUhD#ͧ':ʾ2 N}8B-<]g LvQ\)'QEsôJJCr]"3+M{^
`d 𜮮ԓbJ|1
ZG4HIUqNgP>8m]I`Zy/u]K*3FG?~~5!n.P	xm˨r]>ɫ3I̉|֜eh]ğXG}?_{f&eL'ypev 5j{FmJ:Q:s)+<X7)bUI1
̶^:h2b0kz殿j̆`{+xil`sny;Jxey,)6Mمď޻'y}!ٻONGhJܜ;h${b[juHmTޔ36#z<ݥw~ߧ痧'w5cl%<]
CO
甍ix|^HIjXJC"e撤7
)hSeQ3,o~mtu$FsB}NhVi9saк?!R81[%
`n
5UWP#9DDF\SvS!Ξ?7J2?*yjؒ-0.GyH(7i`0t-zG_;0d@~..IDlO0'Y7kA"
Ve/R~XeǢuR6KB4+-I-KpI~Dj:s(d֏|U0S;J
;^{佛NmƄğ/:7_b#}.e
w@+>VsNSÔnxu>p$/Q*9&_q_pRKƔg66
85QlZWAᬨ Ì$]!Fãdri*CA`9iaurEfb1*bKQ92+跔;AT[MN1G'>}d%*lUw%c~acЅfqC;8QT;?4Z?)ww/DSSb+9@b
jbh
M@=*'씭DJX+C.0=,'Eɘ[33R4A3[qM]KY?)%X-2X9CO!s%2`ki/gX[	9#̜6E-N>V@=xxyr
%awzL'EmE+x""-Dfz̯4]_{^_u&`p=ޏ`DӿԞԔBVvy;ЗNXzp
Ds$CJ Bc.pN`1?&(D0k(ݪvîwoF_VWTȫCLyvP{j^xM9JjerPwv9 &-}иs,tf=ug4>c\z\ZTXwA%mNQ/?;5xE<YgEd>;w;b;G=ۆ_bQ9NJ_jWNsoˋlj>t)%a1ƘLn2GaaTGc7L/A~%T(cOJp@1PDTNǑꚷc"4_cSJrK{JFՄΖeL5EZR-6!Rܣ+D:Yѩ!\98)Sm.EgfzzU%- ;"%]ø~yl'/CeՁ\V%>[GCG}k~˻nA.? 4Z@
>CEĲ<Q"HDix^űݠX
6^
(C]R1X7
6dHy&Sr^@eT\-Qql#_N&RN%#7vk
)(ZFpRUEib%dBIRSgׇSr	ـǘ>0[6
rB?6J1%ޕ+8vQirI6:.SIPMZR8VǻHVFA?v{O\5,QS'!W63S<iqD'8CPcWW/_={~u.^R8PV1}{;̱+fpǳ(Y|-=9~o';TS vd7ڬсpT9AG
',Zy;LkQ[o̃:E~:(ɡw'U?"iHIia >RFtTKH=ч^_4AQoP5C\U~hLخ@ 8	ױ7$+:tV<ZptMܢF.&z$x{L"tY8ٚxNmVyH;а:aYJn45ێGFc^:2Q= 0bjbbS7EU%q)?pm~3&nûi~
 *%#\x	2
Ę;1TT971zCRmTO:%kVS65RЭ^V͆ϳLNs
\t6Ni݊Ru:ϟp1ZոIDEWə)781,,c\*I-QtR(&{gD5OZl}fRڝHq 9P1#.D??voa(J~@TcEjqa<Ld:`a6}暈Qhe~)/-`	^M!ҭ8<kx;!HJ<)
r=iݢaJBrTԙe"|{S8@4u(/|ѾeZ)i&9x"s>tf^Exē`s}`%߳7 {=~<,S8}-R	ker$qjvKkB6Xfd2ڇ!dZ=#xVv.u%x~FȠ,afa`pZOdO
`ށSIyYu#*I2!h.;=n )$,?/)#,A 3cQhecűԉH>-iJfSBtp5bE[>b6+MHN>8
U]X'_?1˦bLny=ɏbſU2B4Lo1g?5̠"2YLNQqrdN%wA/+At:?wYQbq"I\ߐi97ֺ*	ȎlP:ZlLBR˜29|:aWE븬qψH:iy!gwO>wF3Kԯɡ1[5+?c U^LdTbl<}v`WYQ8d\{XDr.4@cs7ŗzA[7
CoY+'gָ[y.>gHt2#֪Xl=,,t6Z%K?OuzG6R鸲MrAYͺ]zB#	p[ICyDox\'UPL]kz>'B
֡a3.?fA(:-(ߞ[]y&uvB?G#)mMQAadM0jM0Ho|IyӥK
e^J*y3O)Q̈R[W̰?crWkOwS ()i3uBX	*Uy9#IY.Vp2EJH5BSvñw-|^ Tg
U6\.48D#5/(-
1\KNm<qal$db-+ό|&\ QjH {N2hƛvm	ߴoηC)n]2
<˖~:rHM!+"s)9	P^ԝ9xHu"Cg2SmKdU3,KF┧Kq.Ƥ/_8zY?jyN?bYS"8T!zh7uѭs1
A2~l4˥ZGت Cfq?{΍;ʰ+hШRYaYzK*pziT	VtS<p
bVkOXޕ.^^4)2V*!6\yKue*7Xoolݗo۴2oN$)696UL4^KR\#z\J|`+"t4wn*$V_}΂v
jx"ӿsBGL&`o qRk܂2O H	\@
XJ9]NԵBtj%#I'ƉqaK0<]7v&l",Ah>DXf\4p7sH٤2R.D(7F<ةu=d\8,VmJmExA=7QvRIv?*%QEEJnH3ACQ3umqG¨T3-JnQ,/몹^E~Yȃ:&No%ĸ%(wLyT2%(o98 v!;7nwd<3
SlnI9_b~P:+2j
U¹$nm`mT$x4ȷy$Ļ(ŇҲOyS)'6\-.l8w4eczVVtXg/Ԕ[m\{-/cj8&O'?`wsDKdGꇻNP"Xޓڐ:\-fVR2w}~iđ2<7P ,f
vy{Zna᭜Mh_JK`gfe2G'9}5?F27GZ;1g苨-ϠWM'.zK : BbH|K8#
5XR7AlxoL2-Qosir1Pt8|윹y
МxߝOFFY= 11Y&r^DOAsk	K kG|m&O,z~7P W0umjmj
{Wkիu:H9کt/:^4p@
|Yv+\@n]h︖ʰӉX
h.Sx,O&CތQEaA+jTj`!~!!;ZѨChø7ώ-Z8`zÈftI=S]>1K-uVKs_Zʰ)&9183nu:W}we% \i@d1N"n\VlEFX^c.6N9z޼9}{r^^<0CeHDA.n
lRa1 YR
E.Ckf%+[                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Zmsl
˕R$eo쭔M^im%]'΀$d!Mt=
%Rw[F_~1[WM_L}GGjfԟ]Jٸ
kT[or6sMcf76)
]Z2^SS>nmTn-v}e[-Qn|hlֺH](h"sW붱^ֶn*lm#|[׍exnOjUXR-!W1KNr[ӽC}Emnb
I8&bJ©U^}vmښσNF2jmXT^d<0gTe
k$դ<10|:P!.TnB7_qz®6SE&ڷЭ
uIX5z).NA?|R޸&!~0

kBW%FmPK$@' ne7F(FmP1Z9(4S1mo\Cٳgj|ɝJ+CtVlR$qDb6X0f+x@Ym	Ζ,g(3<B!J}/>78`UX]5!bܒĈ-t 6X3d˚oփl%Wjy:I@"`8~MCQ7ncsX73
AdDhkڨ)fJxOATe[ekPu\5D"B (|0Wog'UK碯|rBg@\>ƫ-lSlM)	4K22'CtɁ<:ؘͮt-0QTC׌2a	
vIaGnG
>^ڵ󞲔Í
$[CJV	
[y" RiǕ0e!`AAekA+ϣEх:,NҔ?S:OXm*
 Ycj]y
T ,[P^6@%ʦ؏6ЭT@f#G{AKbJD?.VlnKJG\",fݓ
\1*I(U=!4H\6![wMmݙAJ! >nLeRpΐ֓I۸0S6.o3h,wd"tOf?OA4r
j=]nd (Kc%)ћ/>Niuv>;܃;H0ǰ!025ZÚꤓ?+ $(ҡ{Pd^`_^()4ȇ!,՛}[wf  vhM&@jdm+,ZWQrT;&b|LR)5t1Yie8-T~:v
cS1c8*貮ٝEh,5LVN@%L	@:ivF![!\g̑_j]I	!ĊE]O(4({Z	ߠZ-T^޿0{{>fhQ`u
i$}A6'yŲ*5)ɦnIv5xz%G\p
0#Gjm9,]ҿ0vq|]W7f3%
:s^uӓ>0˩Wq̨;In%bKo6iKdygFpHڠ4 Wڃmj6;}7l>;9H$s[ȱqsXs؎L@EI(w(0|1*eBR3ڭ!4;ǐ^@$ d6Q	QK
QPTbSV PX'Dfzfmf#u	/E)-%ZbIh;sfH}Mr|DX>AbA|ȶA=v9z@˃@JVc_jK@i*'AwZgR]UKfkGQ
0"3!D:">c
L,oon^ya[`PکkV|ut{d7oogWW*H6-_^VI:2"C?a{t)SELXdeJ	NDԂߓ[YouCgJ*uWmW2 /&WtwqU̪\Ф6H)V@{䟧^zzF3NЇm7~&uc=P ("`eҐ	GOxXYik-WĐ`7w7-D
wW#qt_I$]}hxDRgN˫Zػ;|vvu@![F㽞
B@2LY%< rdsyUA{z֒ D9b)bKg#̞~R~x2Gx?fV/iO3n7ިb(Go.2ˋ7ۿLq1STj6"F^e~$qy2F6]0cut-@nuQ-LLF
reD3M"rDAےa9A
C"tpvlQ/:,:RkIS<N`T%v4(ܣ퍸T̅l%ny\8d%
baDhj[q<I僩8m%tdgHveeOJw!`||uVsYyF 
vb8IؙD:ѩQ( h<%ĢQ̒ѭT.ȜO3ʝ72{DY
\sSw=ڞ+2L2
 M1@HJ#Oɥ_mmsu5]/
Fj~ȭL
'j
BWǾH"5G->8j$\[e6x9r*yuqp0(
Uσo	,9PJ~In^o//?	Ι76|ޡs9uC1>H0mIs
42&(;S ~Eps%cEk*׆#I(ejcvɺfo|C)sK_՚Gq4/|=owRs1Rނ	ɓ&
IzQ iEE<M0n85Y$VS!DCœ>&`,J|>C|ZLuCS:迸qcfY"	30ya-+9Kς
{V.#+jZ@Gh#J01gc51/Wʲ+px\ =b89({o/5ai(kȇl`K!Q÷&u|3x2<%t5{nufE5Nm3hO :e	
K|"puoF.TLР-?QCn W;č5֓U~s5ݜyP^g5^OuK<=A:g<WI
1i%hţ?dCu@> fNa|,KȏՃFrAs$<V]ytKD4)vC;M^KbmM%(fRz&[702ߙexȝ 0dnyЈ/~B襚dk OGӸb7짦Jtb4ڟ<yh	}cb	3D;õ1KY4Nh6Fa]U7L"o~L{&繚mC\X9O4hXNK_Fck0l^FW)'oE?=II7f%q+=&yڥzwDkv]\⠧csnten' >/aR$*B~g
Z~xjߚ6{#ۿ)M|zߢ[&                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Contact: Geoff Kuenning <geoff@cs.hmc.edu>
Source: https://www.cs.hmc.edu/~geoff/ispell.html

Files: *
Copyright:
 (C) 1983 Pace Willisson
 (C) 1987, 1988, 1990-1995, 1999 Geoff Kuenning, Claremont, CA.
 (C) 2001, 2002, 2005, 2015, 2020 Geoff Kuenning, Claremont, CA.
License: Ispell
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 .
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above
    copyright notice, this list of conditions and the following
    disclaimer in the documentation and/or other materials provided
    with the distribution.
 3. All modifications to the source code must be clearly marked as
    such.  Binary redistributions based on modified source code
    must be clearly marked as modified versions in the documentation
    and/or other materials provided with the distribution.
 4. The code that causes the 'ispell -v' command to display a
    prominent link to the official ispell Web site may not be
    removed.
 5. The name of Geoff Kuenning may not be used to endorse or promote
    products derived from this software without specific prior
    written permission.
 .
 THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS ``AS
 IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL GEOFF
 KUENNING OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED

Files: debian/*
Copyright:
 (C) 1995 Kenneth MacDonald <K.MacDonald@ed.ac.uk>
 (C) 1997 Fabrizio Polacco <fpolacco@debian.org>
 (C) 1997 Martin Mitchell <martin@debian.org>
 (C) 1998 Stefan Bjornelund <stefanb@debian.org>
 (C) 1999 Vincent Renardias <vincent@waw.com>
 (C) 1999 Mark Brown <broonie@debian.org>
 (C) 1999-2004 David Coe <davidc@debian.org>
 (C) 2001, 2002, 2009 Agustin Martin Domingo <agmartin@debian.org>
 (C) 2002 Tollef Fog Heen <tfheen@debian.org>
 (C) 2006 Steinar H. Gunderson <sesse@debian.org>
 (C) 2006 Roland Rosenfeld <roland@debian.org>
 (C) 2006 Martin Michlmayr <tbm@cyrius.com>
 (C) 2007 Thijs Kinkhorst <thijs@debian.org>
 (C) 2009 Daniel Baumann <daniel@debian.org>
 (C) 2009 David Paleino <dapal@debian.org>
 (C) 2011-2022 Robert Luberda <robert@debian.org>
License: Expat
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the
 "Software"), to deal in the Software without restriction, including
 without limitation the rights to use, copy, modify, merge, publish,
 distribute, sublicense, and/or sell copies of the Software, and to
 permit persons to whom the Software is furnished to do so, subject to
 the following conditions:
 .
 The above copyright notice and this permission notice shall be
 included in all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
                                                                                                   /.
/usr
/usr/lib
/usr/lib/ispell
/usr/lib/ispell/english.aff
/usr/share
/usr/share/doc
/usr/share/doc/ienglish-common
/usr/share/doc/ienglish-common/NEWS.Debian.gz
/usr/share/doc/ienglish-common/changelog.Debian.gz
/usr/share/doc/ienglish-common/changelog.gz
/usr/share/doc/ienglish-common/copyright
/usr/share/ispell
/usr/share/ispell/english.aff
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Package: ienglish-common
Status: install reinstreq unpacked
Priority: optional
Section: text
Installed-Size: 68
Maintainer: Robert Luberda <robert@debian.org>
Architecture: all
Multi-Arch: foreign
Source: ispell
Version: 3.4.05-1
Depends: ispell (>= 3.4.05)
Recommends: iamerican | iamerican-small | iamerican-large | iamerican-huge | iamerican-insane | ibritish | ibritish-small | ibritish-large | ibritish-huge | ibritish-insane
Description: Common files for British and American ispell dictionaries
 This package provides common files and dependencies for all American and
 British ispell dictionary packages. The package is useless if none of the
 dictionaries is also installed.
Homepage: https://www.cs.hmc.edu/~geoff/ispell.html
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Package: ienglish-common
Status: install ok unpacked
Priority: optional
Section: text
Installed-Size: 68
Maintainer: Robert Luberda <robert@debian.org>
Architecture: all
Multi-Arch: foreign
Source: ispell
Version: 3.4.05-1
Depends: ispell (>= 3.4.05)
Recommends: iamerican | iamerican-small | iamerican-large | iamerican-huge | iamerican-insane | ibritish | ibritish-small | ibritish-large | ibritish-huge | ibritish-insane
Description: Common files for British and American ispell dictionaries
 This package provides common files and dependencies for all American and
 British ispell dictionary packages. The package is useless if none of the
 dictionaries is also installed.
Homepage: https://www.cs.hmc.edu/~geoff/ispell.html
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       #!/bin/sh
set -e
# Automatically added by dh_installdebconf/13.6
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
	. /usr/share/debconf/confmodule
	db_purge
fi
# End automatically added section
# Automatically added by installdeb-ispell/UNDECLARED
dico_class="ispell"
dico_varlib_remove="american.compat american.remove american.hash"
dico_varlib_rmfiles="american.remove"

case "$1" in abort-install|remove)
	if [ -d "/var/lib/$dico_class" ]; then
	    ( cd "/var/lib/$dico_class" &&
		for rmfile in $dico_varlib_rmfiles; do
		    for i in $(grep -s -e ^/usr/lib/$class -e ^/var/lib/$class "$rmfile"); do
			if [ -e "$i" ]; then
			    if [ -d "$i" ]; then
			        rmdir --ignore-fail-on-non-empty "$i"
			    else
			        rm -f "$i"
			    fi
			else
			    echo "Ignoring already removed file \"$i\"." >&2
			fi
		    done
		done
		rm -f $dico_varlib_remove )
	    if ! dpkg-query -S "/var/lib/$dico_class"  > /dev/null 2>&1; then
		rmdir --ignore-fail-on-non-empty "/var/lib/$dico_class"
	    fi
	fi
esac
# End automatically added section
# Automatically added by installdeb-ispell/UNDECLARED
rmscript="remove-default-ispell"

case "$1" in abort-install|remove)
	if command -v $rmscript >/dev/null; then
	    $rmscript iamerican
	else
	    echo "Warning: $rmscript not present or executable." >&2
	fi

        # Remove shared question stuff on package removal, not only on purge
	if [ -e /usr/share/debconf/confmodule ]; then
	    . /usr/share/debconf/confmodule
	    db_purge
	fi
esac
# End automatically added section
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Template: shared/packages-ispell
Type: text
Description: Do not translate, for internal use.
 Intended to get a list of owners of this shared template.

Template: iamerican/languages
Type: text
Default: american (American English)
Description: Do not translate, for internal use.
 Intended to contain a list of language keys provided by this
 package. These are the internal untranslated keys.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      89ab91fec2b9b38cc125632c8d6e2c01  usr/share/ispell/american.med+.mwl.gz
1591172a4cb039273568afce3a9bd93f  var/lib/dictionaries-common/ispell/iamerican
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         #!/bin/sh
set -e
# Automatically added by installdeb-ispell/UNDECLARED
. /usr/share/debconf/confmodule
SCRIPT="update-default-ispell"

if [ "$1" = "configure" ] ; then
    if command -v $SCRIPT >/dev/null; then
	$SCRIPT  --rebuild
    else
	echo "Error: $SCRIPT not present or executable. Missing dependency on dictionaries-common?" >&2
	exit 1
    fi
fi
# End automatically added section
# Automatically added by installdeb-ispell/UNDECLARED
dico_class="ispell"
dico_vardir="/var/lib/$dico_class"
dico_compat="american.compat"

mkdir -p "$dico_vardir"
for i in $dico_compat; do
    >"/var/lib/$dico_class/$i"
done
# End automatically added section
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       #!/usr/bin/perl -w
use Debconf::Client::ConfModule q(:all);

version ('2.0');

my $class  = "ispell";
my $script = "/usr/share/dictionaries-common/dc-debconf-select.pl";

if ( -e $script ){
    require $script;
    dc_debconf_select($class);
}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Package: iamerican
Source: ispell
Version: 3.4.05-1
Architecture: all
Maintainer: Robert Luberda <robert@debian.org>
Installed-Size: 209
Depends: ienglish-common (= 3.4.05-1), dictionaries-common (>= 1.23~), ispell, debconf (>= 0.5) | debconf-2.0
Suggests: wamerican
Provides: ispell-dictionary
Section: text
Priority: optional
Homepage: https://www.cs.hmc.edu/~geoff/ispell.html
Description: American English dictionary for ispell (standard version)
 This package provides the standard, medium-sized American English dictionary,
 based on the americanmed+ dictionary supplied with the source for ispell,
 with additional words added from the more comprehensive wamerican word
 list package.
 .
 There are also -small, -large, -huge, and -insane versions of this dictionary,
 and there are ibritish* packages as well.
 .
 The package also suggests wamerican because ispell's (L)ookup command
 needs a word list.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                #!/bin/sh
set -e
# Automatically added by installdeb-ispell/UNDECLARED
dico_class="ispell"
dico_compat="american.compat"

[ -d "/var/lib/$dico_class" ] || mkdir -p "/var/lib/$dico_class"

for i in $dico_compat; do
    >"/var/lib/$dico_class/$i"
done
# End automatically added section
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Package: iamerican
Status: install reinstreq half-installed
Priority: optional
Section: text
Architecture: all
Version: 3.4.05-1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Language:         american (American English)
Hash-Name:        american
Emacsen-Name:     american
Casechars:        [A-Za-z]
Not-Casechars:    [^A-Za-z]
Otherchars:       [']
Many-Otherchars:
Additionalchars:
Ispell-Args:      -B -d american
Extended-Character-Mode:
Coding-System:    utf-8
Auto-Compat:      american
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                /.
/usr
/usr/lib
/usr/lib/ispell
/usr/share
/usr/share/doc
/usr/share/ispell
/usr/share/ispell/american.med+.mwl.gz
/var
/var/lib
/var/lib/dictionaries-common
/var/lib/dictionaries-common/ispell
/var/lib/dictionaries-common/ispell/iamerican
/usr/lib/ispell/american.aff
/usr/share/doc/iamerican
/usr/share/ispell/american.mwl.gz
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Package: iamerican
Status: install reinstreq unpacked
Priority: optional
Section: text
Installed-Size: 209
Maintainer: Robert Luberda <robert@debian.org>
Architecture: all
Source: ispell
Version: 3.4.05-1
Provides: ispell-dictionary
Depends: ienglish-common (= 3.4.05-1), dictionaries-common (>= 1.23~), ispell, debconf (>= 0.5) | debconf-2.0
Suggests: wamerican
Description: American English dictionary for ispell (standard version)
 This package provides the standard, medium-sized American English dictionary,
 based on the americanmed+ dictionary supplied with the source for ispell,
 with additional words added from the more comprehensive wamerican word
 list package.
 .
 There are also -small, -large, -huge, and -insane versions of this dictionary,
 and there are ibritish* packages as well.
 .
 The package also suggests wamerican because ispell's (L)ookup command
 needs a word list.
Homepage: https://www.cs.hmc.edu/~geoff/ispell.html
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Package: iamerican
Status: install ok unpacked
Priority: optional
Section: text
Installed-Size: 209
Maintainer: Robert Luberda <robert@debian.org>
Architecture: all
Source: ispell
Version: 3.4.05-1
Provides: ispell-dictionary
Depends: ienglish-common (= 3.4.05-1), dictionaries-common (>= 1.23~), ispell, debconf (>= 0.5) | debconf-2.0
Suggests: wamerican
Description: American English dictionary for ispell (standard version)
 This package provides the standard, medium-sized American English dictionary,
 based on the americanmed+ dictionary supplied with the source for ispell,
 with additional words added from the more comprehensive wamerican word
 list package.
 .
 There are also -small, -large, -huge, and -insane versions of this dictionary,
 and there are ibritish* packages as well.
 .
 The package also suggests wamerican because ispell's (L)ookup command
 needs a word list.
Homepage: https://www.cs.hmc.edu/~geoff/ispell.html
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    #!/bin/sh
set -e
# Automatically added by dh_installdebconf/13.6
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
	. /usr/share/debconf/confmodule
	db_purge
fi
# End automatically added section
# Automatically added by installdeb-ispell/UNDECLARED
dico_class="ispell"
dico_varlib_remove="british.compat british.remove british.hash"
dico_varlib_rmfiles="british.remove"

case "$1" in abort-install|remove)
	if [ -d "/var/lib/$dico_class" ]; then
	    ( cd "/var/lib/$dico_class" &&
		for rmfile in $dico_varlib_rmfiles; do
		    for i in $(grep -s -e ^/usr/lib/$class -e ^/var/lib/$class "$rmfile"); do
			if [ -e "$i" ]; then
			    if [ -d "$i" ]; then
			        rmdir --ignore-fail-on-non-empty "$i"
			    else
			        rm -f "$i"
			    fi
			else
			    echo "Ignoring already removed file \"$i\"." >&2
			fi
		    done
		done
		rm -f $dico_varlib_remove )
	    if ! dpkg-query -S "/var/lib/$dico_class"  > /dev/null 2>&1; then
		rmdir --ignore-fail-on-non-empty "/var/lib/$dico_class"
	    fi
	fi
esac
# End automatically added section
# Automatically added by installdeb-ispell/UNDECLARED
rmscript="remove-default-ispell"

case "$1" in abort-install|remove)
	if command -v $rmscript >/dev/null; then
	    $rmscript ibritish
	else
	    echo "Warning: $rmscript not present or executable." >&2
	fi

        # Remove shared question stuff on package removal, not only on purge
	if [ -e /usr/share/debconf/confmodule ]; then
	    . /usr/share/debconf/confmodule
	    db_purge
	fi
esac
# End automatically added section
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Template: shared/packages-ispell
Type: text
Description: Do not translate, for internal use.
 Intended to get a list of owners of this shared template.

Template: ibritish/languages
Type: text
Default: british (British English)
Description: Do not translate, for internal use.
 Intended to contain a list of language keys provided by this
 package. These are the internal untranslated keys.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         4f998e575b8b87e3eef8fd5e7d4e75b0  usr/share/ispell/british.med+.mwl.gz
7ec2d952b1ad3e864b6ee9029aaabbcd  var/lib/dictionaries-common/ispell/ibritish
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           #!/bin/sh
set -e
# Automatically added by installdeb-ispell/UNDECLARED
. /usr/share/debconf/confmodule
SCRIPT="update-default-ispell"

if [ "$1" = "configure" ] ; then
    if command -v $SCRIPT >/dev/null; then
	$SCRIPT  --rebuild
    else
	echo "Error: $SCRIPT not present or executable. Missing dependency on dictionaries-common?" >&2
	exit 1
    fi
fi
# End automatically added section
# Automatically added by installdeb-ispell/UNDECLARED
dico_class="ispell"
dico_vardir="/var/lib/$dico_class"
dico_compat="british.compat"

mkdir -p "$dico_vardir"
for i in $dico_compat; do
    >"/var/lib/$dico_class/$i"
done
# End automatically added section
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        #!/usr/bin/perl -w
use Debconf::Client::ConfModule q(:all);

version ('2.0');

my $class  = "ispell";
my $script = "/usr/share/dictionaries-common/dc-debconf-select.pl";

if ( -e $script ){
    require $script;
    dc_debconf_select($class);
}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Package: ibritish
Source: ispell
Version: 3.4.05-1
Architecture: all
Maintainer: Robert Luberda <robert@debian.org>
Installed-Size: 209
Depends: ienglish-common (= 3.4.05-1), dictionaries-common (>= 1.23~), ispell, debconf (>= 0.5) | debconf-2.0
Suggests: wbritish
Provides: ispell-dictionary
Section: text
Priority: optional
Homepage: https://www.cs.hmc.edu/~geoff/ispell.html
Description: British English dictionary for ispell (standard version)
 This package provides the standard, medium-sized British English dictionary,
 based on the britishmed+ dictionary supplied with the source for ispell, with
 additional words added from the more comprehensive wbritish word list package.
 .
 There are also -small, -large, -huge, and -insane versions of this dictionary,
 and there are iamerican* packages as well.
 .
 The package also suggests wbritish because ispell's (L)ookup command
 needs a word list.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       #!/bin/sh
set -e
# Automatically added by installdeb-ispell/UNDECLARED
dico_class="ispell"
dico_compat="british.compat"

[ -d "/var/lib/$dico_class" ] || mkdir -p "/var/lib/$dico_class"

for i in $dico_compat; do
    >"/var/lib/$dico_class/$i"
done
# End automatically added section
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Package: ibritish
Status: install reinstreq half-installed
Priority: optional
Section: text
Architecture: all
Version: 3.4.05-1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Language:         british (British English)
Hash-Name:        british
Emacsen-Name:     british
Casechars:        [A-Za-z]
Not-Casechars:    [^A-Za-z]
Otherchars:       [']
Many-Otherchars:
Additionalchars:
Ispell-Args:      -B -d british
Extended-Character-Mode:
Coding-System:    utf-8
Auto-Compat:      british
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      /.
/usr
/usr/lib
/usr/lib/ispell
/usr/share
/usr/share/doc
/usr/share/ispell
/usr/share/ispell/british.med+.mwl.gz
/var
/var/lib
/var/lib/dictionaries-common
/var/lib/dictionaries-common/ispell
/var/lib/dictionaries-common/ispell/ibritish
/usr/lib/ispell/british.aff
/usr/share/doc/ibritish
/usr/share/ispell/british.mwl.gz
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Package: ibritish
Status: install reinstreq unpacked
Priority: optional
Section: text
Installed-Size: 209
Maintainer: Robert Luberda <robert@debian.org>
Architecture: all
Source: ispell
Version: 3.4.05-1
Provides: ispell-dictionary
Depends: ienglish-common (= 3.4.05-1), dictionaries-common (>= 1.23~), ispell, debconf (>= 0.5) | debconf-2.0
Suggests: wbritish
Description: British English dictionary for ispell (standard version)
 This package provides the standard, medium-sized British English dictionary,
 based on the britishmed+ dictionary supplied with the source for ispell, with
 additional words added from the more comprehensive wbritish word list package.
 .
 There are also -small, -large, -huge, and -insane versions of this dictionary,
 and there are iamerican* packages as well.
 .
 The package also suggests wbritish because ispell's (L)ookup command
 needs a word list.
Homepage: https://www.cs.hmc.edu/~geoff/ispell.html
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Package: ibritish
Status: install ok unpacked
Priority: optional
Section: text
Installed-Size: 209
Maintainer: Robert Luberda <robert@debian.org>
Architecture: all
Source: ispell
Version: 3.4.05-1
Provides: ispell-dictionary
Depends: ienglish-common (= 3.4.05-1), dictionaries-common (>= 1.23~), ispell, debconf (>= 0.5) | debconf-2.0
Suggests: wbritish
Description: British English dictionary for ispell (standard version)
 This package provides the standard, medium-sized British English dictionary,
 based on the britishmed+ dictionary supplied with the source for ispell, with
 additional words added from the more comprehensive wbritish word list package.
 .
 There are also -small, -large, -huge, and -insane versions of this dictionary,
 and there are iamerican* packages as well.
 .
 The package also suggests wbritish because ispell's (L)ookup command
 needs a word list.
Homepage: https://www.cs.hmc.edu/~geoff/ispell.html
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           57cd27201462416fb607ca2daaa6775d  usr/share/doc/iso-codes/CHANGELOG-PRE-4.0.md.gz
02f757642f82139e186c3d96a982033d  usr/share/doc/iso-codes/README.md.gz
c088e318f26ef050ab0fdc69c727c9de  usr/share/doc/iso-codes/TODO
03841cee5e84d211fbd92a8f1dceab28  usr/share/doc/iso-codes/changelog.Debian.gz
00be1e48f912e87e72398511d4d95e40  usr/share/doc/iso-codes/changelog.gz
a14c5ffad2ae1545d09905ea32587520  usr/share/doc/iso-codes/copyright
58ca117d7b1f54c981ae3a91be61cd7a  usr/share/iso-codes/json/iso_15924.json
e606bf70c68aa1c976a9913f9a518dc3  usr/share/iso-codes/json/iso_3166-1.json
c41d7ab24390513e632055c5e31632ce  usr/share/iso-codes/json/iso_3166-2.json
0960d396bd2c2cbe13e9049ea6c19674  usr/share/iso-codes/json/iso_3166-3.json
e5adbcbefb7871cf0e8e9adf2f08c759  usr/share/iso-codes/json/iso_4217.json
fc42d4c5823bbfbc012be1a542a715ee  usr/share/iso-codes/json/iso_639-2.json
fee34fa2c17582310bff6b93a6f7893d  usr/share/iso-codes/json/iso_639-3.json
6b5f7eaa676d315c8b4417d2650e72f5  usr/share/iso-codes/json/iso_639-5.json
b9e7c505621790f6f0b9e07ba0c99551  usr/share/iso-codes/json/schema-15924.json
196b6d027b185e639ca4511099a14d23  usr/share/iso-codes/json/schema-3166-1.json
c0e9b5ab3ed9835d813b5d20d9f45fe9  usr/share/iso-codes/json/schema-3166-2.json
31c5ee55a7a7197d1554402441cb6c69  usr/share/iso-codes/json/schema-3166-3.json
45ceaa4d49d46ae6d5e9c95fc8841f21  usr/share/iso-codes/json/schema-4217.json
83a4d09dd6d943577003ad99910ea82c  usr/share/iso-codes/json/schema-639-2.json
f14fc86d811dbaf0c9ae6f944cc82d3a  usr/share/iso-codes/json/schema-639-3.json
df2edc28f4e782013f9fe4ce33c2d1e2  usr/share/iso-codes/json/schema-639-5.json
b960b91d8ff9b37c41e9aac109131b39  usr/share/locale/ab/LC_MESSAGES/iso_3166-1.mo
350dbe627717926e49768ae31416c9f6  usr/share/locale/ab/LC_MESSAGES/iso_639-5.mo
136e614edb40f55f7c5abd2d1dc44602  usr/share/locale/ace/LC_MESSAGES/iso_3166-1.mo
64be542f9eba5bebdbdc182a7209a6ce  usr/share/locale/ach/LC_MESSAGES/iso_3166-1.mo
5c08fae5691c92be1055e816b19e8a57  usr/share/locale/af/LC_MESSAGES/iso_3166-1.mo
497861678533603ad103d5d96d367b20  usr/share/locale/af/LC_MESSAGES/iso_3166-3.mo
43e9bd8ddd96bb077edd632c95213165  usr/share/locale/af/LC_MESSAGES/iso_639-2.mo
8d90c322a8101cb2a82649a9014376a0  usr/share/locale/af/LC_MESSAGES/iso_639-3.mo
ff23f6cd19366d89e1d412ef1b2d254d  usr/share/locale/ak/LC_MESSAGES/iso_3166-1.mo
7c182c40d80a36252511997b1abbe25d  usr/share/locale/am/LC_MESSAGES/iso_3166-1.mo
a5ca220438a3466e1906b666de2c72d0  usr/share/locale/am/LC_MESSAGES/iso_3166-3.mo
f83858084eabdc3f2d2e8b939ec8ac03  usr/share/locale/am/LC_MESSAGES/iso_639-2.mo
293268bf59bb1567a14cdf2a9e9d3d6a  usr/share/locale/am/LC_MESSAGES/iso_639-3.mo
076cd88247de3dd4ddcbf4041f14275b  usr/share/locale/an/LC_MESSAGES/iso_3166-1.mo
23935d65dfaa2de40da0d3dd6bf70e1c  usr/share/locale/ar/LC_MESSAGES/iso_15924.mo
96dfc90cd5533954fe8d1551be1be37f  usr/share/locale/ar/LC_MESSAGES/iso_3166-1.mo
df9db331943bf0c9394ca5f454937433  usr/share/locale/ar/LC_MESSAGES/iso_3166-3.mo
a0490ac147e6f4d3106bfe7433889967  usr/share/locale/ar/LC_MESSAGES/iso_4217.mo
e94048854b8e5245f1682da35097f9cb  usr/share/locale/ar/LC_MESSAGES/iso_639-2.mo
435dc6aefd83a3b269203e19d5fd9452  usr/share/locale/ar/LC_MESSAGES/iso_639-3.mo
40405175e15cb5a47982c91436a49b1f  usr/share/locale/as/LC_MESSAGES/iso_3166-1.mo
cf9e3e71779fa179748759fe784aa0ee  usr/share/locale/as/LC_MESSAGES/iso_3166-3.mo
444b05910822bd77bfe969d822566278  usr/share/locale/as/LC_MESSAGES/iso_639-2.mo
a3d30facddce70bc5b3c0ab8f55a07eb  usr/share/locale/ast/LC_MESSAGES/iso_15924.mo
635592668b7f0c99fbab563488ed00e1  usr/share/locale/ast/LC_MESSAGES/iso_3166-1.mo
70df24440ae5fe7e23bfa062fafe18af  usr/share/locale/ast/LC_MESSAGES/iso_3166-2.mo
30e67c740b066da46ed0008b92a4ed60  usr/share/locale/ast/LC_MESSAGES/iso_3166-3.mo
cc4bd031076f43d8320651a458c7de24  usr/share/locale/ast/LC_MESSAGES/iso_4217.mo
13478146f5892d50086306f5942c85d6  usr/share/locale/ast/LC_MESSAGES/iso_639-2.mo
96bc2db103734a1923877380fafcd807  usr/share/locale/ast/LC_MESSAGES/iso_639-3.mo
811522fa07297228d5562d3b4f17523d  usr/share/locale/ast/LC_MESSAGES/iso_639-5.mo
f45abe0d3176d7fb98dea75f5a59f4b6  usr/share/locale/ay/LC_MESSAGES/iso_3166-1.mo
59a7b53840327621bfa026a622aa512a  usr/share/locale/az/LC_MESSAGES/iso_3166-1.mo
f1de1c515aec2a4024a8c85529a66baa  usr/share/locale/az/LC_MESSAGES/iso_3166-2.mo
cdd099f08e218745e59175114b166ad3  usr/share/locale/az/LC_MESSAGES/iso_3166-3.mo
8b4cba2610f7536b93492f0a0cee80e1  usr/share/locale/az/LC_MESSAGES/iso_639-2.mo
59e904e68a52f2c0af7237bb5f8d721a  usr/share/locale/az/LC_MESSAGES/iso_639-3.mo
72e69251bddefb4fef3c3fabe7577ccb  usr/share/locale/ba/LC_MESSAGES/iso_3166-1.mo
63a9cdee97c39f2fbccdbb7e596f592a  usr/share/locale/bar/LC_MESSAGES/iso_3166-1.mo
7144f2afc6ea84544f5099cf6d0d5fff  usr/share/locale/be/LC_MESSAGES/iso_15924.mo
e96c198894baf4ff740f9b1c9a17920e  usr/share/locale/be/LC_MESSAGES/iso_3166-1.mo
265db8bf420e086896a0b4bca7873f6a  usr/share/locale/be/LC_MESSAGES/iso_3166-2.mo
98802d713898666e89d9f1806a09d2ec  usr/share/locale/be/LC_MESSAGES/iso_3166-3.mo
01b1409616a3a5e9edc03af35039a5b3  usr/share/locale/be/LC_MESSAGES/iso_4217.mo
c7e0157d60a964a15f45958bf9dc0861  usr/share/locale/be/LC_MESSAGES/iso_639-2.mo
a50098dc7344e9b1e8dddcce8a076e98  usr/share/locale/be/LC_MESSAGES/iso_639-3.mo
8b588e45eb25bb8041caf8f11322b758  usr/share/locale/be/LC_MESSAGES/iso_639-5.mo
f01b76b57d21f9aa924012a0e17ba8f0  usr/share/locale/bg/LC_MESSAGES/iso_15924.mo
d57ff900dafc190dab038b5cd5256257  usr/share/locale/bg/LC_MESSAGES/iso_3166-1.mo
02e6238e899ea8bd7392e433558464ae  usr/share/locale/bg/LC_MESSAGES/iso_3166-2.mo
efb4f2078e9adf747fa60f227af70f1f  usr/share/locale/bg/LC_MESSAGES/iso_3166-3.mo
a9e0b7b0217249aa899feee4433b293a  usr/share/locale/bg/LC_MESSAGES/iso_639-2.mo
2b941067dccb9b569eb5893fdbfd22bf  usr/share/locale/bg/LC_MESSAGES/iso_639-3.mo
29ce07252bbb552e6118471c040d22b1  usr/share/locale/bi/LC_MESSAGES/iso_3166-1.mo
7f885067d2cd984b8835b7dea149b84a  usr/share/locale/bn/LC_MESSAGES/iso_3166-1.mo
d5538b057bc68def3bf28e3bb7255441  usr/share/locale/bn/LC_MESSAGES/iso_3166-3.mo
fe1bd1daf874fc2caf35bbd5d4f359bc  usr/share/locale/bn/LC_MESSAGES/iso_4217.mo
d55bf793893a528971bff557efff22b8  usr/share/locale/bn/LC_MESSAGES/iso_639-2.mo
4e0a9049356b4ac29c6c3959f23fd330  usr/share/locale/bn/LC_MESSAGES/iso_639-3.mo
d9ff6fbb9f989e3afef340fb832b2024  usr/share/locale/bn/LC_MESSAGES/iso_639-5.mo
3a55b1eb296b01074964f2a8a1cd1616  usr/share/locale/bn_BD/LC_MESSAGES/iso_15924.mo
590f76d70bff4f746fce86a71c3a9996  usr/share/locale/bn_BD/LC_MESSAGES/iso_3166-2.mo
ce7ddce1e16d33f5a4c914ac38b9211b  usr/share/locale/bn_BD/LC_MESSAGES/iso_639-2.mo
817c2372f58a11787fa2096b6f455762  usr/share/locale/bn_BD/LC_MESSAGES/iso_639-5.mo
e17bc204054bf942931f2044e5f437cf  usr/share/locale/bn_IN/LC_MESSAGES/iso_3166-1.mo
f9a2b5b554788f1eb82bb0e35a667383  usr/share/locale/bn_IN/LC_MESSAGES/iso_3166-3.mo
48cd9780450781bc862b61f2f802ae5e  usr/share/locale/br/LC_MESSAGES/iso_15924.mo
19660b85f115d0f2d03c763aaf5fee54  usr/share/locale/br/LC_MESSAGES/iso_3166-1.mo
764b31d2707ec0a846d19cb378037b54  usr/share/locale/br/LC_MESSAGES/iso_3166-3.mo
11524274029787f59776d0cbeaf460b5  usr/share/locale/br/LC_MESSAGES/iso_4217.mo
7929d45e9e0cda2fdb9a69b77d9ceead  usr/share/locale/br/LC_MESSAGES/iso_639-2.mo
78d4c7a3627aedc544caf10d73a596b9  usr/share/locale/br/LC_MESSAGES/iso_639-3.mo
d9128ef0be6343f6acfd815ebdabcd92  usr/share/locale/bs/LC_MESSAGES/iso_3166-1.mo
4af40b202622e150934ac662bdc0fd74  usr/share/locale/bs/LC_MESSAGES/iso_3166-2.mo
e55bdb1473e59b0f2182e8a7370ee39b  usr/share/locale/bs/LC_MESSAGES/iso_3166-3.mo
58e673fa2ffaced9cf4c169c05663fec  usr/share/locale/bs/LC_MESSAGES/iso_639-2.mo
1a0b9a12e1f51b94492cb88de5dea0ee  usr/share/locale/bs/LC_MESSAGES/iso_639-3.mo
ba3af0f8274254aa34f2c8c71b07fef9  usr/share/locale/byn/LC_MESSAGES/iso_3166-1.mo
8e65b8fb5ae1e6c9dc14e529a7be1173  usr/share/locale/byn/LC_MESSAGES/iso_3166-3.mo
5acf04c5e6572554551dae51548a25fd  usr/share/locale/byn/LC_MESSAGES/iso_639-2.mo
3564d55b70d576a9baca6927e22376e2  usr/share/locale/byn/LC_MESSAGES/iso_639-3.mo
ed78d3f85607bc72c7d2ad804f969f09  usr/share/locale/ca/LC_MESSAGES/iso_15924.mo
10f4a74b294ccb911a85c69e620138af  usr/share/locale/ca/LC_MESSAGES/iso_3166-1.mo
f94ad1069f6c9b4ee1db164d44f76a4c  usr/share/locale/ca/LC_MESSAGES/iso_3166-2.mo
62f4709293703ec953ade74e7dfd2c7d  usr/share/locale/ca/LC_MESSAGES/iso_3166-3.mo
4ccb5b1e7599b534ae9fbd68c1386879  usr/share/locale/ca/LC_MESSAGES/iso_4217.mo
951abe73d9e07c27c4960c0fe15d45da  usr/share/locale/ca/LC_MESSAGES/iso_639-2.mo
e9f07c5551652722084bb1774dcababf  usr/share/locale/ca/LC_MESSAGES/iso_639-3.mo
3ddda5720aab13aa130370c06fba9240  usr/share/locale/ce/LC_MESSAGES/iso_3166-1.mo
7495277c42b91c099277c537423f0c30  usr/share/locale/ch/LC_MESSAGES/iso_3166-1.mo
31ebb06c99924925059928ff84f3890d  usr/share/locale/chr/LC_MESSAGES/iso_3166-1.mo
8eab73f636bbaa8438798b7952d41bda  usr/share/locale/ckb/LC_MESSAGES/iso_3166-1.mo
022a4109c7932409b727c83c2bdf6a5c  usr/share/locale/crh/LC_MESSAGES/iso_3166-1.mo
5106647d66799660adb5a8c355b3b0a6  usr/share/locale/crh/LC_MESSAGES/iso_3166-2.mo
322eb120f5ece4fbfb4da3d0653d827d  usr/share/locale/crh/LC_MESSAGES/iso_3166-3.mo
ecf58cbf130d86349fd5093380165e60  usr/share/locale/crh/LC_MESSAGES/iso_639-2.mo
94b603095932221b9b1f642c4c73e0d5  usr/share/locale/crh/LC_MESSAGES/iso_639-3.mo
e36acc7079df1c94366e01f5e3287f3e  usr/share/locale/cs/LC_MESSAGES/iso_15924.mo
f5aec72fe1b277794b65dbc64ff13a6d  usr/share/locale/cs/LC_MESSAGES/iso_3166-1.mo
46dca636d02640d52a7a74df0fe0bba9  usr/share/locale/cs/LC_MESSAGES/iso_3166-2.mo
effad64583d1fd29d4c145b97928d65f  usr/share/locale/cs/LC_MESSAGES/iso_3166-3.mo
0b3b9df4b4e95b7ddc4ca9e0e1d2f944  usr/share/locale/cs/LC_MESSAGES/iso_4217.mo
44ad4cc350b62ff6fa4fe493fb8ede17  usr/share/locale/cs/LC_MESSAGES/iso_639-2.mo
4fabf2cc27b7cab827cf3e28dc60f25c  usr/share/locale/cs/LC_MESSAGES/iso_639-3.mo
4d43b0810f78e6feeae88c292f3e7761  usr/share/locale/cs/LC_MESSAGES/iso_639-5.mo
2dd36d1b83285dbc46f11a82a5d4be8e  usr/share/locale/csb/LC_MESSAGES/iso_3166-1.mo
d21bb77869863c307f19da2881e86e44  usr/share/locale/cv/LC_MESSAGES/iso_15924.mo
7d39e68537b00de0d1d6827f85a7cb43  usr/share/locale/cv/LC_MESSAGES/iso_3166-1.mo
a663ce16ca7c6e59813f6fe70802ada0  usr/share/locale/cy/LC_MESSAGES/iso_15924.mo
f3c7dcfcfe760847019cf002af73e547  usr/share/locale/cy/LC_MESSAGES/iso_3166-1.mo
0e06aa7213b2c95fe669ded28b8566fc  usr/share/locale/cy/LC_MESSAGES/iso_3166-2.mo
b5b939c2556755389d3f19c9daf66b54  usr/share/locale/cy/LC_MESSAGES/iso_3166-3.mo
cc5b08f4a55062a71cb830d5c8f5e82d  usr/share/locale/cy/LC_MESSAGES/iso_4217.mo
82bc96f7f24319f10a8c9069a6927e7b  usr/share/locale/cy/LC_MESSAGES/iso_639-2.mo
33674312445da079eb817d1726ba0dbe  usr/share/locale/cy/LC_MESSAGES/iso_639-3.mo
d90e6c6dd409c1e02a9d0a35b44d7275  usr/share/locale/cy/LC_MESSAGES/iso_639-5.mo
da646603aee0a76b2a683b7172cd9918  usr/share/locale/da/LC_MESSAGES/iso_15924.mo
5e2b60ec8a14bccf69e824dc4586817b  usr/share/locale/da/LC_MESSAGES/iso_3166-1.mo
6f9e83265754ca7119905fdcaea3c455  usr/share/locale/da/LC_MESSAGES/iso_3166-2.mo
040e3165db8298ef8743a97a5dbfea3d  usr/share/locale/da/LC_MESSAGES/iso_3166-3.mo
20bcdea65e82cabb809842b88be2a2e4  usr/share/locale/da/LC_MESSAGES/iso_4217.mo
b800d315a3d199ede0254614c3c94e2a  usr/share/locale/da/LC_MESSAGES/iso_639-2.mo
0d48230072a95b2a8623f1a43e62ef46  usr/share/locale/da/LC_MESSAGES/iso_639-3.mo
53e0b9942e7e8e727584813b9795e757  usr/share/locale/da/LC_MESSAGES/iso_639-5.mo
b7af7ece1e059585180bc11fe251d92d  usr/share/locale/de/LC_MESSAGES/iso_15924.mo
55e78511f0a1f8c3f03a44d116d63388  usr/share/locale/de/LC_MESSAGES/iso_3166-1.mo
257d3ce084abd22cefd0b28009339042  usr/share/locale/de/LC_MESSAGES/iso_3166-2.mo
e635636fbb13e30f40cd99e4793f336b  usr/share/locale/de/LC_MESSAGES/iso_3166-3.mo
cf63b965745477d0722fe650db621f69  usr/share/locale/de/LC_MESSAGES/iso_4217.mo
6bc038ca6e6d2c2d42196aed36092a16  usr/share/locale/de/LC_MESSAGES/iso_639-2.mo
1a85552e61aa4ddc48a52432163b508e  usr/share/locale/de/LC_MESSAGES/iso_639-3.mo
e964efa504df88d91091fff8026fe545  usr/share/locale/de/LC_MESSAGES/iso_639-5.mo
5bf64e5c11ed000501fd47f059978568  usr/share/locale/dv/LC_MESSAGES/iso_3166-1.mo
c9dcfcb40c4ad2d726fa67c8ddaea51a  usr/share/locale/dz/LC_MESSAGES/iso_3166-1.mo
06268bd328de4946808058d74630b672  usr/share/locale/dz/LC_MESSAGES/iso_3166-3.mo
03b5d626c7246a6bc9c3beb05c52455e  usr/share/locale/ee/LC_MESSAGES/iso_3166-1.mo
00a0f578f8909ecd85986b433bc4f9bc  usr/share/locale/el/LC_MESSAGES/iso_15924.mo
41d188eb7608303e6ae40b08aed97c82  usr/share/locale/el/LC_MESSAGES/iso_3166-1.mo
662885a55033271f17c913af48c1408b  usr/share/locale/el/LC_MESSAGES/iso_3166-2.mo
6dcee26e03a1f0628723844e0b64f27d  usr/share/locale/el/LC_MESSAGES/iso_3166-3.mo
ac4474a740e5719e45ea27ccc83c506c  usr/share/locale/el/LC_MESSAGES/iso_4217.mo
249768af0d95bdc562aa180f2feae6d4  usr/share/locale/el/LC_MESSAGES/iso_639-2.mo
493d1f518495d3600efee81359f6eaa7  usr/share/locale/el/LC_MESSAGES/iso_639-3.mo
63d38b8c9a49d63a9755f54a17117626  usr/share/locale/el/LC_MESSAGES/iso_639-5.mo
077d5556baf98c9652a96a7f324ef796  usr/share/locale/en/LC_MESSAGES/iso_3166-2.mo
de469946511a52688fb4acac0d5c82b1  usr/share/locale/eo/LC_MESSAGES/iso_15924.mo
0a61767256d6ceab64397e67adbf08a5  usr/share/locale/eo/LC_MESSAGES/iso_3166-1.mo
017f0aa9ea28e6ae1d821857720ec950  usr/share/locale/eo/LC_MESSAGES/iso_3166-2.mo
d3e3283f3230e2f0c1fc4ae57581d9e9  usr/share/locale/eo/LC_MESSAGES/iso_3166-3.mo
a76996d28b4dde95cecd34a36440b83d  usr/share/locale/eo/LC_MESSAGES/iso_4217.mo
769fab5b4400abb9b33a87a28bae8cfe  usr/share/locale/eo/LC_MESSAGES/iso_639-2.mo
256a7638cea3a79ee07fc04ac3caec1c  usr/share/locale/eo/LC_MESSAGES/iso_639-3.mo
49a84f1f3f48e98ec65183ee25cee637  usr/share/locale/eo/LC_MESSAGES/iso_639-5.mo
040fe69896a353d282e2ed68e3e94cf7  usr/share/locale/es/LC_MESSAGES/iso_15924.mo
30eb47147c04656ab2a5522e55c3790d  usr/share/locale/es/LC_MESSAGES/iso_3166-1.mo
66444f429119d166a7983049a58c7c18  usr/share/locale/es/LC_MESSAGES/iso_3166-2.mo
b3f526b94c7c2a748a7f578587b73963  usr/share/locale/es/LC_MESSAGES/iso_3166-3.mo
b0ddef46c6f5eb7815508d06a8203b7b  usr/share/locale/es/LC_MESSAGES/iso_4217.mo
75bfde5938895299159e1df28b5e8b3f  usr/share/locale/es/LC_MESSAGES/iso_639-2.mo
de16eb7d5db666367b8e1e8d32948a04  usr/share/locale/es/LC_MESSAGES/iso_639-3.mo
8dd768b26f2b3743bb151e3cb2ef4377  usr/share/locale/et/LC_MESSAGES/iso_15924.mo
7f8e0a125bb95c51d288405390181ecd  usr/share/locale/et/LC_MESSAGES/iso_3166-1.mo
29627c62cac6df4f8efd933bed69d90f  usr/share/locale/et/LC_MESSAGES/iso_3166-2.mo
3079661c68e2866f67fdc2dae690489e  usr/share/locale/et/LC_MESSAGES/iso_3166-3.mo
42020e0af1ddc16197d32f92c0d85465  usr/share/locale/et/LC_MESSAGES/iso_4217.mo
40912a738b6270b20c4252a6007e947c  usr/share/locale/et/LC_MESSAGES/iso_639-2.mo
694675f211dd8dac317b393dd655ca3a  usr/share/locale/et/LC_MESSAGES/iso_639-3.mo
1c8282671152a119a9fe18b9f0d1e63f  usr/share/locale/et/LC_MESSAGES/iso_639-5.mo
42d66fa82c873c860f0993b05ebe4968  usr/share/locale/eu/LC_MESSAGES/iso_15924.mo
58a100c72ae1fe9b580d619a956cf83c  usr/share/locale/eu/LC_MESSAGES/iso_3166-1.mo
ee22271c7698f68ad084b091c2742382  usr/share/locale/eu/LC_MESSAGES/iso_3166-2.mo
aada30bcefe8d3bc9f2025cac7ab3893  usr/share/locale/eu/LC_MESSAGES/iso_3166-3.mo
9aadb9b9c085251beabd25aef5e26ef2  usr/share/locale/eu/LC_MESSAGES/iso_4217.mo
d0a031b46a7e54ea1aecbca7d79d29fb  usr/share/locale/eu/LC_MESSAGES/iso_639-2.mo
7c91da36687f7ebb7966450e6aa7511c  usr/share/locale/eu/LC_MESSAGES/iso_639-3.mo
018122e5c660c5413969ee35c30fa644  usr/share/locale/fa/LC_MESSAGES/iso_15924.mo
a7ed9359a49b75c2a2f635554ff2ceb4  usr/share/locale/fa/LC_MESSAGES/iso_3166-1.mo
e0f8a23c46d3c418c62897a6328f7732  usr/share/locale/fa/LC_MESSAGES/iso_3166-2.mo
a8dfd9505700f0d78f6d81f158ecd870  usr/share/locale/fa/LC_MESSAGES/iso_3166-3.mo
53a2503885a8a4978c3d26f8bb2e0f78  usr/share/locale/fa/LC_MESSAGES/iso_639-2.mo
b11abc8ef555ed847eced925eb5cb315  usr/share/locale/fa/LC_MESSAGES/iso_639-3.mo
cba805c0f4f22d6ae56f95fb3597278e  usr/share/locale/ff/LC_MESSAGES/iso_3166-1.mo
4fc47c21df5961d83e911b6e7a05b3d6  usr/share/locale/fi/LC_MESSAGES/iso_15924.mo
e2fabd761540bf5e36d1b948d98055cd  usr/share/locale/fi/LC_MESSAGES/iso_3166-1.mo
88434cc7701c39e535bddf092cac2802  usr/share/locale/fi/LC_MESSAGES/iso_3166-2.mo
09308cb06c122ab2b73dbdab9b611c04  usr/share/locale/fi/LC_MESSAGES/iso_3166-3.mo
45c67c262253dda9347d176615d362a6  usr/share/locale/fi/LC_MESSAGES/iso_4217.mo
e783a5c1e2aaed900893dd3407fd6179  usr/share/locale/fi/LC_MESSAGES/iso_639-2.mo
08aab0c5698c608e8bebc8a2d267317c  usr/share/locale/fi/LC_MESSAGES/iso_639-3.mo
62bddd446c215440e3cf6cba216a9d0b  usr/share/locale/fil/LC_MESSAGES/iso_15924.mo
6af4e2feab3283ae9a23c7d001808311  usr/share/locale/fil/LC_MESSAGES/iso_3166-1.mo
f1ed61f0e0adc3f1f5aa72068c16ae1a  usr/share/locale/fil/LC_MESSAGES/iso_3166-2.mo
d17a60f47fc84ef91a5d00ef7c62b230  usr/share/locale/fo/LC_MESSAGES/iso_3166-1.mo
014952dc868ed6dd82b17ea8dd8aeb57  usr/share/locale/fo/LC_MESSAGES/iso_3166-3.mo
aa2a719b667542eca02ec6fbaa3e8faa  usr/share/locale/fr/LC_MESSAGES/iso_15924.mo
059dcfb48b9454b0658f8f39072c0034  usr/share/locale/fr/LC_MESSAGES/iso_3166-1.mo
e36c8897eb87b9b6c7bf453cdbcdef9c  usr/share/locale/fr/LC_MESSAGES/iso_3166-2.mo
381b3d0ff86a8af8c64050fe9fe1add1  usr/share/locale/fr/LC_MESSAGES/iso_3166-3.mo
32dc8d61243d0d10236a7337e0090565  usr/share/locale/fr/LC_MESSAGES/iso_4217.mo
d9266706695448b4019427b869d56821  usr/share/locale/fr/LC_MESSAGES/iso_639-2.mo
66d36e5b3aa448f95d162fed04c25be8  usr/share/locale/fr/LC_MESSAGES/iso_639-3.mo
a37f21c13f53aa04b777692e7a1db10d  usr/share/locale/fr/LC_MESSAGES/iso_639-5.mo
9fadb30674a661448b3ebd3392d860db  usr/share/locale/frp/LC_MESSAGES/iso_3166-1.mo
33e099be057537fe32832c84d909b934  usr/share/locale/fur/LC_MESSAGES/iso_3166-1.mo
6c85df4dee81feffcfa55246e83de124  usr/share/locale/fur/LC_MESSAGES/iso_3166-3.mo
ad291c400c1021615c716cbda6f5ca1a  usr/share/locale/fur/LC_MESSAGES/iso_639-2.mo
1c35597148b54b33696d86b3370a57ed  usr/share/locale/fur/LC_MESSAGES/iso_639-3.mo
8bc22af9bc44204ec937c16c56df7ca0  usr/share/locale/fur/LC_MESSAGES/iso_639-5.mo
0327bdc7ad3d796a2c18fcb25be53f3e  usr/share/locale/fy/LC_MESSAGES/iso_3166-1.mo
0b85f64b96fb4e68e23fc2af6216e3bf  usr/share/locale/ga/LC_MESSAGES/iso_3166-1.mo
abd75c9a131f5609f0b47ebb88cc9406  usr/share/locale/ga/LC_MESSAGES/iso_3166-2.mo
f1e1d9f25c7aaebf091fde4e26fb0a35  usr/share/locale/ga/LC_MESSAGES/iso_3166-3.mo
2084d83e7bab602207e62d3582b263db  usr/share/locale/ga/LC_MESSAGES/iso_4217.mo
e6c372325423ab6e54a1b508e3727bb8  usr/share/locale/ga/LC_MESSAGES/iso_639-2.mo
8fa90598bc96919b85d02c03d7785753  usr/share/locale/ga/LC_MESSAGES/iso_639-3.mo
e734425ef4e75f262ca2ceb13fd21f98  usr/share/locale/gez/LC_MESSAGES/iso_3166-1.mo
2f292856c0a4bc0d6e9eedb521db7cf6  usr/share/locale/gez/LC_MESSAGES/iso_3166-3.mo
2ce1b57e666cf2c81911484ecc13c091  usr/share/locale/gez/LC_MESSAGES/iso_639-2.mo
afcf97f6ab1379d39a3c7ee22ce7b42e  usr/share/locale/gez/LC_MESSAGES/iso_639-3.mo
225283c89e93310008e0746a1077ace4  usr/share/locale/gl/LC_MESSAGES/iso_15924.mo
a7fa02cd5a2ce36b38e4202c840e0606  usr/share/locale/gl/LC_MESSAGES/iso_3166-1.mo
b3d91a5c4cfbd76e5c605d0ae8fc5cc4  usr/share/locale/gl/LC_MESSAGES/iso_3166-3.mo
5eb87acf09c966e470d2e21bd15fa6ba  usr/share/locale/gl/LC_MESSAGES/iso_4217.mo
1988d6e99d4a4b3f2244c71be3fff521  usr/share/locale/gl/LC_MESSAGES/iso_639-2.mo
16fce63105a2aeb9e3f1e8d854977cc8  usr/share/locale/gl/LC_MESSAGES/iso_639-3.mo
bbe1c0cc95e8836bbdc5eec9cde56dcb  usr/share/locale/gn/LC_MESSAGES/iso_3166-1.mo
cd52232df976cb917d0560e644dd7d7a  usr/share/locale/gu/LC_MESSAGES/iso_3166-1.mo
2c68501a0fa1e6cfa235c84441ccfceb  usr/share/locale/gu/LC_MESSAGES/iso_3166-3.mo
4506562a4189e4dbfbfd25c3484bada2  usr/share/locale/gu/LC_MESSAGES/iso_639-2.mo
78932043142e9b9061bced1c50f2ebd8  usr/share/locale/gu/LC_MESSAGES/iso_639-3.mo
9be103e398a667cc448c5f8dc44289d1  usr/share/locale/gv/LC_MESSAGES/iso_3166-1.mo
7687a60b4acd432190f41a9980c5b778  usr/share/locale/ha/LC_MESSAGES/iso_3166-1.mo
106b7241f086065157c3e8635ad86d19  usr/share/locale/haw/LC_MESSAGES/iso_3166-1.mo
3e376888e8f4f58fbc8697ae9c7141d8  usr/share/locale/haw/LC_MESSAGES/iso_3166-3.mo
444da0855268f8da228805f3efa6ea98  usr/share/locale/he/LC_MESSAGES/iso_15924.mo
8e82a2b5ad2088552d2330c468aac40f  usr/share/locale/he/LC_MESSAGES/iso_3166-1.mo
1223adbf482d647c86de0aba4f225cf1  usr/share/locale/he/LC_MESSAGES/iso_3166-2.mo
d646deedd2e9c977ef19143037edfbae  usr/share/locale/he/LC_MESSAGES/iso_3166-3.mo
411918df7043a70a04bbbeb199774926  usr/share/locale/he/LC_MESSAGES/iso_639-2.mo
6f9390bc5af9841dd76cdb00c2597bb8  usr/share/locale/he/LC_MESSAGES/iso_639-3.mo
1b5213edee105dd96104fed7c5b53702  usr/share/locale/hi/LC_MESSAGES/iso_3166-1.mo
c03461094b65c1d4ddd191e17c4b1e44  usr/share/locale/hi/LC_MESSAGES/iso_3166-3.mo
a55bba652e0c1184cfd613eee85ec81c  usr/share/locale/hi/LC_MESSAGES/iso_639-2.mo
3e5f21de1bfedd6f802f37151d6d7a9c  usr/share/locale/hi/LC_MESSAGES/iso_639-3.mo
af1bfadb62a52dd5ae3772943d5d4ef2  usr/share/locale/hi/LC_MESSAGES/iso_639-5.mo
89e9d86bd3cfa0c0981b6c844c8da87c  usr/share/locale/hr/LC_MESSAGES/iso_15924.mo
91393e120bcfefd2180fd86233cddc3f  usr/share/locale/hr/LC_MESSAGES/iso_3166-1.mo
47909febbaacbf46faf6e2e1fb45c272  usr/share/locale/hr/LC_MESSAGES/iso_3166-2.mo
7d365e25b00bde0806347017da8adca2  usr/share/locale/hr/LC_MESSAGES/iso_3166-3.mo
ea8b4739cd3984add8ca6c0b3d898b94  usr/share/locale/hr/LC_MESSAGES/iso_4217.mo
b2785ce5600de0f03c9e58f5352aac28  usr/share/locale/hr/LC_MESSAGES/iso_639-2.mo
87c6bc9e741e01c821f8f6d5561cf6a1  usr/share/locale/hr/LC_MESSAGES/iso_639-3.mo
72b9e60644f43a48ce142a0347e0c00a  usr/share/locale/hr/LC_MESSAGES/iso_639-5.mo
f574affbcabddc89f2eed5e52d2fff4f  usr/share/locale/ht/LC_MESSAGES/iso_3166-1.mo
6ec6da61c3753eb202e203f1b56cdaa4  usr/share/locale/hu/LC_MESSAGES/iso_15924.mo
e501c01956ef3c86aecb2da9ed405c88  usr/share/locale/hu/LC_MESSAGES/iso_3166-1.mo
c46ae0426f314146563c8bf30aaea990  usr/share/locale/hu/LC_MESSAGES/iso_3166-2.mo
22dcffaa39609275694c6b07101c169a  usr/share/locale/hu/LC_MESSAGES/iso_3166-3.mo
af2057641b921039f52da3a7187ee68f  usr/share/locale/hu/LC_MESSAGES/iso_4217.mo
3869cdb8ba002d0066217d6b796a8316  usr/share/locale/hu/LC_MESSAGES/iso_639-2.mo
4deac5d258ea7772795a69f28024ef2a  usr/share/locale/hu/LC_MESSAGES/iso_639-3.mo
ad2b67475b805c2a1d93623fb4eaaa1a  usr/share/locale/hu/LC_MESSAGES/iso_639-5.mo
c71f95f461505eabf09ba4c1118066e3  usr/share/locale/hy/LC_MESSAGES/iso_3166-1.mo
0e1e0fbd0c969f7cd19087639ed39de0  usr/share/locale/hy/LC_MESSAGES/iso_3166-3.mo
ffb049767053547c4aa919d16b4937e0  usr/share/locale/ia/LC_MESSAGES/iso_15924.mo
453f38d2f9779d3d99c86315b23c97f2  usr/share/locale/ia/LC_MESSAGES/iso_3166-1.mo
ee781aeebd560e1b33b9f50d7d584bfd  usr/share/locale/ia/LC_MESSAGES/iso_3166-3.mo
b284263efa094bbeb98f62b3c92c48d4  usr/share/locale/id/LC_MESSAGES/iso_15924.mo
d63c9c6305277f1ea9e4b0d6e94024fe  usr/share/locale/id/LC_MESSAGES/iso_3166-1.mo
93fcb768ba95ec585581d0226a872a1a  usr/share/locale/id/LC_MESSAGES/iso_3166-2.mo
3a5507ce84cdec853cff300dfcd2860a  usr/share/locale/id/LC_MESSAGES/iso_3166-3.mo
60167232c951e2ec1f35249da320ea21  usr/share/locale/id/LC_MESSAGES/iso_4217.mo
7aa8f4cc03078a04fb9836f04368a348  usr/share/locale/id/LC_MESSAGES/iso_639-2.mo
66484c35e9fb155a42e19e5c3ee7f164  usr/share/locale/id/LC_MESSAGES/iso_639-3.mo
993d0f2e535552388ca8aa4b212cc555  usr/share/locale/id/LC_MESSAGES/iso_639-5.mo
504b9202ecd7a5e2096711d826b111ad  usr/share/locale/io/LC_MESSAGES/iso_3166-1.mo
d316a67abcce4a69fe2096132d11abc9  usr/share/locale/is/LC_MESSAGES/iso_15924.mo
fc9310ee6ec49c3568d41bc8916396d5  usr/share/locale/is/LC_MESSAGES/iso_3166-1.mo
0bfd6252d594868a0066c4047d66f8c9  usr/share/locale/is/LC_MESSAGES/iso_3166-2.mo
7492c79a258730699ff488a8b2cf0351  usr/share/locale/is/LC_MESSAGES/iso_3166-3.mo
ad82e759b35076c1c9a9b3ceacfe439d  usr/share/locale/is/LC_MESSAGES/iso_4217.mo
26d91f384df4b9753abbb10f4b774c8a  usr/share/locale/is/LC_MESSAGES/iso_639-2.mo
db501005b3f17557c602255eaf5e4164  usr/share/locale/is/LC_MESSAGES/iso_639-3.mo
8f5de773cb8ceb032a307ab5aff40bbb  usr/share/locale/is/LC_MESSAGES/iso_639-5.mo
d1d521e7125dc4b73be94976617cbd63  usr/share/locale/it/LC_MESSAGES/iso_15924.mo
0c726d6dc0932e9c937f6fafa96d292f  usr/share/locale/it/LC_MESSAGES/iso_3166-1.mo
1dee82d972a05bb6e80542f8dab7ae97  usr/share/locale/it/LC_MESSAGES/iso_3166-2.mo
a7ca16a51769645809ba54b41622a9b2  usr/share/locale/it/LC_MESSAGES/iso_3166-3.mo
b8a98b33357f309f0b3ea969487f2183  usr/share/locale/it/LC_MESSAGES/iso_4217.mo
ec2a9349acee960111928655633e1fcd  usr/share/locale/it/LC_MESSAGES/iso_639-2.mo
ffdb8640eeb5468b24c62922b07b7f7d  usr/share/locale/it/LC_MESSAGES/iso_639-3.mo
cb5a88d1afaae4ba3ffae245483f315b  usr/share/locale/it/LC_MESSAGES/iso_639-5.mo
382ae509b1eae39cf80efd6fe284eabd  usr/share/locale/iu/LC_MESSAGES/iso_3166-1.mo
2ff97e8a2069a14ae7744a80034180ed  usr/share/locale/ja/LC_MESSAGES/iso_15924.mo
4851a1290af6ddb63dbaff04e97a0987  usr/share/locale/ja/LC_MESSAGES/iso_3166-1.mo
1bdbf91665c3264a9a06f4a29696704e  usr/share/locale/ja/LC_MESSAGES/iso_3166-2.mo
beda21072768fb3bbfa172e0980aa196  usr/share/locale/ja/LC_MESSAGES/iso_3166-3.mo
388ac76b9ce7d04408967d09ff30e7ca  usr/share/locale/ja/LC_MESSAGES/iso_4217.mo
efc4449b0203469b83e8f8239fbefb66  usr/share/locale/ja/LC_MESSAGES/iso_639-2.mo
e85bf0fa10668e5606671ae334873329  usr/share/locale/ja/LC_MESSAGES/iso_639-3.mo
0f66f17b44716e68a3f8782c30732d7e  usr/share/locale/jam/LC_MESSAGES/iso_3166-1.mo
b1f3dadec736ba81d51d5850643c6687  usr/share/locale/ka/LC_MESSAGES/iso_15924.mo
a48e71cc3a1a0f849a1d9ee8e838134f  usr/share/locale/ka/LC_MESSAGES/iso_3166-1.mo
aab598523f012af50cbfb94a366dea65  usr/share/locale/ka/LC_MESSAGES/iso_3166-2.mo
254f092f3b7f849d751e16d66a927125  usr/share/locale/ka/LC_MESSAGES/iso_3166-3.mo
71fa8b38428d64596e242dbf0ba898d5  usr/share/locale/ka/LC_MESSAGES/iso_4217.mo
a6b2a55929b44b325c7736b8e2e5c72a  usr/share/locale/ka/LC_MESSAGES/iso_639-2.mo
67b80b1b37164294fa03bc8692d9f6d8  usr/share/locale/ka/LC_MESSAGES/iso_639-3.mo
a3e507c2c74987095d991e2c445f0e6f  usr/share/locale/ka/LC_MESSAGES/iso_639-5.mo
36b9a47493c6668197505f6cae0c64b8  usr/share/locale/kab/LC_MESSAGES/iso_15924.mo
4bd8ab0902ee5e76efe26caf6ccbaf75  usr/share/locale/kab/LC_MESSAGES/iso_3166-1.mo
40f693621de02bdbfd7d7d13da8bec86  usr/share/locale/kab/LC_MESSAGES/iso_3166-2.mo
946217b1934ba3ab9fff7aae9ac4ea78  usr/share/locale/kab/LC_MESSAGES/iso_4217.mo
c7ae533c7269280286233cd6c8676368  usr/share/locale/kab/LC_MESSAGES/iso_639-2.mo
59dc866bb16955994701dc7fa68b8bbf  usr/share/locale/kab/LC_MESSAGES/iso_639-3.mo
ddad72fddfc5c9abdeecfcc202887191  usr/share/locale/kab/LC_MESSAGES/iso_639-5.mo
b7c9721711b3109805eae93924722680  usr/share/locale/ki/LC_MESSAGES/iso_3166-1.mo
7a9371dd0bf9aa523527b78c609d7af2  usr/share/locale/kk/LC_MESSAGES/iso_3166-1.mo
2a6839f868888bb497e761790241897b  usr/share/locale/kk/LC_MESSAGES/iso_3166-3.mo
5402b30b62ebefba247088e1a8f91472  usr/share/locale/kl/LC_MESSAGES/iso_3166-1.mo
9965a66c11320f014afc85aa3df3932b  usr/share/locale/km/LC_MESSAGES/iso_3166-1.mo
7d1f66e5e9e77cc927008e4b7671cffe  usr/share/locale/km/LC_MESSAGES/iso_3166-3.mo
01cdee3f661f0afeb544b96fae67431a  usr/share/locale/kmr/LC_MESSAGES/iso_3166-1.mo
22865ee12ce1ef1121200ee3268200b8  usr/share/locale/kmr/LC_MESSAGES/iso_3166-3.mo
56182e3128b92cba55d9859cb9738b3a  usr/share/locale/kmr/LC_MESSAGES/iso_639-3.mo
772395f941d0bb8012c92162be5c92cf  usr/share/locale/kn/LC_MESSAGES/iso_3166-1.mo
6a47f9e9b378d6cf90e25877ee5a9da9  usr/share/locale/kn/LC_MESSAGES/iso_3166-3.mo
e0f02b5b07eb4b4a8dd2412ae28b942c  usr/share/locale/kn/LC_MESSAGES/iso_639-2.mo
daed8042e7a9ac79d51b17855fd95b00  usr/share/locale/kn/LC_MESSAGES/iso_639-3.mo
8211834e9ceac8e9a0d94c416b09190f  usr/share/locale/ko/LC_MESSAGES/iso_15924.mo
abb163317442f170cba8523cc49c6b7e  usr/share/locale/ko/LC_MESSAGES/iso_3166-1.mo
2747dff45806cc58012430458a119ad6  usr/share/locale/ko/LC_MESSAGES/iso_3166-2.mo
b34959f1a13249a9e57d23d4ebf13411  usr/share/locale/ko/LC_MESSAGES/iso_3166-3.mo
22afcfe1e6d75478a38903c4be6d1dc8  usr/share/locale/ko/LC_MESSAGES/iso_4217.mo
c6879dc9b7e9133bf8c582d82848c9ea  usr/share/locale/ko/LC_MESSAGES/iso_639-2.mo
98076d5f48eb768bed20ff9a7c3ddd2e  usr/share/locale/ko/LC_MESSAGES/iso_639-3.mo
ec90ad92a91175226c9426ea0125813d  usr/share/locale/kok/LC_MESSAGES/iso_639-2.mo
772b928b1e6953e852cf75bea32b92df  usr/share/locale/kok/LC_MESSAGES/iso_639-3.mo
a659a69a461bfa9b44ed254307c1938f  usr/share/locale/kv/LC_MESSAGES/iso_3166-1.mo
a351848456824d3f2ef389372e8d7771  usr/share/locale/kw/LC_MESSAGES/iso_3166-1.mo
fccfbffd0e54a38c95c426a5d853c455  usr/share/locale/ky/LC_MESSAGES/iso_3166-1.mo
4d571b2b4fb5c93eb759e5767c65500f  usr/share/locale/ky/LC_MESSAGES/iso_3166-2.mo
80e2f988b04790515a7a05ea049547a2  usr/share/locale/lo/LC_MESSAGES/iso_3166-1.mo
7a1194a630298a71005064ae5f7d201c  usr/share/locale/lt/LC_MESSAGES/iso_15924.mo
a2f07a87fca62d8fe54e0e58e3c40710  usr/share/locale/lt/LC_MESSAGES/iso_3166-1.mo
be569805a889b19354ab28f5ab8a58f7  usr/share/locale/lt/LC_MESSAGES/iso_3166-2.mo
7facd664598412d5896a39240afe7c5e  usr/share/locale/lt/LC_MESSAGES/iso_3166-3.mo
462b20af27c3cf6a4c8b3c4be1fa56c6  usr/share/locale/lt/LC_MESSAGES/iso_4217.mo
51b46b4535a6016b378bac222faf9d59  usr/share/locale/lt/LC_MESSAGES/iso_639-2.mo
4053466c8587ad120f43cbe0c7ab6175  usr/share/locale/lt/LC_MESSAGES/iso_639-3.mo
e9fced380c9861bc3913cc45d7253d9c  usr/share/locale/lv/LC_MESSAGES/iso_15924.mo
d28efacc6661d9e69a7d26ea6cebc580  usr/share/locale/lv/LC_MESSAGES/iso_3166-1.mo
d1fac687a94aae6730fda00371951cd6  usr/share/locale/lv/LC_MESSAGES/iso_3166-2.mo
b2e8669be96f598526bfc39fe87b1d57  usr/share/locale/lv/LC_MESSAGES/iso_3166-3.mo
2fb3417e7940a35584045b36ce9fb088  usr/share/locale/lv/LC_MESSAGES/iso_4217.mo
6a6dc80dddfbf55e16b3c8b6ea26dda1  usr/share/locale/lv/LC_MESSAGES/iso_639-2.mo
a3e2611a49c90fe77a668eb7a244c466  usr/share/locale/lv/LC_MESSAGES/iso_639-3.mo
440e7fc859117d246b60270121d183e8  usr/share/locale/mai/LC_MESSAGES/iso_3166-1.mo
5193448a4d90a42158ed0b2e5196feb3  usr/share/locale/mhr/LC_MESSAGES/iso_3166-1.mo
f9170b325bc3bfd895b578909a36fb89  usr/share/locale/mi/LC_MESSAGES/iso_3166-1.mo
0de27a5e7f9f54046b16cb4cb443fa55  usr/share/locale/mi/LC_MESSAGES/iso_3166-3.mo
bac843fa30bc7030d33b43b143545d47  usr/share/locale/mi/LC_MESSAGES/iso_639-2.mo
5e42c5785a70afcd0234207d36f29a9e  usr/share/locale/mi/LC_MESSAGES/iso_639-3.mo
71a6ff579e1ca6df5871862412a7ea1e  usr/share/locale/mk/LC_MESSAGES/iso_3166-1.mo
f29284c6de7050d86ef96d94f541c530  usr/share/locale/mk/LC_MESSAGES/iso_3166-3.mo
fc74e458ae61466469fa8f257447e173  usr/share/locale/mk/LC_MESSAGES/iso_639-2.mo
a1c6510379b17d8915f4b3f3a4f227d7  usr/share/locale/mk/LC_MESSAGES/iso_639-3.mo
16657d95a342b31250b46022676146e6  usr/share/locale/ml/LC_MESSAGES/iso_15924.mo
fdf190f09b8727ee556a41f2efc1fc68  usr/share/locale/ml/LC_MESSAGES/iso_3166-1.mo
6bac278dec1b283380d42574e5ef818b  usr/share/locale/ml/LC_MESSAGES/iso_3166-3.mo
fb10d99759d3e02093b50eac6651b227  usr/share/locale/ml/LC_MESSAGES/iso_639-2.mo
8c261e5461a21e73c90a12230b979516  usr/share/locale/mn/LC_MESSAGES/iso_3166-1.mo
43928289d7bd16e813fa8b50a8d1d1dd  usr/share/locale/mn/LC_MESSAGES/iso_3166-3.mo
e20a0db2ceed797dc1dc44ca6e62d92d  usr/share/locale/mn/LC_MESSAGES/iso_4217.mo
53630397b1bbcdf70b4a66a06342921a  usr/share/locale/mn/LC_MESSAGES/iso_639-2.mo
30e9cdbbc37f48b1cbc0079d49be5591  usr/share/locale/mn/LC_MESSAGES/iso_639-3.mo
ce4a6305951f4d4deda1580af799231b  usr/share/locale/mo/LC_MESSAGES/iso_3166-1.mo
188014b26e06ce3c47152ffd17434781  usr/share/locale/mr/LC_MESSAGES/iso_3166-1.mo
494be42085990b126e628557f0d5d8f2  usr/share/locale/mr/LC_MESSAGES/iso_3166-3.mo
afcd84597be43273f8fca097d5011eda  usr/share/locale/mr/LC_MESSAGES/iso_639-2.mo
865b80ede74fb2d7e51e0e4849a7b9d1  usr/share/locale/mr/LC_MESSAGES/iso_639-3.mo
8f4d81d68b9bbd920cc2c48c68336efe  usr/share/locale/ms/LC_MESSAGES/iso_3166-1.mo
89b5900b10ef8d12c5d6e398bb1dd145  usr/share/locale/ms/LC_MESSAGES/iso_3166-3.mo
94a87f1054c1fa164352429bdbc99a25  usr/share/locale/ms/LC_MESSAGES/iso_639-2.mo
e2def7191b79047422412b6ac80075f2  usr/share/locale/ms/LC_MESSAGES/iso_639-3.mo
4cc793ce6402d87718fd9cfba7b63e5b  usr/share/locale/mt/LC_MESSAGES/iso_3166-1.mo
463a43ff81a7ee2758ba934821597f7a  usr/share/locale/mt/LC_MESSAGES/iso_3166-3.mo
a5b82799c5a34a2d6ef20fabe40eeb89  usr/share/locale/mt/LC_MESSAGES/iso_639-2.mo
7e9d6b375a571bef59f2fc97843eeb0b  usr/share/locale/mt/LC_MESSAGES/iso_639-3.mo
a1e7e63477f8bed25be4b5eb44f8e034  usr/share/locale/my/LC_MESSAGES/iso_3166-1.mo
7924cd14bba0ea1ca87683c7447533f1  usr/share/locale/na/LC_MESSAGES/iso_3166-1.mo
0df0accc8abe649839ad615ed4c5ddee  usr/share/locale/nah/LC_MESSAGES/iso_3166-1.mo
c4d91c722aa046c4b3d3439635be74f2  usr/share/locale/nb/LC_MESSAGES/iso_15924.mo
016ad22f2b09a2e9d08e8b0741bbe871  usr/share/locale/nb/LC_MESSAGES/iso_3166-1.mo
e808e941da4de46fbcb34be0cc698864  usr/share/locale/nb/LC_MESSAGES/iso_3166-3.mo
a494ea0256912bcd7a4a9ce5e2d295e5  usr/share/locale/nb/LC_MESSAGES/iso_4217.mo
2fc84b7b02f588646a254fd5d106ebf1  usr/share/locale/nb/LC_MESSAGES/iso_639-2.mo
b193382218ee559bf4dd86843725c46c  usr/share/locale/nb/LC_MESSAGES/iso_639-3.mo
b5c4e13d3559990e6bd5029f13585f9e  usr/share/locale/nb_NO/LC_MESSAGES/iso_3166-2.mo
d5da3f4153ae2bf8fb67f33a2da907b6  usr/share/locale/nb_NO/LC_MESSAGES/iso_639-5.mo
fe5465ba01a5bbd5c6f6397729efb21d  usr/share/locale/ne/LC_MESSAGES/iso_3166-1.mo
c482b547ecd92e4033724504500cfe3c  usr/share/locale/ne/LC_MESSAGES/iso_3166-3.mo
1ce08fca7aeac545f44813a3082a4859  usr/share/locale/nl/LC_MESSAGES/iso_15924.mo
1ace1a26fdb4fa88f6966082e3b37fa8  usr/share/locale/nl/LC_MESSAGES/iso_3166-1.mo
b4eaaeebd1d956089f68d0c21b94f6ab  usr/share/locale/nl/LC_MESSAGES/iso_3166-2.mo
a57e2fd83c614f5a7f6c0a15a162754d  usr/share/locale/nl/LC_MESSAGES/iso_3166-3.mo
9911c82d658e1add85fad8aad713b8e9  usr/share/locale/nl/LC_MESSAGES/iso_4217.mo
f4ecefeeda3ffd43cee057d4fad1edce  usr/share/locale/nl/LC_MESSAGES/iso_639-2.mo
a17fd3194e18f8e8175c0d9a9db7762b  usr/share/locale/nl/LC_MESSAGES/iso_639-3.mo
006553457a1c6bda37ffeffa9fc2818a  usr/share/locale/nl/LC_MESSAGES/iso_639-5.mo
1ec26858fd5bae0c2db3239e17fbcf93  usr/share/locale/nn/LC_MESSAGES/iso_15924.mo
746e49daec4b7aa35e6c337a7e8a248c  usr/share/locale/nn/LC_MESSAGES/iso_3166-1.mo
4a06be3ff3d61377ffa38ac7866f5378  usr/share/locale/nn/LC_MESSAGES/iso_3166-3.mo
c9ef8e08b47f4907af7c8ccb2db8807b  usr/share/locale/nn/LC_MESSAGES/iso_4217.mo
3e183c3b67c1e8324b20867792b990b7  usr/share/locale/nn/LC_MESSAGES/iso_639-2.mo
aec6c80dc6fd9b21ae25cd216343aa6e  usr/share/locale/nn/LC_MESSAGES/iso_639-3.mo
e9b8820ac6f329cf0ef556923d912df2  usr/share/locale/nso/LC_MESSAGES/iso_3166-1.mo
4429e10b36e525334ab91d21c8dd32de  usr/share/locale/nso/LC_MESSAGES/iso_3166-2.mo
c9d99cd6e434b809b107cf4b369db177  usr/share/locale/nso/LC_MESSAGES/iso_3166-3.mo
a7fb43848051ed796d97bde617ce9187  usr/share/locale/nso/LC_MESSAGES/iso_639-2.mo
fe25660f3a4a7fa2c22970a9811f1c75  usr/share/locale/nso/LC_MESSAGES/iso_639-3.mo
e687cbaab0aa35d075885f76a904bc65  usr/share/locale/nv/LC_MESSAGES/iso_3166-1.mo
ee837205044f66aebfbda38d0d846e36  usr/share/locale/oc/LC_MESSAGES/iso_15924.mo
5fd951713df81af94e3a681e2c1935da  usr/share/locale/oc/LC_MESSAGES/iso_3166-1.mo
e0061ada2ece78f082b8d07bba264371  usr/share/locale/oc/LC_MESSAGES/iso_3166-2.mo
ecf920c7c382aca588f7b84c38862068  usr/share/locale/oc/LC_MESSAGES/iso_3166-3.mo
b56da8d9c720e49badc4a0e83d4e788c  usr/share/locale/oc/LC_MESSAGES/iso_4217.mo
80f88e90e554b920ddc625fcd0db3942  usr/share/locale/oc/LC_MESSAGES/iso_639-2.mo
64179bb447e6d690dc85be54c17fe125  usr/share/locale/oc/LC_MESSAGES/iso_639-3.mo
33093e841bf78f85cc4353b3af1a26dc  usr/share/locale/oc/LC_MESSAGES/iso_639-5.mo
56a3a098ffb529b194522a8b9032c4c6  usr/share/locale/or/LC_MESSAGES/iso_3166-1.mo
6c51edca515b3ee0c7b91aa66361d85f  usr/share/locale/or/LC_MESSAGES/iso_3166-3.mo
e7f521dfec7e2f4921fdb58799bf3f57  usr/share/locale/or/LC_MESSAGES/iso_639-2.mo
c64e277d657717910c30af3f1103013d  usr/share/locale/or/LC_MESSAGES/iso_639-3.mo
672f3a715dfb4906ad9e803a8428d345  usr/share/locale/pa/LC_MESSAGES/iso_3166-1.mo
f891f44e115e4ecb71e070fa819b4fd9  usr/share/locale/pa/LC_MESSAGES/iso_3166-3.mo
e2536a5688266300201a57941fdb70a5  usr/share/locale/pa/LC_MESSAGES/iso_639-2.mo
3278886a02a552a6a88d3f011bfcb7af  usr/share/locale/pa/LC_MESSAGES/iso_639-3.mo
35b123860aa29b8e037769223ecb619c  usr/share/locale/pa_PK/LC_MESSAGES/iso_15924.mo
60a278807bb880b6751edfd9fa9e284b  usr/share/locale/pa_PK/LC_MESSAGES/iso_3166-2.mo
8beabf7fa7126d1721493880be98bd05  usr/share/locale/pa_PK/LC_MESSAGES/iso_3166-3.mo
39cf9c404f03930ae132a15e3befca90  usr/share/locale/pa_PK/LC_MESSAGES/iso_639-2.mo
2ce7a70feff7f88ea2e4b17ecfcba9db  usr/share/locale/pap/LC_MESSAGES/iso_3166-1.mo
09b9241f2b5ff845553fb73d8db2e80e  usr/share/locale/pi/LC_MESSAGES/iso_3166-1.mo
35cf3cd8a2f3c4d48dd3596390e75267  usr/share/locale/pl/LC_MESSAGES/iso_15924.mo
994bc111fe52beabb73c295a5d27e22f  usr/share/locale/pl/LC_MESSAGES/iso_3166-1.mo
4cb917d90efad670b087ecf204cabe3c  usr/share/locale/pl/LC_MESSAGES/iso_3166-2.mo
4c6b243ee32b00d2bad944235f83d553  usr/share/locale/pl/LC_MESSAGES/iso_3166-3.mo
a93058e074503e805180d0ffcd6d980e  usr/share/locale/pl/LC_MESSAGES/iso_4217.mo
2c14ae8ab393dd43e1748e8cdb3791ea  usr/share/locale/pl/LC_MESSAGES/iso_639-2.mo
5497c2658c895b4aa9f6f44d7751cd8c  usr/share/locale/pl/LC_MESSAGES/iso_639-3.mo
e40e0ff650e4772188c3786d98f3e42f  usr/share/locale/pl/LC_MESSAGES/iso_639-5.mo
366a0d6cd41fd47c230233714f89b220  usr/share/locale/ps/LC_MESSAGES/iso_3166-1.mo
e6c23473919c49e446c99672ea6d3919  usr/share/locale/ps/LC_MESSAGES/iso_3166-3.mo
cd944f8329361af2462c23c71d4292a2  usr/share/locale/ps/LC_MESSAGES/iso_639-2.mo
9eda3c598108259fd352073775d29c20  usr/share/locale/ps/LC_MESSAGES/iso_639-3.mo
4968ddee9fa0fb9266728b5e75318187  usr/share/locale/pt/LC_MESSAGES/iso_15924.mo
40c3f3e924d435bc997b96c6cca07772  usr/share/locale/pt/LC_MESSAGES/iso_3166-1.mo
b39c3fdeda58af7dc4f0d2682a0a1412  usr/share/locale/pt/LC_MESSAGES/iso_3166-3.mo
ffef2559c1cf005913fa27e9abc6f896  usr/share/locale/pt/LC_MESSAGES/iso_4217.mo
3b2d4d6560dbcf8931998d0007f3a388  usr/share/locale/pt/LC_MESSAGES/iso_639-2.mo
fe4c24514ff841682a6b682dc9a2f5a2  usr/share/locale/pt/LC_MESSAGES/iso_639-3.mo
c04ebc0851ad52dd6a64d9ac00fe939d  usr/share/locale/pt_BR/LC_MESSAGES/iso_15924.mo
5cd8fc735c8b9efc74c3e59a16915026  usr/share/locale/pt_BR/LC_MESSAGES/iso_3166-1.mo
8245e90dc59a6f7fb442d0fedf3f7606  usr/share/locale/pt_BR/LC_MESSAGES/iso_3166-2.mo
c2a90d7ea6983b2be15a5e0977b9d43f  usr/share/locale/pt_BR/LC_MESSAGES/iso_3166-3.mo
0c002d9f83e1447fd149e03e69913792  usr/share/locale/pt_BR/LC_MESSAGES/iso_4217.mo
8666bb9b8e87a11aa1eb9db37e3fea1f  usr/share/locale/pt_BR/LC_MESSAGES/iso_639-2.mo
d1a7e357d96f66b1adc9e030db9f4022  usr/share/locale/pt_BR/LC_MESSAGES/iso_639-3.mo
bc58f137ed8d520f10ad9bf0c0002cd7  usr/share/locale/pt_BR/LC_MESSAGES/iso_639-5.mo
6f1f0450b9da0708c1f33b5874b59bac  usr/share/locale/ro/LC_MESSAGES/iso_15924.mo
1562f55dc0f8445ce1d6763096ad140b  usr/share/locale/ro/LC_MESSAGES/iso_3166-1.mo
9161c19da17752a275915ead3d9d6108  usr/share/locale/ro/LC_MESSAGES/iso_3166-2.mo
612985a90cd5e6422fd7d673115e1ba7  usr/share/locale/ro/LC_MESSAGES/iso_3166-3.mo
6833abe14c42318a73be58d69515af3b  usr/share/locale/ro/LC_MESSAGES/iso_4217.mo
2de581aab01d9a20010d95c756451788  usr/share/locale/ro/LC_MESSAGES/iso_639-2.mo
b37e51def4dc168234d44fdb26825b58  usr/share/locale/ro/LC_MESSAGES/iso_639-3.mo
cb82d841e8d9f1820c4f60c40b84a368  usr/share/locale/ro_MD/LC_MESSAGES/iso_639-2.mo
44cc6fb2ad8509e3284c0fe22419e505  usr/share/locale/ru/LC_MESSAGES/iso_15924.mo
bcfec9576539e6aafbd4e590264b876f  usr/share/locale/ru/LC_MESSAGES/iso_3166-1.mo
de13334442db5d390fa8c93d45285466  usr/share/locale/ru/LC_MESSAGES/iso_3166-2.mo
c5099117343800b94b66fb93808f7b52  usr/share/locale/ru/LC_MESSAGES/iso_3166-3.mo
4135a574e9f7d79badd19c22b3e687ee  usr/share/locale/ru/LC_MESSAGES/iso_4217.mo
aeffb8b6e2e482a142cc6710b4427cc5  usr/share/locale/ru/LC_MESSAGES/iso_639-2.mo
e105c9dc891d76e408de582a1174c264  usr/share/locale/ru/LC_MESSAGES/iso_639-3.mo
718ebb18b91806c2c4ec46b2286ba062  usr/share/locale/ru/LC_MESSAGES/iso_639-5.mo
f65ca866af62d31683684a6be4cf0667  usr/share/locale/rw/LC_MESSAGES/iso_3166-1.mo
9a49e81427e734e32597ba0e21c47cb0  usr/share/locale/rw/LC_MESSAGES/iso_3166-3.mo
313eba3cdf985ad9594cde71433e5747  usr/share/locale/rw/LC_MESSAGES/iso_4217.mo
ec500421414bef2ec71470fc29ecd39f  usr/share/locale/rw/LC_MESSAGES/iso_639-2.mo
15ab52f62efc610dc73d8a0dba5e953a  usr/share/locale/rw/LC_MESSAGES/iso_639-3.mo
266c97a2dac0555db8091d26f33d0070  usr/share/locale/sc/LC_MESSAGES/iso_15924.mo
869c936b43179ba6307219435dedff41  usr/share/locale/sc/LC_MESSAGES/iso_3166-1.mo
17dd45630495004968c6f99661adafaa  usr/share/locale/sc/LC_MESSAGES/iso_3166-2.mo
99d89b625d5a2cfd70990d552ea29dab  usr/share/locale/sc/LC_MESSAGES/iso_3166-3.mo
8d44539a0009e94d96b743b4e1cfd3cc  usr/share/locale/sc/LC_MESSAGES/iso_4217.mo
2be639f4f1bf494a28914e2018b1ace8  usr/share/locale/sc/LC_MESSAGES/iso_639-2.mo
27f7c46285edd138c0014566b1580094  usr/share/locale/sc/LC_MESSAGES/iso_639-3.mo
9d1f8411af9fba5d48a153f79892a310  usr/share/locale/sc/LC_MESSAGES/iso_639-5.mo
d24a94e14b3f76fbc1134ea342f61696  usr/share/locale/sd/LC_MESSAGES/iso_3166-1.mo
c448aa7d09c298dfa6615abc7e6aa606  usr/share/locale/si/LC_MESSAGES/iso_15924.mo
57883cea7d734711a969e6514e3561fb  usr/share/locale/si/LC_MESSAGES/iso_3166-1.mo
780a068c9ed866a0e47da0cbe59bded0  usr/share/locale/si/LC_MESSAGES/iso_3166-3.mo
2c8bc8fa8740c7080abe91c241433cae  usr/share/locale/sk/LC_MESSAGES/iso_15924.mo
1271b1718bf404d5026689041c54bfc3  usr/share/locale/sk/LC_MESSAGES/iso_3166-1.mo
1d1496da39894899e248e604673caa49  usr/share/locale/sk/LC_MESSAGES/iso_3166-2.mo
fa7a804376f5992c5e0cae3cce0fdf0f  usr/share/locale/sk/LC_MESSAGES/iso_3166-3.mo
636c38b0252129521c388fe8639fd5f4  usr/share/locale/sk/LC_MESSAGES/iso_4217.mo
3cd1bcfdd249ddf5f42f262d2cf3c831  usr/share/locale/sk/LC_MESSAGES/iso_639-2.mo
b79aeb6745c5fcc8041cf5b54f912208  usr/share/locale/sk/LC_MESSAGES/iso_639-3.mo
0f609270c779a7ff56dd644837f7bdda  usr/share/locale/sl/LC_MESSAGES/iso_15924.mo
228df4cabc03f70a547b68be700c721a  usr/share/locale/sl/LC_MESSAGES/iso_3166-1.mo
ddb11c6251518ba3a9415ba9b16dd5ed  usr/share/locale/sl/LC_MESSAGES/iso_3166-2.mo
c24d71bd2f279e80622752696d025030  usr/share/locale/sl/LC_MESSAGES/iso_3166-3.mo
069ebefe756c813e6eb66ca783f2e920  usr/share/locale/sl/LC_MESSAGES/iso_4217.mo
fa794b15363847e5ee02c56cdf39067e  usr/share/locale/sl/LC_MESSAGES/iso_639-2.mo
8c2baa8823c935ef0139efb8a5f5bd68  usr/share/locale/sl/LC_MESSAGES/iso_639-3.mo
6279a8ac54b44810ea0c413e1a07779e  usr/share/locale/so/LC_MESSAGES/iso_15924.mo
341bcb3d9bf343f2a315f225c9ae0890  usr/share/locale/so/LC_MESSAGES/iso_3166-1.mo
7bf0b30c29a1957c4294552fa44952f5  usr/share/locale/so/LC_MESSAGES/iso_3166-2.mo
c32974d28d42462d0707d3dc30da294a  usr/share/locale/so/LC_MESSAGES/iso_3166-3.mo
38b40ac52eb32be41fd9010fce052b60  usr/share/locale/so/LC_MESSAGES/iso_4217.mo
2481667f54dbbe5214502c1f822bed79  usr/share/locale/so/LC_MESSAGES/iso_639-3.mo
e730ae3d478e820cf78bd27c3a600a11  usr/share/locale/son/LC_MESSAGES/iso_3166-1.mo
2995b051bf1cd12b74c975c16881b4b6  usr/share/locale/sq/LC_MESSAGES/iso_15924.mo
c6b31171a973f8b5ea1b8ea828893a6a  usr/share/locale/sq/LC_MESSAGES/iso_3166-1.mo
615f071e3dcc6a78653334efacbdf0f5  usr/share/locale/sq/LC_MESSAGES/iso_3166-2.mo
a600af2c1b44a90d58a3afaa31dfbd06  usr/share/locale/sq/LC_MESSAGES/iso_3166-3.mo
3617b5afebe12ab0bc9bc69455c45f6c  usr/share/locale/sq/LC_MESSAGES/iso_4217.mo
79e71a1391c6a0cdcb1f7d98a9fcff8a  usr/share/locale/sq/LC_MESSAGES/iso_639-2.mo
6460148501edbf66587a1850cfa3e855  usr/share/locale/sq/LC_MESSAGES/iso_639-3.mo
f659d8cbfb6e8a3d81a2f4c69ac1f52c  usr/share/locale/sq/LC_MESSAGES/iso_639-5.mo
c7989ce3365f908a5129ce9faad70e0b  usr/share/locale/sr/LC_MESSAGES/iso_15924.mo
f71c7854be296be80ccecf524e00961e  usr/share/locale/sr/LC_MESSAGES/iso_3166-1.mo
27d34d153100568af166e69fb60384e8  usr/share/locale/sr/LC_MESSAGES/iso_3166-2.mo
ad94a375d65d5f9fe0e08b6f16e8f606  usr/share/locale/sr/LC_MESSAGES/iso_3166-3.mo
4eab59efed3f0de7678e906fc1ff3330  usr/share/locale/sr/LC_MESSAGES/iso_4217.mo
ae714b7628552877d91188cf171231b3  usr/share/locale/sr/LC_MESSAGES/iso_639-2.mo
8487662c28d2ca8e897a09b52c1ef620  usr/share/locale/sr/LC_MESSAGES/iso_639-3.mo
8ef159ba0a1ceaa365a072d772d4ee60  usr/share/locale/sr/LC_MESSAGES/iso_639-5.mo
6e8e0a1acff5a45ad6fb6d4a5c01f3da  usr/share/locale/sr@latin/LC_MESSAGES/iso_15924.mo
0d7e65ebe68124c8c32ab5f6c55875e2  usr/share/locale/sr@latin/LC_MESSAGES/iso_3166-1.mo
66914b08d1621d72d53b7d63344210a5  usr/share/locale/sr@latin/LC_MESSAGES/iso_3166-2.mo
38c4b446a454962489f6013abe864b3d  usr/share/locale/sr@latin/LC_MESSAGES/iso_3166-3.mo
ba6ddf1b531e7eca34d00effa58637b4  usr/share/locale/sr@latin/LC_MESSAGES/iso_4217.mo
11bdd3eb9279c9cf10a7128e07b264a6  usr/share/locale/sr@latin/LC_MESSAGES/iso_639-2.mo
2a254bc676ec86be36423581a6f03a3f  usr/share/locale/sr@latin/LC_MESSAGES/iso_639-3.mo
6e33a54b2f24f0c6631dfdf5cda2192f  usr/share/locale/sr@latin/LC_MESSAGES/iso_639-5.mo
88ea602e2d427738f859251ef3016449  usr/share/locale/sv/LC_MESSAGES/iso_15924.mo
be1d05aeae528cbaa16b48111e2cc3ae  usr/share/locale/sv/LC_MESSAGES/iso_3166-1.mo
7c62f07aac2371b36a879ae0270f025c  usr/share/locale/sv/LC_MESSAGES/iso_3166-2.mo
acfc279f23e2e67a32471a35bd425089  usr/share/locale/sv/LC_MESSAGES/iso_3166-3.mo
141588db41a3fd7d7c1fa9fa1481f184  usr/share/locale/sv/LC_MESSAGES/iso_4217.mo
dada9338a9074e8a0cadeac92ef51a73  usr/share/locale/sv/LC_MESSAGES/iso_639-2.mo
8e7317c56525a25329b7435c87b19094  usr/share/locale/sv/LC_MESSAGES/iso_639-3.mo
de97e18e0e3a943b68fa7cb5b05ceb33  usr/share/locale/sv/LC_MESSAGES/iso_639-5.mo
18b106e679fc831a88a37e3a604c74cc  usr/share/locale/sw/LC_MESSAGES/iso_3166-1.mo
b1df1dd60ca188d8f2dc7dc96f384fd8  usr/share/locale/sw/LC_MESSAGES/iso_3166-3.mo
aa42643498fd168fa986a91b509292ac  usr/share/locale/ta/LC_MESSAGES/iso_3166-1.mo
8808d1d960fa2360867663bf5ec99acc  usr/share/locale/ta/LC_MESSAGES/iso_3166-3.mo
ed1e08a8584dc8b2fca6fa7cb25d259c  usr/share/locale/ta/LC_MESSAGES/iso_639-2.mo
24882773350afbf90749f0181c77ef99  usr/share/locale/ta/LC_MESSAGES/iso_639-3.mo
328f1621df6b47e80611bd4eef6f660d  usr/share/locale/te/LC_MESSAGES/iso_3166-1.mo
2f4d0556e7a5e5dab1205798cfc6c86c  usr/share/locale/te/LC_MESSAGES/iso_3166-3.mo
b91dd7d4f531ea683ed66dee662e0f77  usr/share/locale/te/LC_MESSAGES/iso_639-2.mo
b9d402087b8e910f8a07d37181f5faff  usr/share/locale/tg/LC_MESSAGES/iso_3166-1.mo
aac0fad911ca38de202198a5cdc09e9a  usr/share/locale/tg/LC_MESSAGES/iso_639-2.mo
1dde1660dcc965e012b672043b3d60bb  usr/share/locale/th/LC_MESSAGES/iso_15924.mo
6f00a2e09b0916a4ac70e9f0465a723d  usr/share/locale/th/LC_MESSAGES/iso_3166-1.mo
23fc762d61b6f41027446f59d566dd07  usr/share/locale/th/LC_MESSAGES/iso_3166-2.mo
7bff4adda9f05aae2815309ba4f386b2  usr/share/locale/th/LC_MESSAGES/iso_3166-3.mo
96faf1103b5d88ee13e671c21dc7fda5  usr/share/locale/th/LC_MESSAGES/iso_4217.mo
c1fc43be87700c509953bd56b56bc898  usr/share/locale/th/LC_MESSAGES/iso_639-2.mo
d479c37df2a7e33c3bf196f1d7adfe4a  usr/share/locale/th/LC_MESSAGES/iso_639-3.mo
9d86d76cc9c9cb5397616acad9d3aec1  usr/share/locale/ti/LC_MESSAGES/iso_3166-1.mo
8016b7db3e1af9c18d5def26dbb765d0  usr/share/locale/ti/LC_MESSAGES/iso_3166-3.mo
c2c55bfac18bf63acf256c399418f864  usr/share/locale/ti/LC_MESSAGES/iso_639-2.mo
ebdc3d911d70cf1c8a0e9fabb21dfad6  usr/share/locale/ti/LC_MESSAGES/iso_639-3.mo
48c158245eafba129508f68f174505ab  usr/share/locale/tig/LC_MESSAGES/iso_3166-1.mo
798fa10e58a738ea4ec9f3a52ed2a7e1  usr/share/locale/tig/LC_MESSAGES/iso_3166-3.mo
9da8686e8f2d70b500a5ee4b1a73b152  usr/share/locale/tig/LC_MESSAGES/iso_639-2.mo
e29fbeb10e3102febcfda99e23aadec2  usr/share/locale/tig/LC_MESSAGES/iso_639-3.mo
b51ddf4d36134c75727d521bcc57a561  usr/share/locale/tk/LC_MESSAGES/iso_3166-1.mo
edc903c7981c28987392a709f249a3b6  usr/share/locale/tk/LC_MESSAGES/iso_3166-3.mo
2a57028cb3a9112a681b0981ad449a3c  usr/share/locale/tl/LC_MESSAGES/iso_3166-1.mo
3d2ea1a2f7e1e8bee44411687856bdca  usr/share/locale/tl/LC_MESSAGES/iso_3166-3.mo
37ddb53ef944b05ce93baf409f5f1d7d  usr/share/locale/tr/LC_MESSAGES/iso_15924.mo
62462b1afd2c2521e878241cde80e005  usr/share/locale/tr/LC_MESSAGES/iso_3166-1.mo
9eee50fbe9a361afdbd147054295454a  usr/share/locale/tr/LC_MESSAGES/iso_3166-2.mo
f22c77cb9c37f6fb77c20add26f907d1  usr/share/locale/tr/LC_MESSAGES/iso_3166-3.mo
e890321c599b8d465df480c32e519c4a  usr/share/locale/tr/LC_MESSAGES/iso_4217.mo
d1ecde31173a3214821e685e41008cf5  usr/share/locale/tr/LC_MESSAGES/iso_639-2.mo
5d1aa6f4abacec75f4cc191310e09329  usr/share/locale/tr/LC_MESSAGES/iso_639-3.mo
bb4a718be395d1f5937ce094ea89b84f  usr/share/locale/tr/LC_MESSAGES/iso_639-5.mo
a4ddf657e1ec0aa0b73f9b414be11390  usr/share/locale/tt/LC_MESSAGES/iso_3166-1.mo
71451c1ea205473b405a6d054024d858  usr/share/locale/tt/LC_MESSAGES/iso_3166-3.mo
b37f9e1e2e8a43e33a9505b6b0d6c578  usr/share/locale/tt/LC_MESSAGES/iso_639-2.mo
8c044216759a6fd075e819fd15503047  usr/share/locale/tt/LC_MESSAGES/iso_639-3.mo
25dab27160da0971434bd22db9f4abdf  usr/share/locale/tt@iqtelif/LC_MESSAGES/iso_3166-1.mo
43bd9cdc85e028bae472c8c92ff3275a  usr/share/locale/tt@iqtelif/LC_MESSAGES/iso_3166-3.mo
ecc69e5f3b22161a1576b3d42cef74d8  usr/share/locale/tt@iqtelif/LC_MESSAGES/iso_639-2.mo
1a51977e372586d38702a33021bf38cb  usr/share/locale/tt@iqtelif/LC_MESSAGES/iso_639-3.mo
f58dab8fb5bff15de46d28f114749cfd  usr/share/locale/tzm/LC_MESSAGES/iso_15924.mo
cb06ec38c80394e041e8130702503e3b  usr/share/locale/tzm/LC_MESSAGES/iso_3166-1.mo
3472bf256e926accbaeec0cd310bed25  usr/share/locale/tzm/LC_MESSAGES/iso_4217.mo
8fed2cbc7003b99d8e687a65cd660e23  usr/share/locale/tzm/LC_MESSAGES/iso_639-2.mo
c1b8c0731d7cfcd618e9599b265d8511  usr/share/locale/ug/LC_MESSAGES/iso_3166-1.mo
7244c650a206202ef710a7918a8e5c6f  usr/share/locale/ug/LC_MESSAGES/iso_3166-3.mo
bfa4889af0a8e3bda68e0b25f6d67a29  usr/share/locale/uk/LC_MESSAGES/iso_15924.mo
3391c50061fab612994a9f57750ce213  usr/share/locale/uk/LC_MESSAGES/iso_3166-1.mo
6b0d554470716c5ea782f4af8f0b8f78  usr/share/locale/uk/LC_MESSAGES/iso_3166-2.mo
5e604368f3a70d97e3e56c1e2d312a9c  usr/share/locale/uk/LC_MESSAGES/iso_3166-3.mo
b4316a074b0286b8155a6ae950f04ecb  usr/share/locale/uk/LC_MESSAGES/iso_4217.mo
06b10e3b68e43971cbb9acc93af25971  usr/share/locale/uk/LC_MESSAGES/iso_639-2.mo
3f600a8f684c194e0e44ed4cf6b3f404  usr/share/locale/uk/LC_MESSAGES/iso_639-3.mo
1db7cb96cae6b5983b9f074456bd372a  usr/share/locale/uk/LC_MESSAGES/iso_639-5.mo
ec4333ca6bc0d0156b02b2753b36bb46  usr/share/locale/ur/LC_MESSAGES/iso_3166-1.mo
d8cc41cc9ca64420959acaf28fafe118  usr/share/locale/uz/LC_MESSAGES/iso_3166-1.mo
e66da1faea5593d5a9bef3be5abe2dbf  usr/share/locale/ve/LC_MESSAGES/iso_3166-1.mo
d9b9982186788df1ff6b6cd60c1b8189  usr/share/locale/ve/LC_MESSAGES/iso_3166-2.mo
5a6affa84afd5e5696029c79acfa9cd1  usr/share/locale/ve/LC_MESSAGES/iso_3166-3.mo
c9e309197532f7ab748e7b2ce0d14907  usr/share/locale/ve/LC_MESSAGES/iso_639-2.mo
137085522ec46eca83861538ad580924  usr/share/locale/ve/LC_MESSAGES/iso_639-3.mo
9f6622573b3439ab0146c507836454bc  usr/share/locale/vi/LC_MESSAGES/iso_15924.mo
41543d9e52eccef2a1e241568a24e5b5  usr/share/locale/vi/LC_MESSAGES/iso_3166-1.mo
209e99c08cc09c151eac87ceaf98dc9f  usr/share/locale/vi/LC_MESSAGES/iso_3166-2.mo
242c272c85d381e29dafb7c087190fb1  usr/share/locale/vi/LC_MESSAGES/iso_3166-3.mo
e3a320821c860a6554a5e41ada65a4c6  usr/share/locale/vi/LC_MESSAGES/iso_4217.mo
e1253603b09402ad208c771dffa73651  usr/share/locale/vi/LC_MESSAGES/iso_639-2.mo
6fd4f1398362e00d600372a0f812b376  usr/share/locale/vi/LC_MESSAGES/iso_639-3.mo
cf63c4f8cb0f84dbc8983dc61622436a  usr/share/locale/wa/LC_MESSAGES/iso_3166-1.mo
b1d0ad56b7ce3f19f44cc4f73a2f6484  usr/share/locale/wa/LC_MESSAGES/iso_3166-2.mo
f3f3d348285b0063e8493b347c46094d  usr/share/locale/wa/LC_MESSAGES/iso_3166-3.mo
f4b8238cec182317b8d48bca2f2eb169  usr/share/locale/wa/LC_MESSAGES/iso_639-2.mo
01e8e97805a704f40c647ef58e4fb0cf  usr/share/locale/wa/LC_MESSAGES/iso_639-3.mo
e1429950d90c7ceb6330a1ba14c66d68  usr/share/locale/wal/LC_MESSAGES/iso_3166-1.mo
c45abe6cb060f4d614a88181301ff0bf  usr/share/locale/wal/LC_MESSAGES/iso_3166-3.mo
e9021e8681a57283f56f9493d777c294  usr/share/locale/wo/LC_MESSAGES/iso_3166-1.mo
a739869fdb650e363dda69c5d4d359eb  usr/share/locale/wo/LC_MESSAGES/iso_3166-3.mo
00883fc676407fd1f58da33b2bbf7a2e  usr/share/locale/xh/LC_MESSAGES/iso_3166-1.mo
23dc3d324e39de2b7bb5c42574cfbb4a  usr/share/locale/xh/LC_MESSAGES/iso_3166-3.mo
391e579ab915ddd49a9b1accccc04f0f  usr/share/locale/xh/LC_MESSAGES/iso_639-2.mo
64329d4cc0da05cc5cca4833b8cd1bf8  usr/share/locale/xh/LC_MESSAGES/iso_639-3.mo
29de8cae7a81906fb2ae54a0314e79e0  usr/share/locale/yo/LC_MESSAGES/iso_3166-1.mo
c1a5e64bbfc3ab0a820f28f9cfebd170  usr/share/locale/zh_CN/LC_MESSAGES/iso_15924.mo
1a8279ef47aeafceaa1e6fc05dc3e04e  usr/share/locale/zh_CN/LC_MESSAGES/iso_3166-1.mo
d04c307ce96c5775620e937d5044b6ea  usr/share/locale/zh_CN/LC_MESSAGES/iso_3166-2.mo
2ebde00b6409a0ef157a52ddd85b328b  usr/share/locale/zh_CN/LC_MESSAGES/iso_3166-3.mo
8e8c5690f386248d74dc9f8cb5aa2de8  usr/share/locale/zh_CN/LC_MESSAGES/iso_4217.mo
788669566f80dfb6dc62d9a6bbae896b  usr/share/locale/zh_CN/LC_MESSAGES/iso_639-2.mo
c31a05140a7b9e5f3f4daea192283074  usr/share/locale/zh_CN/LC_MESSAGES/iso_639-3.mo
53e363d1e6447a11f497cec678ba2bde  usr/share/locale/zh_HK/LC_MESSAGES/iso_15924.mo
d8fa6c2039072aed78e11aaf93223a0a  usr/share/locale/zh_HK/LC_MESSAGES/iso_3166-1.mo
0cb56c44851e6e5ff1ab468cd1dba335  usr/share/locale/zh_HK/LC_MESSAGES/iso_3166-3.mo
995920373306f31c7aa8ea329b259412  usr/share/locale/zh_HK/LC_MESSAGES/iso_4217.mo
7c6298ec64f1c250abb3e5d2a227b2f1  usr/share/locale/zh_HK/LC_MESSAGES/iso_639-2.mo
baa56a6dbee31790f261e59761ea0e1d  usr/share/locale/zh_Hans/LC_MESSAGES/iso_639-5.mo
2b7c6599a92a9d65fc9f57312472776c  usr/share/locale/zh_Hant/LC_MESSAGES/iso_639-5.mo
13417c016e0aad594bd7c7287ad017d0  usr/share/locale/zh_TW/LC_MESSAGES/iso_15924.mo
4a24f8814f34b5bb13ab472c0108acd5  usr/share/locale/zh_TW/LC_MESSAGES/iso_3166-1.mo
542da3495e17c9259e68ddc987591bd3  usr/share/locale/zh_TW/LC_MESSAGES/iso_3166-2.mo
67fb048e1971c242e4664b4ce15376f3  usr/share/locale/zh_TW/LC_MESSAGES/iso_3166-3.mo
afd2c344a684a1c7bf870cd577525557  usr/share/locale/zh_TW/LC_MESSAGES/iso_4217.mo
02617196341d31ed7e7ae8ed1cb4920b  usr/share/locale/zh_TW/LC_MESSAGES/iso_639-2.mo
d00a0adfe4d5b8301eebb5f4f5673ac6  usr/share/locale/zh_TW/LC_MESSAGES/iso_639-3.mo
6551801b295de2478a774ceb2cba1ade  usr/share/locale/zu/LC_MESSAGES/iso_3166-1.mo
ad64a5caea702cf125fac1c8f319c799  usr/share/locale/zu/LC_MESSAGES/iso_3166-3.mo
1b22c0231dc7cbd0b6a482769dd2d713  usr/share/locale/zu/LC_MESSAGES/iso_639-2.mo
3fa739a13aa12b27e0e61f2a270f22da  usr/share/locale/zu/LC_MESSAGES/iso_639-3.mo
a8ee4fbcd9edb55dfa928a0fdfba0791  usr/share/pkgconfig/iso-codes.pc
6ad3ffad8e73c420526584646b1c86af  usr/share/xml/iso-codes/iso_15924.xml
38048518052b122f729dceef30606ae5  usr/share/xml/iso-codes/iso_3166-1.xml
a523541eb866ff7036b90bc261cb88ed  usr/share/xml/iso-codes/iso_3166-2.xml
d41d8cd98f00b204e9800998ecf8427e  usr/share/xml/iso-codes/iso_3166-3.xml
1da6aaf431b537fe0da54fde1de14926  usr/share/xml/iso-codes/iso_4217.xml
b7c5cb226330952fe4d8707cbd3053db  usr/share/xml/iso-codes/iso_639-2.xml
5b831ed3e4e3bd9e69b78f55fe822d28  usr/share/xml/iso-codes/iso_639-3.xml
aee7defbb430dc89e989a31e6a275a56  usr/share/xml/iso-codes/iso_639-5.xml
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Package: iso-codes
Version: 4.15.0-1
Architecture: all
Maintainer: Dr. Tobias Quathamer <toddy@debian.org>
Installed-Size: 20086
Suggests: isoquery
Section: misc
Priority: optional
Multi-Arch: foreign
Homepage: https://salsa.debian.org/iso-codes-team/iso-codes
Description: ISO language, territory, currency, script codes and their translations
 This package provides the ISO 639, ISO 639-3, and ISO 639-5 language
 code lists, the ISO 4217 currency code list, the ISO 3166 territory
 code list, the ISO 3166-2 sub-territory list, and the ISO 15924
 script code list as JSON files.
 .
 More importantly, it also provides their translations to be used by
 other programs.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Package: iso-codes
Status: install reinstreq half-installed
Priority: optional
Section: misc
Architecture: all
Multi-Arch: foreign
Version: 4.15.0-1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           #
# LDAP Defaults
#

# See ldap.conf(5) for details
# This file should be world readable but not world writable.

#BASE	dc=example,dc=com
#URI	ldap://ldap.example.com ldap://ldap-provider.example.com:666

#SIZELIMIT	12
#TIMELIMIT	15
#DEREF		never

# TLS certificates (needed for GnuTLS)
TLS_CACERT	/etc/ssl/certs/ca-certificates.crt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       [rF 9%Dl
MnAT;}d⭭qD}~F4xv߅KJE/bWV+FUcY K"Z0*vUrQUmv1!DXT
Kk;83Ōt3qrHl&i?hj<.}+2ʋ.
ya,caGb7~n4ܰ_Tǜ1;9^p4s=f9y")/v<[/yb: 	NIU['q Qe>c~*,B%Y}8e3ϝ9[ywfQ|<Bp3wQA_*"M+EPDy) $;ˢYO7gf!_VX'#twNF̻I~IvYV!$Zk^fsbE<ejidwQ>sJ+AYqa,ןgX~Ȳ%y3\@0y=L笈ze:7
ϛhđH>wȃ1?ѝ_hͣ$c6lr,L2G,8-׫ ${p6vX	Fʬ<M3xdUppZPQ1~@jĿAr\E> Y6
AjmuP``c4reX]KpE7f_b1$8KW`BUesd.sA6C>芗VVD+K'R)'6_5GPzwDJ~SVQ2J2X,lIZE\FfQ)Vf>ӷWְybe2FxI|ǞB=$(YVD+%J#	u?B A#UT	y`UvslMCGAT
1y!>+n"`L{~~m!ׂJ#@ iV2,2x\WJ+@∇6eXr:npcpwo;
OIֳt7Bv/OtFHxį1;8~9n'?/˛Cִ)HNDhƈ-AY>NOoe+~,xUҮ؛׹Fb^}#Me75N+8T{1j6X((gZJi=|X5{'MáE .kZ1quJNВPxdX
-[;^ID3QQ09m4R)Ө#`|;}˃3vl{_;tpx͆v<v?W%%F	TD&28Mﾳ"6=	0LT2)`y
/[G+zmtwi2R(x
즀@]Z!d֨r~f~oA.d'.RN'
'A*$l49SfY,,W+8L%(H~RH,f`lkPjԠ
ZQcPڑr.0'+:Ʉwqml8yOllGUѽ}3{#Sx.NH	4KZUJLeynUS^OL:c0~qB`m1	zUE!7.uJWpSwh
M	9W KΎO.jtAb2K3A]'hxgcU@,?CH
K#'3]/%yyUJnÐyD("9Ȉ"C<q*% ZC]>Γ<dQ_8@yA
zK89F$(ώ^Ԯ	[Ew<!bA~j 1eNRI`Bg7Г7!àĽ)tAacB PzmgU* 	3lT!`nD^(0>F"Vx:Ax'Jp~^qkQL$76-A0,N[`Ja(ʹ	JYˠfv7#{C]WԜA&Q83YCVX2 
zQ!uvv|1(XJ"$Zۧ{keI@8~4JizX$P:OPcLхldqxr[ @NNPNNodyB@]Fê=D\.`"xE&B&lDTUHy-J+eeJ+NQ!ʯ)O٠?s  o)B93U#_"7PT^`	P8Uvq#Q&"	IcL~ "4Q	hݨ!6ؙxCG?0/d>ٓ70
Qiȍz2*޸5m[6	bȭ^v
43A\E0pTP4dbM\8|Ë[oNF$WFC)Z~@zk#]({kRSR^Jv"_l ᥏FԐryxrMVNUƈ]⼋v+Y"",4Ijڤb^cꉆdxALOgk}|(R;p>v;Hy*dh
[jkc11s=uU1k(Y!
a'HeQǰ[֞mNjy2ɏOXvh6
*4`j|S/Xl\uSM 3SتRyhYe#QTh2v<--67cP#*\kg;
_խYϑ,Ajz(%V [%&Qʅ%H#9}PXǃ+g{ph9ϻSYA(qJ쾓 KqAڤ<{UT)U` zfQ +/*;5[1T<KafsvCTαL<FR!BކE\T+5z9\;캔eX=;%;9z"ĢԲӾ>n;ݝ(!gA'$zyMAPƢ:Ng&$a9U1ZLS	nAR\`b=^%h/Sa,
-ЂOf緪!+7jeBΎ5d:FExc@܅bB[<qi]Ky
eDkx&R@6F#8.n.!9pӶe{Kҧl/r*&e1}cb(|hIcԐfu8N~cڤe%g!
Tޯo>_?\\3DH+.U>Jô~N3Ku,gAp:}3?98~w=<>3?z6&*7(g`TrF>AxoHl(ՉZk5 @HLzG5C,UI#9xѬ.^$v"*R"dZ?Ʋg:
6Mѫ۹
W֛d#:8:+R;[PP{i:O Ii݂Tm{{MSVη]N(-qals?6O[&~]4TJZ+:$9!+^+@S>pueoZP`p1R4P3 zӊ lMDP*Xe#?B6?<[l׿la(UQԩ:풯 CGkF)ѯh92 	Ѩ$/7c]ed^h|q.NVFZZo=!TcPWy<z1u3\YPQޤI@gLdvY$:]l2Y2臕/ߗ;T~[ߍj4CuA`y EʼD^ȦM3a`T<#a*Rm#w6ah1s1\LfI
韼ڡҞݼ91}<5)IM]7FvtTØGvbS7e:Si*ƭ%cC{" VZNPVcNek=;t'8|qk{:➍fo4)fOx{ǯq[/Vw8{i6aglz{ݛWYeMC=d	B}%(\q4$`8h.}7\pXpopJMsopM (TO~g΋p@S;f2Zw=Z"cl[V#3;|hD'?F@³(..
LlEy鵏𤴦W	 ^%:SvJs1O8Xw0t>KnGڟ 
GH,	u&bW/{GN+?o2+MZiA'cg&=3I+Jol=uf}vG:p(pXCeXvM?vM})m}a!<9ӸXyY©ueㅺ|ssucUYϜVVM}9JqvκZcsm_ <!{aNZP禓4yD㶹a& dK×4e?-f2z;1Ueevn.Sئ]uu:SoУ[OҤuRN=(|ZLTlVe,,?.he$Je`4t($up9yBbzl:-V=+9Х%T,(5?8WZ.$WyzT`rXۛ:W&R۠'"VbPD᥺itVĨeua,Eɪ)퉢Q_j5uzK*~ w?8H髻M:䠇b~?Ekzjn5+uOY},%n=ET@ŚʸF]ui<%&짥sѤM7;
g]3k򘲾)ʠW-b'Xd(Y[ EW`u]E94Oy9uD>A+1gTAV=ܽUcGdU:mdUL1P9>O]h)~jO{jG(5Z 2DZgenףx#;;d}ViӛwHV?/̍K3u0zU*4:t%'!2J0r#@"~gmt:kUn{"KUһ"Go+׶۶DlZQ!ɼBI 7ܴ<*EID(jѯ:gvv`/s9s4_*Uk|,{\ѾOݨd`=|MJi/03+I	:Wq?O.hrA
;i@Fz9@;\ͨΙa:+wg@.i-W1^9L}bRj2In~~Jܠ[[跃)K]RgUFpW#n@'^Y>>.)*ނ0+ F(ɀ̗{a r>`v;K+0@SA;GT-Tׅҥ)_%ÎGF@H!Hoq@3nK̑{;ڿeAI[ֿs$
rd
^[sIYkėߐj{wK32y9-REɷE
TX:|p~)s
kdy~UEo6ߺ}=%i{W>+n'LU<mNJ2rs\8ez3C˺F#y@)YkT+jvJ+U2PMzGTRs wz݅Ppvhq;'
t"K>aa0
ӽ( vH~BYhZ*6ɺV~4Z){3+LPzԫCJs^!0nm'ŏ4|,ri7h"mTLݟP2ug)+h%*
: YMߣ\ m7&*L=B_9SJa߶
	{X$S-",܌ho,8a#8ŎV0D	F!(ޢH)ʠ$U\g
G)ۉڕf]RuBۺuî/N462FynTaWb:[>BBn&w@qB/t"p1
{7%m[W}L7HxuG'yyC!!WRzxqrqMe+vQQIu&Di\߼O,9[9N<\A)+BdBXw빱@yɻ*k# %XY۸k-aN'j99X0S,;?9-Gmdj5hY{K'aƔJ6EtT;?$K
-;;9iN4aJT(WdFIud!jpO,qPPVQywh(
b~u~Fc	*-)[IjRy׆Jéw
_ε߰k}LCg4vef:EMYd6IA_0ŏv-??"`gTV]h9&QP/SzOt9Z9Wg'ԚK5t3C
H>=
>}V iA{^> >+`EʹsQ+.zsEܢh&nL,(Tc=rhySJWB-F߻nX1kRW>.cFLUS)X@j U"	$&D鍁ԗk#ı{b;D.}R	D%W,r9F1["-#$XA)ך%JX8#$x3|:ʴ	,N~Ou:Ly⦴^/*)!j|%;<\)PIǛ>ydZHJ4`ĸl3
þWwcc"Eq 	d5)7AM3ڧ;ixe
+A	lQ?^R':>`H></AaB%ƧK֢noGvirG(Y.y!"c
s^rHm
\`PP9Ht>&#~/k&V                                                                                                                                                                                                                                                                                                                                                                         Zn9}N}I0u؇Vv
8q`;T7%qݷi}S%yYbԩbTMbǋ`ۛSv+2`&d8o>gLkTK-X*\˲`%<ʄb6nd)X.~a8
Tƫ=шF0TUY--KE@	jT2XUPעdb-~z<yl3lE]A.Y۔5Sgx*jE~]~\ޭ>q4*<IRY2mf=)60YhQdoq_{䞪.z>O"1زL&ӞpSH\y(5c+C{dFN,eQeo߼O\5$,)qg;.+sto=qT,[phDG٧de)|k%C,Uo4ڥOe)R9o\T\w]D^؟؟Û̹|XL6"]nF6?N2i&
V{Hhy	?`	ɬ8|7ecT7.qS0\V>q"M4fӺ}py])לI$B>B8Eh
E5tk{PC` s$,J~Fq 3zB xq3'xꦰ z\%{2ǺQo-@(__ k5g &n
?3tlסd8
ތϏ%HDGų?t|ڛ˻s@EX:bIeBBT<C(Z>TInWeE}KBjD7V@vꏌnu5.XWR 呷J_ӗ"Ps06C8N6	&,H0 ]BeMBk:!66"3	))J'.60Cf-N+&s턌Mer ʵc xxBHD9"!\&It2~F2A`CLV%̥?0\܌f<0ubF9(|iEZ#6I BgxQkl+C\d\)&RPa6NK<99T$~(ܩ!xRx#&W{bv)jALթ`TD
=:!nnԗDT
@_1a
BtEyFzN<j=kɛdV#cZ}&:ޞ4UJR&c60xҵnSd@EQ(XQ6F'[m EðmQ9O䲸v5M907f؈3E===0RZxqE*{&'!hak"8˳j_LMeFr1U O$ww	uв+q)0LEiU lj<?^Ե6p+
`%kC:yzEi!A>'ۿ_)J<v톭ܢ24Զ>Sh8TIf( lf:5T 2vqpDdN8k3rO`*R{oNADދZwdDnu[|_[}[.o/^yt ]*5b{agyNk}:;R6|6RY]%2ov5뱔4/mx^~:s݀1 4); [Цņ,l%xjxsuH)uT\]&(d/,qMa3kNH7`̜V$h"hrbkzrÊU*Մ؞Eǋ+3;Ot(Mʘ5BC%R턝}rϦ6Z/ C.`pt5 f4՜T˵o&TC--qALÐ!̤DU&Vщ̝jgU=4b~
0imN"73JNwB)NEڍ
 _yl_į޳|ڗ!<HKU6!(E	<QH"TUvIFqTOt lӄșBVvTڟi ejihG7ᾢ1{ԉ⃙r{K҇"0i@
zQSهvNLNnw Li"꽻7b8nK4o#>s2;1
$$(8<ir Y*7-0Zf4U8<~B2H\7@Pn4>naX"XյG}c/H4b}2or3Wh
A6,g4:<Gh`H1z@gOet-Eu{
'nj]7ԗ@I]8ܫ t;Oytj٭qCmb։BoZX#d_2(>qFq񣧣excn~_ܚYXؽn),]qћf$e8gy
 FR$|o7>Л
/JJ]5>\cFK41ܤ.ˬuQ$>h
֠ٔV
QzH@$G@=7/M{eU 6
zDԵ5$_o߁:UnyL16Rzٲ~=ռh4=E2kCjCvf'а8F(kVL2_pWR$0hNGΦ2,	Z˲%50HȢ׼(u*]ŋE!?88` b_dzޏhhʲ^~]_}Y|}T17'w6<jOK~ZξVIsI;tĂ\]fcweW)``[0'b B!vG>rI4Ԋ!Me\.?Z͗AgSȊ?P*'c$Yԇ]je>D<C=ORyeާ)=)~GQvHCo"l.ÒrVaSnMu2k
Ԏ[<:$R
"2zoZ|»g~1gne\/{cRf3XP+@7T+M}3ZR9#=BI-QM3?'Da5ezk#î!mLu'`
+7RP=
x-z[3K~uHa2o:WxP3j~lFl^Y+
ܗ0r?VkOC3+qP;Ö}&}|UPfγ~
h9<5bA(                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: OpenLDAP
Source: https://openldap.org/
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1998-2013 Kurt D. Zeilenga.
           Portions Copyright 1998-2006 Net Boolean Incorporated.
           Portions Copyright 2001-2006 IBM Corporation.
           Portions Copyright 1999-2008 Howard Y.H. Chu.
           Portions Copyright 1999-2008 Symas Corporation.
           Portions Copyright 1998-2003 Hallvard B. Furuseth.
           Portions Copyright 2007-2011 Gavin Henry.
           Portions Copyright 2007-2011 Suretec Systems Ltd.
           Portions Copyright (c) 1992-1996 Regents of the University of Michigan.
License: OpenLDAP-2.8
Comment:
 Redistribution and use in source and binary forms, with or without
 modification, are permitted only as authorized by the OpenLDAP
 Public License.
 .
 A copy of this license is available in the file LICENSE in the
 top-level directory of the distribution or, alternatively, at
 <http://www.OpenLDAP.org/license.html>.
 .
 OpenLDAP is a registered trademark of the OpenLDAP Foundation.
 .
 Individual files and/or contributed packages may be copyright by
 other parties and/or subject to additional restrictions.
 .
 This work is derived from the University of Michigan LDAP v3.3
 distribution.  Information concerning this software is available
 at <http://www.umich.edu/~dirsvcs/ldap/ldap.html>.
 .
 This work also contains materials derived from public sources.
 .
 Additional information about OpenLDAP can be obtained at
 <http://www.openldap.org/>.
Files-Excluded: doc/drafts/*
                doc/rfc/*
                servers/slapd/schema/collective.schema
                servers/slapd/schema/corba.schema
                servers/slapd/schema/core.ldif
                servers/slapd/schema/core.schema
                servers/slapd/schema/cosine.schema
                servers/slapd/schema/duaconf.schema
                servers/slapd/schema/inetorgperson.schema
                servers/slapd/schema/java.schema
                servers/slapd/schema/namedobject.schema
                servers/slapd/schema/pmi.schema

Files: *
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           All rights reserved.
License: OpenLDAP-2.8

Files: aclocal.m4
Copyright: Copyright (C) 1996-2018 Free Software Foundation, Inc.
           Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
           Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com>
License: FSF-unlimited and GPL-2+ with Autoconf exception

Files: contrib/ldapc++/*
Copyright: Copyright 2000-2022 The OpenLDAP Foundation.
License: OpenLDAP-2.8

Files: build/config.guess
       build/config.sub
       contrib/ldapc++/config.guess
       contrib/ldapc++/config.sub
Copyright: Copyright 1992-2020 Free Software Foundation, Inc.
License: GPL-3+ with Autoconf exception

Files: build/libtool.m4
Copyright: Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc.
License: FSF-unlimited

Files: build/ltmain.sh
       contrib/ldapc++/ltmain.sh
Copyright: Copyright (C) 1996-2015 Free Software Foundation, Inc.
           Copyright (C) 2004-2015 Free Software Foundation, Inc.
           Copyright (C) 2010-2015 Free Software Foundation, Inc.
License: GPL-2+ with Libtool exception and GPL-3+ with Libtool exception and GPL-3+

Files: build/lt~obsolete.m4
       build/ltoptions.m4
       build/ltsugar.m4
       build/ltversion.m4
Copyright: Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software Foundation, Inc.
License: FSF-unlimited

Files: build/missing
       contrib/ldapc++/missing
Copyright: Copyright (C) 1996-2014 Free Software Foundation, Inc.
License: GPL-2+ with Autoconf exception

Files: build/shtool
Copyright: Copyright (c) 1994-2008 Ralf S. Engelschall <rse@engelschall.com>
License: GPL-2+
Comment:
 NOTICE: Given that you include this file verbatim into your own
 source tree, you are justified in saying that it remains separate
 from your package, and that this way you are simply just using GNU
 shtool. So, in this situation, there is no requirement that your
 package itself is licensed under the GNU General Public License in
 order to take advantage of GNU shtool.

Files: clients/tools/common.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 2003 Kurt D. Zeilenga.
           Portions Copyright 2003 IBM Corporation.
License: OpenLDAP-2.8

Files: clients/tools/ldapcompare.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1998-2003 Kurt D. Zeilenga.
           Portions Copyright 1998-2001 Net Boolean Incorporated.
           Portions Copyright (c) 1992-1996 Regents of the University of Michigan.
           Portions Copyright 2002, F5 Networks, Inc, All rights reserved.
License: OpenLDAP-2.8 and UMich and F5

Files: clients/tools/ldapdelete.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1998-2003 Kurt D. Zeilenga.
           Portions Copyright (c) 1992-1996 Regents of the University of Michigan.
License: OpenLDAP-2.8 and UMich

Files: clients/tools/ldapexop.c
Copyright: Copyright 2005-2022 The OpenLDAP Foundation.
License: OpenLDAP-2.8

Files: clients/tools/ldapmodify.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 2006 Howard Chu.
           Portions Copyright 1998-2003 Kurt D. Zeilenga.
           Portions Copyright 1998-2001 Net Boolean Incorporated.
           Portions Copyright 2001-2003 IBM Corporation.
           Portions Copyright (c) 1992-1996 Regents of the University of Michigan.
License: OpenLDAP-2.8 and UMich

Files: clients/tools/ldapmodrdn.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1998-2003 Kurt D. Zeilenga.
           Portions Copyright 1998-2001 Net Boolean Incorporated.
           Portions Copyright 2001-2003 IBM Corporation.
           Portions Copyright 1999, Juan C. Gomez.
           Portions Copyright (c) 1992-1996 Regents of the University of Michigan.
License: OpenLDAP-2.8 and JCG and UMich

Files: clients/tools/ldappasswd.c
       clients/tools/ldapsearch.c
       clients/tools/ldapwhoami.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1998-2003 Kurt D. Zeilenga.
           Portions Copyright 1998-2001 Net Boolean Incorporated.
           Portions Copyright 2001-2003 IBM Corporation.
           Portions Copyright (c) 1992-1996 Regents of the University of Michigan.
License: OpenLDAP-2.8 and UMich

Files: clients/tools/ldapurl.c
Copyright: Copyright 2008-2022 The OpenLDAP Foundation.
           Portions Copyright 2008 Pierangelo Masarati, SysNet
           Portions Copyright (c) 1992-1996 Regents of the University of Michigan.
License: OpenLDAP-2.8 and UMich

Files: clients/tools/ldapvc.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 2010 Kurt D. Zeilenga.
           Portions Copyright (c) 1992-1996 Regents of the University of Michigan.
License: OpenLDAP-2.8 and UMich

Files: configure
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
           Copyright (C) 2012 Free Software Foundation, Inc.
           Copyright (C) 2014 Free Software Foundation, Inc.
License: OpenLDAP-2.8 and FSF-unlimited and GPL-2+ with Libtool exception

Files: contrib/ldapc++/aclocal.m4
Copyright: Copyright (C) 1996-2017 Free Software Foundation, Inc.
           Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc.
           Copyright (C) 2014 Free Software Foundation, Inc.
License: FSF-unlimited and GPL-2+ with Libtool exception

Files: contrib/ldapc++/configure
Copyright: Copyright 2000-2022 The OpenLDAP Foundation.
           Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
           Copyright (C) 2012 Free Software Foundation, Inc.
           Copyright (C) 2014 Free Software Foundation, Inc.
License: OpenLDAP-2.8 and FSF-unlimited and GPL-2+ with Libtool exception

Files: contrib/ldapc++/depcomp
Copyright: Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
License: GPL-2+ with Autoconf exception

Files: contrib/ldapc++/examples/Makefile.in
       contrib/ldapc++/Makefile.in
Copyright: Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation, Inc.
           Copyright 2003-2022 The OpenLDAP Foundation.
License: FSF-unlimited and OpenLDAP-2.8

Files: contrib/ldapc++/install-sh
Copyright: Copyright (C) 1994 X Consortium
License: MIT-XC
Comment:
 FSF changes to this file are in the public domain.

Files: contrib/ldaptcl/configure
Copyright: Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
License: FSF-unlimited

Files: contrib/ldaptcl/ldaperr.tcl
       contrib/ldaptcl/ldap.n
       contrib/ldaptcl/Makefile.in
       contrib/ldaptcl/man.macros
       contrib/ldaptcl/neoXldap.c
       contrib/ldaptcl/pkgIndex.tcl.in
       contrib/ldaptcl/tclAppInit.c
       contrib/ldaptcl/tkAppInit.c
Copyright: Copyright (c) 1998-1999 NeoSoft, Inc.
           All Rights Reserved.
License: NeoSoft-permissive
 This software may be used, modified, copied, distributed, and sold,
 in both source and binary form provided that these copyrights are
 retained and their terms are followed.
 .
 Under no circumstances are the authors or NeoSoft Inc. responsible
 for the proper functioning of this software, nor do the authors
 assume any liability for damages incurred with its use.
 .
 Redistribution and use in source and binary forms are permitted
 provided that this notice is preserved and that due credit is given
 to NeoSoft, Inc.
 .
 NeoSoft, Inc. may not be used to endorse or promote products derived
 from this software without specific prior written permission. This
 software is provided ``as is'' without express or implied warranty.
 .
 Requests for permission may be sent to NeoSoft Inc, 1770 St. James Place,
 Suite 500, Houston, TX, 77056.

Files: contrib/slapd-modules/acl/gssacl.c
Copyright: Copyright 2011 PADL Software Pty Ltd.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/addpartial/*
Copyright: Copyright 2004-2022 The OpenLDAP Foundation.
           Portions Copyright (C) 2004 Virginia Tech, David Hawes.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/adremap/*
Copyright: Copyright 2015 Howard Chu <hyc@symas.com>.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/autogroup/*
Copyright: Copyright 2007-2022 The OpenLDAP Foundation.
           Portions Copyright 2007 Michał Szulczyński.
           Portions Copyright 2009 Howard Chu.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/cloak/cloak.c
Copyright: Copyright 2008-2022 The OpenLDAP Foundation.
           Portions Copyright 2008 Emmanuel Dreyfus
License: OpenLDAP-2.8

Files: contrib/slapd-modules/comp_match/*
Copyright: Copyright 2004 Sang Seok Lim, IBM . All rights reserved.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/datamorph/Makefile
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Copyright 2017 Ondřej Kuzník, Symas Corp. All Rights Reserved.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/datamorph/slapo-datamorph.5
Copyright: Copyright 2016-2017 Symas Corp. All Rights Reserved.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/lastbind/*
Copyright: Copyright 2009 Jonathan Clarke <jonathan@phillipoux.net>.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/nops/*
Copyright: Copyright 2008-2022 The OpenLDAP Foundation.
           Copyright 2008 Emmanuel Dreyfus.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/nssov/*
       libraries/libldap/tavl.c
       libraries/liblmdb/mdb_load.c
       libraries/liblmdb/mtest6.c
       libraries/liblmdb/midl.h
       libraries/liblmdb/mdb_copy.1
       libraries/liblmdb/mdb_stat.c
       libraries/liblmdb/mtest3.c
       libraries/liblmdb/intro.doc
       libraries/liblmdb/mdb_copy.c
       libraries/liblmdb/mdb_dump.c
       libraries/liblmdb/midl.c
       libraries/liblmdb/mtest4.c
       libraries/liblmdb/sample-bdb.txt
       libraries/liblmdb/mdb_load.1
       libraries/liblmdb/mdb_stat.1
       libraries/liblmdb/sample-mdb.txt
       libraries/liblmdb/mtest5.c
       libraries/liblmdb/mtest2.c
       libraries/liblmdb/mtest.c
       libraries/liblmdb/mdb_dump.1
Copyright: Copyright 2008-2022 The OpenLDAP Foundation.
           Portions Copyright 2004-2022 by Howard Chu, Symas Corp.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/nssov/nssov.*
       contrib/slapd-modules/nssov/pam.c
Copyright: Copyright 2008-2022 The OpenLDAP Foundation.
           Portions Copyright 2008 by Howard Chu, Symas Corp.
           Portions Copyright 2013 by Ted C. Cheng, Symas Corp.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/nssov/nss-pam-ldapd/attrs.h
       contrib/slapd-modules/nssov/nss-pam-ldapd/README
       contrib/slapd-modules/nssov/nss-pam-ldapd/tio.c
       contrib/slapd-modules/nssov/nss-pam-ldapd/tio.h
Copyright: Copyright (C) 2007, 2008, 2012 Arthur de Jong
License: OpenLDAP-2.8

Files: contrib/slapd-modules/nssov/nss-pam-ldapd/nslcd.h
       contrib/slapd-modules/nssov/nss-pam-ldapd/nslcd-prot.h
Copyright: Copyright (C) 2006 West Consulting
           Copyright (C) 2006, 2007, 2009, 2010, 2011, 2012, 2013, 2014 Arthur de Jong
License: OpenLDAP-2.8

Files: contrib/slapd-modules/passwd/totp/*
Copyright: Copyright 2015-2022 The OpenLDAP Foundation.
           Portions Copyright 2015 by Howard Chu, Symas Corp.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/passwd/sha2/*
Copyright: Copyright 2009-2022 The OpenLDAP Foundation.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/passwd/sha2/sha2.*
Copyright: Copyright (c) 2000-2001, Aaron D. Gifford
License: BSD-3-clause

Files: contrib/slapd-modules/passwd/kerberos.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Copyright (c) 1997, 1998, 1999 Kungliga Tekniska H\xf6gskolan
           (Royal Institute of Technology, Stockholm, Sweden).
           Copyright (c) 1989 Regents of the University of California.
License: OpenLDAP-2.8 and BSD-3-clause

Files: contrib/slapd-modules/passwd/apr1.c
Copyright: Copyright 2011 Devin J. Pohly
           Portions Copyright 2011 Howard Chu
           Poul-Henning Kamp <phk@FreeBSD.ORG>
License: OpenLDAP-2.8 and Beerware

Files: contrib/slapd-modules/passwd/apr1-*.pl
Copyright: (C) 2011 Devin J. Pohly
License: public-domain

Files: contrib/slapd-modules/proxyOld/*
Copyright: Copyright 2005-2022 The OpenLDAP Foundation.
           Portions Copyright 2005 by Howard Chu, Symas Corp.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/rbac/slapo-rbac.5
Copyright: Copyright 1999-2021 SYMAS Corporation All Rights Reserved.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/samba4/*
       libraries/libldap/stctrl.c
       libraries/librewrite/Makefile.in
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 2008 Pierangelo Masarati.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/samba4/Makefile
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Copyright 2004 Howard Chu, Symas Corp. All Rights Reserved.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/smbk5pwd/smbk5pwd.c
       contrib/slapd-modules/smbk5pwd/Makefile
Copyright: Copyright 2004-2022 The OpenLDAP Foundation.
           Portions Copyright 2004-2005 by Howard Chu, Symas Corp.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/variant/*
Copyright: Copyright 2016-2021 Symas Corporation.
License: OpenLDAP-2.8

Files: contrib/slapd-modules/variant/tests/*
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
License: OpenLDAP-2.8

Files: contrib/slapd-tools/*
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 2004 Hallvard B. Furuseth.
License: OpenLDAP-2.8

Files: contrib/slapi-plugins/addrdnvalues/*
Copyright: Copyright 2003-2022 The OpenLDAP Foundation.
           Copyright 2003-2004 PADL Software Pty Ltd.
License: OpenLDAP-2.8

Files: doc/man/man5/slapo-remoteauth.5
Copyright: Copyright 2004-2022 The OpenLDAP Foundation.
           Portions Copyright 2004-2017 Howard Chu, Symas Corporation.
           Portions Copyright 2017-2021 Ondřej Kuzník, Symas Corporation.
           Portions Copyright 2004 Hewlett-Packard Company
License: OpenLDAP-2.8

Files: doc/man/man5/slapo-rwm.5
Copyright: Copyright 1998-2022 The OpenLDAP Foundation, All Rights Reserved.
           Copyright 2004, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
License: OpenLDAP-2.8

Files: doc/man/man5/slapd-asyncmeta.5
Copyright: Copyright 2016-2022 The OpenLDAP Foundation.
           Portions Copyright 2016 Symas Corporation.
License: OpenLDAP-2.8

Files: doc/man/man5/slapo-otp.5
Copyright: Copyright 2015-2022 The OpenLDAP Foundation.
           Portions Copyright 2015 by Howard Chu, Symas Corp. All rights reserved.
           Portions Copyright 2018 by Ondřej Kuzník, Symas Corp. All rights reserved.
License: OpenLDAP-2.8

Files: doc/man/man5/slapd-meta.5
       doc/man/man5/slapo-pcache.5
       doc/man/man5/slapo-retcode.5
Copyright: Copyright 1998-2022 The OpenLDAP Foundation, All Rights Reserved.
           Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
License: OpenLDAP-2.8

Files: doc/man/man5/slapo-autoca.5
Copyright: Copyright 2009-2022 The OpenLDAP Foundation All Rights Reserved.
           Copyright 2009-2018 Howard Chu All Rights Reserved.
License: OpenLDAP-2.8

Files: doc/man/man5/slapo-constraint.5
Copyright: Copyright 2005-2006 Hewlett-Packard Company
           Copyright 2006-2022 The OpenLDAP Foundation All Rights Reserved.
License: OpenLDAP-2.8

Files: doc/man/man5/slapo-sssvlv.5
Copyright: Copyright 2009-2022 The OpenLDAP Foundation All Rights Reserved.
           Copyright 2009 Symas Corporation All Rights Reserved.
License: OpenLDAP-2.8

Files: doc/man/man1/ldapexop.1
Copyright: Copyright 2009 Peter Marschall
License: OpenLDAP-2.8

Files: include/ldap_queue.h
Copyright: Copyright 2001-2022 The OpenLDAP Foundation.
           Copyright (c) 1991, 1993 The Regents of the University of California.  All rights reserved.
License: OpenLDAP-2.8 and BSD-4-clause-California

Files: include/slapi-plugin.h
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1997,2002,2003 IBM Corporation.
License: OpenLDAP-2.8

Files: include/rewrite.h
Copyright: Copyright 2000-2022 The OpenLDAP Foundation.
           Portions Copyright 2000-2003 Pierangelo Masarati.
License: OpenLDAP-2.8

Files: include/ldap_utf8.h
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Copyright (C) 2000 Novell, Inc. All Rights Reserved.
License: OpenLDAP-2.8

Files: include/sysexits-compat.h
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright (c) 1987 Regents of the University of California.
License: OpenLDAP-2.8 and BSD-3-clause-variant

Files: include/lutil_meter.h
Copyright: Copyright (c) 2009 by Emily Backes, Symas Corp.
License: OpenLDAP-2.8

Files: include/ldap_avl.h
       include/ldap.h
       include/ldap_defaults.h
       include/ldif.h
       include/ldap_log.h
       include/lber.h
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright (c) 1993 Regents of the University of Michigan.
License: OpenLDAP-2.8 and UMich

Files: libraries/liblutil/getopt.c
       libraries/liblutil/hash.c
       libraries/liblutil/entropy.c
       libraries/libldap/apitest.c
       libraries/libldap/fetch.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1998-2003 Kurt D. Zeilenga.
License: OpenLDAP-2.8

Files: libraries/liblutil/meter.c
Copyright: Copyright (c) 2009 by Emily Backes, Symas Corp.
License: OpenLDAP-2.8

Files: libraries/liblutil/base64.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1998-2003 Kurt D. Zeilenga.
           Portions Copyright 1995 IBM Corporation.
           Copyright (c) 1996, 1998 by Internet Software Consortium.
License: OpenLDAP-2.8 and Expat-ISC

Files: libraries/liblutil/detach.c
       libraries/libldap/testtavl.c
       libraries/libldap/filter.c
       libraries/libldap/search.c
       libraries/libldap/open.c
       libraries/libldap/add.c
       libraries/libldap/avl.c
       libraries/libldap/abandon.c
       libraries/libldap/sbind.c
       libraries/libldap/getentry.c
       libraries/libldap/url.c
       libraries/libldap/sort.c
       libraries/libldap/getvalues.c
       libraries/libldap/delete.c
       libraries/libldap/testavl.c
       libraries/libldap/ldifutil.c
       libraries/libldap/bind.c
       libraries/libldap/compare.c
       libraries/libldap/getattr.c
       libraries/libldap/unbind.c
       libraries/libldap/free.c
       libraries/libldap/lbase64.c
       libraries/libldap/getdn.c
       libraries/liblber/io.c
       libraries/liblber/lber-int.h
       libraries/liblber/bprint.c
       libraries/liblber/idtest.c
       libraries/liblber/decode.c
       libraries/liblber/dtest.c
       libraries/liblber/encode.c
       libraries/liblber/etest.c
       libraries/libldap/addentry.c
       libraries/libldap/ldif.c
       libraries/libldap/ldap-int.h
       libraries/libldap/modify.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Copyright (c) 1990, 1994 Regents of the University of Michigan.
License: OpenLDAP-2.8 and UMich

Files: libraries/liblutil/getpass.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1998-2003 Kurt D. Zeilenga.
           Portions Copyright 2009 Howard Chu.
           Portions Copyright (c) 1992, 1993  Regents of the University of Michigan.
License: OpenLDAP-2.8 and UMich

Files: libraries/liblutil/uuid.c
Copyright: Copyright 2000-2022 The OpenLDAP Foundation.
           Portions Copyright 2000-2003 Kurt D. Zeilenga.
License: OpenLDAP-2.8

Files: libraries/liblunicode/ucdata/MUTTUCData.txt
       libraries/liblunicode/ucdata/ucpgba.h
       libraries/liblunicode/ucdata/ucdata.h
       libraries/liblunicode/ucdata/ucdata.c
       libraries/liblunicode/ucdata/ucpgba.c
       libraries/liblunicode/ucdata/ucgendat.c
       libraries/liblunicode/ure/README
       libraries/liblunicode/ure/urestubs.c
       libraries/liblunicode/ure/ure.c
       libraries/liblunicode/ure/ure.h
       libraries/liblunicode/utbm/utbm.h
       libraries/liblunicode/utbm/utbmstub.c
       libraries/liblunicode/utbm/utbm.c
       libraries/liblunicode/utbm/README
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Copyright 1997-2001 Computing Research Labs
License: OpenLDAP-2.8 and Expat-UNM

Files: libraries/libldap/pagectrl.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Copyright 2006 Hans Leidekker
License: OpenLDAP-2.8

Files: libraries/libldap/utf-8-conv.c
       libraries/libldap/result.c
       libraries/libldap/vlvctrl.c
       libraries/libldap/controls.c
       libraries/libldap/sortctrl.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright (C) 1999, 2000 Novell, Inc. All Rights Reserved.
License: OpenLDAP-2.8

Files: libraries/libldap/deref.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 2008 Pierangelo Masarati.
License: OpenLDAP-2.8

Files: libraries/libldap/modrdn.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright (c) 1990 Regents of the University of Michigan.
           Copyright 1999, Juan C. Gomez, All rights reserved.
License: OpenLDAP-2.8 and Expat

Files: libraries/libldap/os-local.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright (c) 1995 Regents of the University of Michigan.
           Portions (C) Copyright PADL Software Pty Ltd. 1999
License: OpenLDAP-2.8 and Expat

Files: libraries/libldap/msctrl.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 2018 Howard Chu.
License: OpenLDAP-2.8

Files: libraries/libldap/dds.c
Copyright: Copyright 2005-2022 The OpenLDAP Foundation.
           Portions Copyright 2005-2006 SysNet s.n.c.
License: OpenLDAP-2.8

Files: libraries/libldap/os-ip.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1999 Lars Uffmann.
           Portions Copyright (c) 1995 Regents of the University of Michigan.
License: OpenLDAP-2.8

Files: libraries/libldap/ppolicy.c
Copyright: Copyright 2004-2022 The OpenLDAP Foundation.
           Portions Copyright 2004 Hewlett-Packard Company.
           Portions Copyright 2004 Howard Chu, Symas Corp.
License: OpenLDAP-2.8

Files: libraries/libldap/rq.c
Copyright: Copyright 2003-2022 The OpenLDAP Foundation.
           Portions Copyright 2003 IBM Corporation.
License: OpenLDAP-2.8

Files: libraries/libldap/request.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright (c) 1995 Regents of the University of Michigan.
           Copyright (C) 1999, 2000 Novell, Inc. All Rights Reserved.
License: OpenLDAP-2.8

Files: libraries/libldap/account_usability.c
Copyright: Copyright 2004-2022 The OpenLDAP Foundation.
           Portions Copyright 2004 Hewlett-Packard Company.
           Portions Copyright 2004 Howard Chu, Symas Corp.
License: OpenLDAP-2.8

Files: libraries/libldap/util-int.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1998 A. Hartgers.
License: OpenLDAP-2.8

Files: libraries/liblmdb/mdb.c
       libraries/liblmdb/lmdb.h
Copyright: Copyright 2011-2021 Howard Chu, Symas Corp.
           Copyright (c) 2009, 2010 Martin Hedenfalk <martin@bzero.se>
License: OpenLDAP-2.8 and Expat

Files: servers/slapd/back-asyncmeta/Makefile.in
       servers/slapd/back-asyncmeta/search.c
       servers/slapd/back-asyncmeta/init.c
       servers/slapd/back-asyncmeta/message_queue.c
       servers/slapd/back-asyncmeta/modrdn.c
       servers/slapd/back-asyncmeta/add.c
       servers/slapd/back-asyncmeta/config.c
       servers/slapd/back-asyncmeta/back-asyncmeta.h
       servers/slapd/back-asyncmeta/conn.c
       servers/slapd/back-asyncmeta/delete.c
       servers/slapd/back-asyncmeta/bind.c
       servers/slapd/back-asyncmeta/candidates.c
       servers/slapd/back-asyncmeta/compare.c
       servers/slapd/back-asyncmeta/dncache.c
       servers/slapd/back-asyncmeta/proto-asyncmeta.h
       servers/slapd/back-asyncmeta/modify.c
       servers/slapd/back-asyncmeta/meta_result.c
Copyright: Copyright 2016-2022 The OpenLDAP Foundation.
           Copyright 2016 Symas Corporation.
           All rights reserved.
License: OpenLDAP-2.8

Files: servers/slapd/back-asyncmeta/map.c
Copyright: Copyright 2016-2022 The OpenLDAP Foundation.
           Copyright 2016 Symas Corporation.
           Copyright 1999, Howard Chu <hyc@highlandsun.com>
           All rights reserved.
License: OpenLDAP-2.8

Files: servers/slapd/back-dnssrv/Makefile.in
       servers/slapd/back-dnssrv/search.c
       servers/slapd/back-dnssrv/init.c
       servers/slapd/back-dnssrv/config.c
       servers/slapd/back-dnssrv/referral.c
       servers/slapd/back-dnssrv/bind.c
       servers/slapd/back-dnssrv/compare.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Copyright 1998-2003 Kurt D. Zeilenga.
License: OpenLDAP-2.8

Files: servers/slapd/back-ldap/monitor.c
       servers/slapd/back-ldap/search.c
       servers/slapd/back-ldap/init.c
       servers/slapd/back-ldap/modrdn.c
       servers/slapd/back-ldap/add.c
       servers/slapd/back-ldap/back-ldap.h
       servers/slapd/back-ldap/config.c
       servers/slapd/back-ldap/delete.c
       servers/slapd/back-ldap/bind.c
       servers/slapd/back-ldap/compare.c
       servers/slapd/back-ldap/unbind.c
       servers/slapd/back-ldap/modify.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1999-2003 Howard Chu.
           Portions Copyright 2000-2003 Pierangelo Masarati.
License: OpenLDAP-2.8

Files: servers/slapd/back-ldap/chain.c
       servers/slapd/back-ldap/distproc.c
       servers/slapd/back-ldap/pbind.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1999-2003 Howard Chu.
License: OpenLDAP-2.8

Files: servers/slapd/back-meta/search.c
       servers/slapd/back-meta/init.c
       servers/slapd/back-meta/suffixmassage.c
       servers/slapd/back-meta/modrdn.c
       servers/slapd/back-meta/add.c
       servers/slapd/back-meta/config.c
       servers/slapd/back-meta/conn.c
       servers/slapd/back-meta/delete.c
       servers/slapd/back-meta/bind.c
       servers/slapd/back-meta/candidates.c
       servers/slapd/back-meta/map.c
       servers/slapd/back-meta/proto-meta.h
       servers/slapd/back-meta/compare.c
       servers/slapd/back-meta/dncache.c
       servers/slapd/back-meta/back-meta.h
       servers/slapd/back-meta/unbind.c
       servers/slapd/back-meta/modify.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 2001-2003 Pierangelo Masarati.
           Portions Copyright 1999-2003 Howard Chu.
License: OpenLDAP-2.8

Files: servers/slapd/back-monitor/time.c
       servers/slapd/back-monitor/search.c
       servers/slapd/back-monitor/proto-back-monitor.h
       servers/slapd/back-monitor/init.c
       servers/slapd/back-monitor/backend.c
       servers/slapd/back-monitor/conn.c
       servers/slapd/back-monitor/overlay.c
       servers/slapd/back-monitor/cache.c
       servers/slapd/back-monitor/back-monitor.h
       servers/slapd/back-monitor/log.c
       servers/slapd/back-monitor/sent.c
       servers/slapd/back-monitor/bind.c
       servers/slapd/back-monitor/rww.c
       servers/slapd/back-monitor/operational.c
       servers/slapd/back-monitor/database.c
       servers/slapd/back-monitor/compare.c
       servers/slapd/back-monitor/listener.c
       servers/slapd/back-monitor/thread.c
       servers/slapd/back-monitor/entry.c
       servers/slapd/back-monitor/operation.c
       servers/slapd/back-monitor/modify.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 2001-2003 Pierangelo Masarati.
License: OpenLDAP-2.8

Files: servers/slapd/back-passwd/search.c
       servers/slapd/back-passwd/config.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright (c) 1995 Regents of the University of Michigan.
License: OpenLDAP-2.8 and UMich

Files: servers/slapd/back-perl/close.c
       servers/slapd/back-perl/search.c
       servers/slapd/back-perl/init.c
       servers/slapd/back-perl/proto-perl.h
       servers/slapd/back-perl/modrdn.c
       servers/slapd/back-perl/add.c
       servers/slapd/back-perl/config.c
       servers/slapd/back-perl/delete.c
       servers/slapd/back-perl/bind.c
       servers/slapd/back-perl/compare.c
       servers/slapd/back-perl/perl_back.h
       servers/slapd/back-perl/modify.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1999 John C. Quillan.
           Portions Copyright 2002 myinternet Limited.
License: OpenLDAP-2.8

Files: servers/slapd/back-perl/Makefile.in
       servers/slapd/back-perl/SampleLDAP.pm
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1999 John C. Quillan.
License: OpenLDAP-2.8

Files: servers/slapd/back-relay/init.c
       servers/slapd/back-relay/back-relay.h
       servers/slapd/back-relay/op.c
       servers/slapd/back-relay/proto-back-relay.h
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 2004 Pierangelo Masarati.
License: OpenLDAP-2.8

Files: servers/slapd/back-sql/entry-id.c
       servers/slapd/back-sql/search.c
       servers/slapd/back-sql/back-sql.h
       servers/slapd/back-sql/add.c
       servers/slapd/back-sql/config.c
       servers/slapd/back-sql/sql-wrap.c
       servers/slapd/back-sql/schema-map.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1999 Dmitry Kovalev.
           Portions Copyright 2002 Pierangelo Masarati.
           Portions Copyright 2004 Mark Adamson.
License: OpenLDAP-2.8

Files: servers/slapd/back-sql/rdbms_depend/*
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 2002 Pierangelo Masarati.
License: OpenLDAP-2.8

Files: servers/slapd/back-sql/rdbms_depend/timesten/dnreverse/Makefile
       servers/slapd/back-sql/rdbms_depend/timesten/dnreverse/dnreverse.cpp
Copyright: 1997-2022 The OpenLDAP Foundation.
           (c) Copyright 1996-1998, TimesTen Performance Software.
License: OpenLDAP-2.8

Files: servers/slapd/back-sql/init.c
       servers/slapd/back-sql/modrdn.c
       servers/slapd/back-sql/api.c
       servers/slapd/back-sql/delete.c
       servers/slapd/back-sql/bind.c
       servers/slapd/back-sql/operational.c
       servers/slapd/back-sql/compare.c
       servers/slapd/back-sql/proto-sql.h
       servers/slapd/back-sql/util.c
       servers/slapd/back-sql/modify.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1999 Dmitry Kovalev.
           Portions Copyright 2002 Pierangelo Masarati.
License: OpenLDAP-2.8

Files: servers/slapd/abandon.c
       servers/slapd/aci.c
       servers/slapd/acl.c
       servers/slapd/aclparse.c
       servers/slapd/add.c
       servers/slapd/attr.c
       servers/slapd/ava.c
       servers/slapd/backend.c
       servers/slapd/bind.c
       servers/slapd/ch_malloc.c
       servers/slapd/compare.c
       servers/slapd/config.c
       servers/slapd/connection.c
       servers/slapd/delete.c
       servers/slapd/dn.c
       servers/slapd/entry.c
       servers/slapd/filter.c
       servers/slapd/filterentry.c
       servers/slapd/frontend.c
       servers/slapd/init.c
       servers/slapd/lock.c
       servers/slapd/main.c
       servers/slapd/modify.c
       servers/slapd/mods.c
       servers/slapd/operation.c
       servers/slapd/phonetic.c
       servers/slapd/proto-slap.h
       servers/slapd/result.c
       servers/slapd/slap.h
       servers/slapd/value.c
       servers/slapd/search.c
       servers/slapd/str2filter.c
       servers/slapd/unbind.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright (c) 1995 Regents of the University of Michigan.
License: OpenLDAP-2.8 and UMich

Files: servers/slapd/daemon.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 2007 by Howard Chu, Symas Corporation.
           Portions Copyright (c) 1995 Regents of the University of Michigan.
License: OpenLDAP-2.8 and UMich

Files: servers/slapd/syncrepl.c
Copyright: Copyright 2003-2022 The OpenLDAP Foundation.
           Portions Copyright 2003 by IBM Corporation.
           Portions Copyright 2003-2008 by Howard Chu, Symas Corporation.
License: OpenLDAP-2.8

Files: servers/slapd/modrdn.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1999, Juan C. Gomez, All rights reserved.
           Portions Copyright (c) 1995 Regents of the University of Michigan.
License: OpenLDAP-2.8 and UMich

Files: servers/slapd/saslauthz.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 2000 Mark Adamson, Carnegie Mellon.
License: OpenLDAP-2.8

Files: servers/slapd/slapacl.c
       servers/slapd/slapadd.c
       servers/slapd/slapauth.c
       servers/slapd/slapcat.c
       servers/slapd/slapcommon.c
       servers/slapd/slapmodify.c
       servers/slapd/slapschema.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1998-2003 Kurt D. Zeilenga.
           Portions Copyright 2003 IBM Corporation.
License: OpenLDAP-2.8

Files: servers/slapd/slapindex.c
       servers/slapd/slappasswd.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1998-2003 Kurt D. Zeilenga.
License: OpenLDAP-2.8

Files: servers/slapd/slapdn.c
       servers/slapd/slaptest.c
Copyright: Copyright 2004-2022 The OpenLDAP Foundation.
           Portions Copyright 2004 Pierangelo Masarati.
License: OpenLDAP-2.8

Files: servers/slapd/user.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 1999 PM Lashley.
License: OpenLDAP-2.8

Files: servers/slapd/component.c
       servers/slapd/component.h
       servers/slapd/ctxcsn.c
       servers/slapd/ldapsync.c
       servers/slapd/zn_malloc.c
Copyright: Copyright 2003-2022 The OpenLDAP Foundation.
           Portions Copyright 2003 by IBM Corporation.
License: OpenLDAP-2.8

Files: servers/slapd/syslog.c
Copyright: Copyright (c) 1983, 1988, 1993 The Regents of the University of California.  All rights reserved.
License: BSD-3-clause-California

Files: servers/slapd/overlays/dynlist.c
Copyright: Copyright 2003-2022 The OpenLDAP Foundation.
           Portions Copyright 2004-2005 Pierangelo Masarati.
           Portions Copyright 2008 Emmanuel Dreyfus.
License: OpenLDAP-2.8

Files: servers/slapd/overlays/sssvlv.c
       servers/slapd/overlays/translucent.c
       servers/slapd/overlays/auditlog.c
       servers/slapd/overlays/homedir.c
       servers/slapd/overlays/accesslog.c
       servers/slapd/overlays/refint.c
       servers/slapd/overlays/valsort.c
       servers/slapd/overlays/unique.c
Copyright: Copyright 2004-2022 The OpenLDAP Foundation.
           Portions Copyright 2004,2006-2007 Symas Corporation.
License: OpenLDAP-2.8

Files: servers/slapd/overlays/rwmdn.c
       servers/slapd/overlays/rwmmap.c
       servers/slapd/overlays/rwm.c
       servers/slapd/overlays/rwm.h
       servers/slapd/overlays/rwmconf.c
Copyright: Copyright 1999-2022 The OpenLDAP Foundation.
           Portions Copyright 1999-2003 Howard Chu.
           Portions Copyright 2000-2003 Pierangelo Masarati.
License: OpenLDAP-2.8

Files: servers/slapd/overlays/deref.c
       servers/slapd/overlays/memberof.c
       servers/slapd/overlays/retcode.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 2005-2008 Pierangelo Masarati.
License: OpenLDAP-2.8

Files: servers/slapd/overlays/remoteauth.c
Copyright: Copyright 2004-2022 The OpenLDAP Foundation.
           Portions Copyright 2017-2021 Ondřej Kuzník, Symas Corporation.
           Portions Copyright 2004-2017 Howard Chu, Symas Corporation.
           Portions Copyright 2004 Hewlett-Packard Company.
License: OpenLDAP-2.8

Files: servers/slapd/overlays/constraint.c
Copyright: Copyright 2003-2004 Hewlett-Packard Company
           Copyright 2007 Emmanuel Dreyfus
License: OpenLDAP-2.8

Files: servers/slapd/overlays/pcache.c
Copyright: Copyright 2003-2022 The OpenLDAP Foundation.
           Copyright 2003 IBM Corporation.
           Copyright 2003-2009 Symas Corporation.
License: OpenLDAP-2.8

Files: servers/slapd/overlays/dyngroup.c
       servers/slapd/overlays/collect.c
       servers/slapd/overlays/overlays.c
       servers/slapd/overlays/autoca.c
Copyright: Copyright 2003-2022 The OpenLDAP Foundation.
           Copyright 2003-2018 by Howard Chu.
License: OpenLDAP-2.8

Files: servers/slapd/overlays/otp.c
Copyright: Copyright 2015-2022 The OpenLDAP Foundation.
           Portions Copyright 2015 by Howard Chu, Symas Corp.
           Portions Copyright 2016-2017 by Michael Ströder <michael@stroeder.com>
           Portions Copyright 2018 by Ondřej Kuzník, Symas Corp.
License: OpenLDAP-2.8

Files: servers/slapd/overlays/dds.c
Copyright: Copyright 2005-2022 The OpenLDAP Foundation.
           Portions Copyright 2005-2006 SysNet s.n.c.
License: OpenLDAP-2.8

Files: servers/slapd/overlays/ppolicy.c
Copyright: Copyright 2004-2022 The OpenLDAP Foundation.
           Copyright 2004-2005 Howard Chu, Symas Corporation.
           Copyright 2004 Hewlett-Packard Company.
License: OpenLDAP-2.8

Files: servers/slapd/slapi/Makefile.in
       servers/slapd/slapi/plugin.c
       servers/slapd/slapi/printmsg.c
       servers/slapd/slapi/slapi_pblock.c
       servers/slapd/slapi/proto-slapi.h
       servers/slapd/slapi/slapi_ext.c
       servers/slapd/slapi/slapi.h
       servers/slapd/slapi/slapi_utils.c
       servers/slapd/slapi/slapi_ops.c
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright IBM Corp. 1997,2002,2003
License: OpenLDAP-2.8







Files: tests/scripts/test057-memberof-refint
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Portions Copyright 2008 Red Hat, Inc.
           All rights reserved.
License: OpenLDAP-2.8

Files: tests/scripts/test080-hotp
       tests/scripts/test082-remoteauth
       tests/scripts/test081-totp
       tests/scripts/test081-totp.py
Copyright: Copyright 1998-2022 The OpenLDAP Foundation.
           Copyright 2016-2021 Ondřej Kuzník, Symas Corp.
           All rights reserved.
License: OpenLDAP-2.8

Files: debian/*
Copyright: Bastian Blank <waldi@debian.org>
           Ben Collins <bcollins@debian.org>
           Giuseppe Iuculano <iuculano@debian.org>
           Helmut Grohne <helmut@subdivi.de>
           Jelmer Vernooij <jelmer@debian.org>
           Matthijs Möhlmann <matthijs@cacholong.nl>
           Michael Gilbert <mgilbert@debian.org>
           Nico Golde <nion@debian.org>
           Petter Reinholdtsen <pere@debian.org>
           Roland Bauerschmidt <rb@debian.org>
           Russ Allbery <rra@debian.org>
           Ryan Tandy <ryan@nardis.ca>
           Sergio Durigan Junior <sergiodj@debian.org>
           Stephen Frost <sfrost@debian.org>
           Steve Langasek <vorlon@debian.org>
           Thijs Kinkhorst <thijs@debian.org>
           Timo Aaltonen <tjaalton@debian.org>
           Torsten Landschoff <torsten@debian.org>
           Wichert Akkerman <wakkerma@debian.org>
           Canonical Ltd
License: OpenLDAP-2.8

License: F5
 This software is not subject to any license of F5 Networks.
 This is free software; you can redistribute and use it
 under the same terms as OpenLDAP itself.

License: FSF-unlimited
 This file 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.

License: GPL-2+
 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.
 .
 On Debian systems, the complete text of the GNU General Public License
 version 2 can be found in the file `/usr/share/common-licenses/GPL-2'.

License: GPL-2+ with Autoconf exception
 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 <http://www.gnu.org/licenses/>.
 .
 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.
 .
 On Debian systems, the complete text of the GNU General Public License
 version 2 can be found in the file `/usr/share/common-licenses/GPL-2'.

License: GPL-2+ with Libtool exception
 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.
 .
 On Debian systems, the complete text of the GNU General Public License
 version 2 can be found in the file `/usr/share/common-licenses/GPL-2'.

License: GPL-3+
 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.
 .
 On Debian systems, the complete text of the GNU General Public License
 version 3 can be found in the file `/usr/share/common-licenses/GPL-3'.

License: GPL-3+ with Autoconf exception
 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 <https://www.gnu.org/licenses/>.
 .
 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
 of the GNU General Public License, version 3 ("GPLv3").
 .
 On Debian systems, the complete text of the GNU General Public License
 version 3 can be found in the file `/usr/share/common-licenses/GPL-3'.

License: GPL-3+ with Libtool exception
 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.
 .
 On Debian systems, the complete text of the GNU General Public License
 version 3 can be found in the file `/usr/share/common-licenses/GPL-3'.

License: JCG
 This software is not subject to any license of Silicon Graphics
 Inc. or Purdue University.
 .
 Redistribution and use in source and binary forms are permitted
 without restriction or fee of any kind as long as this notice
 is preserved.
Comment:
 The following is additional information from Juan C. Gomez on how
 this license is to be interpreted:
 .
 Local-Date: Fri, 06 Jun 2003 13:18:52 -0400
 Date: Fri, 6 Jun 2003 10:18:52 -0700
 From: Juan Gomez <juang@us.ibm.com>
 To: Stephen Frost <sfrost@debian.org>
 X-Mailer: Lotus Notes Release 5.0.2a (Intl) 23 November 1999
 Subject: Re: Juan C. Gomez license in OpenLDAP Source
 .
 Stephen,
 .
 "There is no restriction on modifications and derived works" on the work I
 did for the openldap server as long as this is consistent with the openldap
 license. Please forward this email to Kurt so he does the appropriate
 changes to the files to reflect this.
 .
 Regards, Juan

License: MIT-XC
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to
 deal in the Software without restriction, including without limitation the
 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 sell copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 .
 The above copyright notice and this permission notice shall be included in
 all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
 TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 .
 Except as contained in this notice, the name of the X Consortium shall not
 be used in advertising or otherwise to promote the sale, use or other deal-
 ings in this Software without prior written authorization from the X Consor-
 tium.

License: OpenLDAP-2.8
 The OpenLDAP Public License
 Version 2.8, 17 August 2003
 .
 Redistribution and use of this software and associated documentation
 ("Software"), with or without modification, are permitted provided
 that the following conditions are met:
 .
 1. Redistributions in source form must retain copyright statements
 and notices,
 .
 2. Redistributions in binary form must reproduce applicable copyright
 statements and notices, this list of conditions, and the following
 disclaimer in the documentation and/or other materials provided
 with the distribution, and
 .
 3. Redistributions must contain a verbatim copy of this document.
 .
 The OpenLDAP Foundation may revise this license from time to time.
 Each revision is distinguished by a version number.  You may use
 this Software under terms of this license revision or under the
 terms of any subsequent revision of the license.
 .
 THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS
 CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
 AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT
 SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S)
 OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGE.
 .
 The names of the authors and copyright holders must not be used in
 advertising or otherwise to promote the sale, use or other dealing
 in this Software without specific, written prior permission.  Title
 to copyright in this Software shall at all times remain with copyright
 holders.
 .
 OpenLDAP is a registered trademark of the OpenLDAP Foundation.
 .
 Copyright 1999-2003 The OpenLDAP Foundation, Redwood City,
 California, USA.  All Rights Reserved.  Permission to copy and
 distribute verbatim copies of this document is granted.

License: UMich
 Redistribution and use in source and binary forms are permitted
 provided that this notice is preserved and that due credit is given
 to the University of Michigan at Ann Arbor.  The name of the
 University may not be used to endorse or promote products derived
 from this software without specific prior written permission.  This
 software is provided ``as is'' without express or implied warranty.
Comment:
 After discussing this license with the OpenLDAP Foundation we received
 clarification on it:
 .
 To: Stephen Frost <sfrost@snowman.net>
 Subject: Re: OpenLDAP Licenseing issues
 From: "Kurt D. Zeilenga" <Kurt@OpenLDAP.org>
 Date: Wed, 28 May 2003 10:55:44 -0700
 Cc: Steve Langasek <vorlon@netexpress.net>,debian-legal@lists.debian.org, openldap-devel@OpenLDAP.org
 In-reply-to: <20030528162613.GB8524@ns.snowman.net>
 Message-id: <5.2.0.9.0.20030528094229.02924780@127.0.0.1>
 Old-return-path: <Kurt@OpenLDAP.org>
 .
 Steven,
 .
 The OpenLDAP Foundation believes it the Regents' statement grants a
 license to redistribute derived works and is confident that the University,
 who is quite aware of our actions (as they actively participate in them),
 does not consider our actions to infringe on their rights.  You are
 welcomed to your opinions. I suggest, however, that before you rely
 on your or other people's opinions (including ours), that you consult
 with a lawyer familiar with applicable law and the particulars of your
 situation.
 .
 The Foundation sees no reason for it to expend its limited resources
 seeking clarifications which it believes are unnecessary.  You are,
 of course, welcomed to expend time and energy seeking clarifications
 you think are necessary.  I suggest you contact University's general
 counsel office (http://www.umich.edu/~vpgc/).
 .
 Regards, Kurt

License: Beerware
 <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you
 can do whatever you want with this stuff. If we meet some day, and you think
 this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp

License: BSD-3-clause-variant
 Redistribution and use in source and binary forms are permitted
 provided that the above copyright notice and this paragraph are
 duplicated in all such forms and that any documentation,
 advertising materials, and other materials related to such
 distribution and use acknowledge that the software was developed
 by the University of California, Berkeley.  The name of the
 University may not be used to endorse or promote products derived
 from this software without specific prior written permission.
 THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
 IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.

License: Expat-ISC
 Permission to use, copy, modify, and distribute this software for any
 purpose with or without fee is hereby granted, provided that the above
 copyright notice and this permission notice appear in all copies.
 .
 THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
 ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
 OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
 CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
 DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
 PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
 ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
 SOFTWARE.

License: Expat-UNM
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and associated documentation files (the "Software"),
 to deal in the Software without restriction, including without limitation
 the rights to use, copy, modify, merge, publish, distribute, sublicense,
 and/or sell copies of the Software, and to permit persons to whom the
 Software is furnished to do so, subject to the following conditions:
 .
 The above copyright notice and this permission notice shall be included in
 all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY
 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
 OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
 THE USE OR OTHER DEALINGS IN THE SOFTWARE.

License: Expat
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the
 "Software"), to deal in the Software without restriction, including
 without limitation the rights to use, copy, modify, merge, publish,
 distribute, sublicense, and/or sell copies of the Software, and to
 permit persons to whom the Software is furnished to do so, subject to
 the following conditions:
 .
 The above copyright notice and this permission notice shall be
 included in all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

License: BSD-3-clause-California
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. Neither the name of the University nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: BSD-4-clause-California
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. All advertising materials mentioning features or use of this software
    must display the following acknowledgement:
        This product includes software developed by the University of
        California, Berkeley and its contributors.
 4. Neither the name of the University nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: BSD-3-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. Neither the name of the copyright holder nor the names of contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 . 
 THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTOR(S) ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTOR(S) BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [msF+߅P-ǾQ\ES
EjII6J@`(b\ ~Od;T%~}gЉy%3;E?/>@*7B8Ľ|?zE7\>-,IM$(Md/j9QZew*DFfJY`-:t*%_'޻Yw gr;8ם Mm١@^$=n,bU]J%ȟJ3鯣ԛʃ.QHmV8ID(W5S9LbG[طZ!7fWiE-8qNbWi$ᅀEǓ%{bw4*y*ʥ\PIKZӻbAGyTȊ$*ɵYJrod)?D	a,iRCm%$(tLymE,}[on2Zۋ(BvH2Wme,#
ܧ-	ZcZfo/we?VA F+YՒgb$t&}z;bkILd17Ӹcra߶ieZ!'2s_+}7v}h`P
(Rael/nX=sVnv两ABۘrAΰ4J舷؂0qbMvQemyq7ɪ&T1,.Ɣ$dfFrGibcn@m
ʭR1]*oDD:3.FP4{Rq2J76˥YW$)EN<"_iD?'}$iNzų.徰̣H!>.H۟eЖj>1>vTߝUcI^,]֍5ĻT浌)Z߈#WQOp&ӄ"V/lhPZ(J`:"A˦5%|cH]dcob?wj^31suq$^fv+[ׇtE^T{?+?4m1}TQ$	mJw ;FRɢ<W		fFa[
c`:]B2* WTAƲnvw(ұƋ)?Xw~^!do9OoUaE@6i0ZȌ=y=-RF(LOA}CЖ=a)J4hLƤ{P
rkHd3
(Jz#$>">j_.'GW.<?d zdXmn!1FIM|6B
vA&J'%/	@>KYbN<:h?^N~=8N:3.!h욜4`t	-&
FV|%G8%hX%`
(8z
%Co4>ҶpB
+csS8+( !Iٙ2@*,j")і
c31W~#3&9~b*Mh3zb<efor	o:yoit:ԦZ  .K#:yCYyI,J 'uP7d˕/b;%ˑXN5N9sϽl]_duܪ\#`۔BW'{}8a0tt|HP3EB]ovh_}mB0j(H&j̦֫@
Y`%McƬy:l[S <ӌ+ZϿـҖ/,Pd94=D
-	]ֈ$tɭI{
ۈRWhlq9!뤼8NV&;)c&aHB5κqqhAY$[n	o!?~i/O1~=\i㼖	iKD.%0E*
82rllab%HoɃEfj+A$%l
,u9w@ ςeGr㍣/j|Ur6BCddl'z&њW)wYy=u*$7]̱Ey56twC"A1֠̚ҿ(:Y
XIُ~x_s>oΉLf-x:'t/[/.deٟgľ<`	ge}Q0GpR8@B{?N*DuFVކS,͓PIXF{8GE\14N}ԁsTb
v?t!ZgTF۴c(e0fp(ACqb<f{fAXYl4<t=K86<Z)GZ՚,ǭîF-KTACeyI0	EyxlJ?lҌg88ɒӺjI><6ǨV!"&p*OҤgnEwZu#v2Pa LmE/[7fvQ
QV$Z4%6PRwHWY#0z6Pϑh^k_I4)a1a2	*ΗQi)4i3
\й
gizr>8,u46z~GUlUex1TkUզ]:vaD׫W2DW,Rzz(t+"aThWeA"VDIC<8▏7WG4l6J$m6TLfMf<`vMwz
OpbۉuZdޅ=bg6}E[~GJJPe#{u!b}VVrh7͚o_V6-wL1ӢL?M<lS;VUc~0z>im
r![ Zi\=<P6?(3Л$XfiB={6gIĉ9\\#]szlTv15G=|9KtW.1mòQ-nhswxJAR^%kBQ2Ȑlߐy:6&HdSL8`J&O6ٶ3&Ҥ0$S~:i]ީ<A\Q=onƉ.>z,#k?lx4s-?t@I8H7lE檑\JMi<7f(Z%]^abW㭃$AgIm	p:Е@AtG.j,|kMs?5J*է2##T@1+$U㤰mWoX7Qe2'~i1hSVЊ6;Đ>
q𔆒AmQL$636NaHqZ/~<Y{-kk(H|Lryg*Ad3Ytr $8dsLDJlc\QʧEРJ}2ME=ca:JGN߶Ҕ20(n5~8~$
Pe`[5|QIjOI?D,8VYn^,~ÒsMct![Ś*9o^xech7BNS>,.k6*6b3FOccr0[,1O'`y$?US9c%*>7ke3)]PR
!k_+B n:(N%*
8L j0Y"Ko ZzԧX0
0w=ލ>
Z}Vʻ޻,Qsy".CaX[ɏ??gԵF}7\N͍-dɑ`iݴ:)?mɢpql2L<~
,03DLt:sau$j ni%ۢ-rP;ןlO#M:x62
0:eo=P}IkGZ/&Hr .En=mtNuZ):n%^@-;d61+6ߔ@&gHiNz'z掔6)\Sod\^) Ֆnh0eA'ߝ*m*f߷FѴhwnns%ZNO-	hAnS	fF}ZU/oz18^\՚΁3no@tøꕼl:Rl$isDR*1'zg9SDyY=mRKpVh~bman5R{ߠˍ&{BA'0!9"8/I .R
nNWěEǛϱ䀳zz`AFG,#sRCiAi]V3HԕPsĥpז5,*P);EuuԻ<
9)/'WLݏon[Ӂf `C<V6Chp˹WGw{Aϕ|pH۫]}\LAnp,`~@WG<':0f󮎮`Zέ0,]0ضZaY[V
EvL霯mZu% (&\bXIl= ȕw!uNN5/pU'%-
F}d/u9[Ժ,JD̷E&㨗2P{Ղʳret9KUFi}a[M]Qα6s߱ĳ0݊6{snP`.ߛg,6v'ҺILw*Ƣ64y-P_ytU§|䐻u+FocY&ufh+9賏1[}\厩tQE=ޝv/&w)M~SL޴A{)jPkv)ͮ
x6*m#ܵKKܻmWw,Ξ8WG[]R:Liww@8T"ÈWOV48;	݂k( YjBt0xէ
,,ԹP"Wcs2x4ټDBG+Fedh׀z16-:4ƷG|2X]/Hb`ij\4ɪ+S&5g̚ߖ5*3G}R~`j_rg(&cP]h5=󷘤nR=c.FYJ0Bnp%Ht43bTJ_I3b|: a܌ׂEזFFeq#W]eZw]ɰ6'xE;9Qw[~XdzKP֏0οSd>2,qv\4BDidct`9J%dr)&;
S}vQ+M#WQrk`i`I'6	HӶ2([_ClƯ{{o2F37zooҝpr;EoWI_?qnI\M0WAA:exAtxcbASsҿo^V8kdMJRދC"kհqRngɻe2lOu2١
y
A=&x YT{:.mQQ$sSM<ؼbzo@-\Dqrm}Yk>$"x_n!)j@)*->R,)SC$*=d|֤63@"S~RMtOyZǓL$ɟd a̕}wTӖPBݝU4x	C                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   /.
/etc
/etc/ldap
/etc/ldap/ldap.conf
/usr
/usr/share
/usr/share/doc
/usr/share/doc/libldap-common
/usr/share/doc/libldap-common/changelog.Debian.gz
/usr/share/doc/libldap-common/changelog.gz
/usr/share/doc/libldap-common/copyright
/usr/share/man
/usr/share/man/man5
/usr/share/man/man5/ldap.conf.5.gz
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Package: libldap-common
Status: install reinstreq unpacked
Priority: optional
Section: libs
Installed-Size: 92
Maintainer: Debian OpenLDAP Maintainers <pkg-openldap-devel@lists.alioth.debian.org>
Architecture: all
Multi-Arch: foreign
Source: openldap
Version: 2.5.13+dfsg-5
Replaces: libldap-2.4-2 (<< 2.4.44+dfsg-1)
Conffiles:
 /etc/ldap/ldap.conf newconffile
Description: OpenLDAP common files for libraries
 These are common files for the run-time libraries for the OpenLDAP
 (Lightweight Directory Access Protocol) servers and clients.
Homepage: https://www.openldap.org/
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ELF          >            @       `B          @ 8 	 @                                                                                                         0       0       0      
      
                   =      M      M                                =       M       M                               8      8      8      $       $              Ptd   T3      T3      T3                           Qtd                                                  Rtd   =      M      M                                  GNU SҽXg?M]4v                 d,`(                                #       %   &       (   *   _\`9O*=WlUEqq UH|<[Adz	Ao-93O.OubjB?\                                             U                                                                   z                                            D                                                               K                                            e                     _                     n                      ,                       ?                     ~                     F   "                   1                     X                         `                                  +                       A           p                P      I                   G           #             K    *             ]     0                   P                       ;       "    P)                  $      ;          "      
          0!      `                 G       f    +      V           &             l                 4    p)      E           0                  '      L       __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize strncpy _plug_get_simple gethostname strlen _plug_buf_alloc _plug_make_prompts strcpy __stack_chk_fail anonymous_server_plug_init anonymous_client_plug_init sasl_client_plug_init sasl_server_plug_init _plug_ipfromstring __ctype_b_loc getaddrinfo __memcpy_chk freeaddrinfo memcpy _plug_iovec_to_buf memset _plug_strdup _plug_free_string _plug_free_secret _plug_find_prompt _plug_get_password _plug_challenge_prompt _plug_get_realm _plug_decode_init _plug_decode _plug_decode_free _plug_parseuser strchr _plug_make_fulluser strcat _plug_get_error_message strerror _plug_snprintf_os_info uname __snprintf_chk libc.so.6 libanonymous.so.2 GLIBC_2.3 GLIBC_2.14 GLIBC_2.4 GLIBC_2.2.5 GLIBC_2.3.4                                                           ii
                ii
        ui	        ti	         M             `      M                     P              P       P             '1      8P             81      HP             0      PP                   XP             p      P             '1      P             p      P                   O                    O                    O                    O                    (O                    0O                    8O                    @O                     HO         *           PO                    XO                    `O                    hO                    pO                    xO                    O         	           O         %           O         
           O                    O                    O         
           O                    O         "           O                    O                    O                    O                                                                                                                                                                                                                                                                                                                                                                                                    HH?  HtH         5>  %>  @ %>  h    %>  h   %>  h   %>  h   %>  h   %>  h   %>  h   %>  h   p%>  h   `%>  h	   P%>  h
   @%>  h   0%>  h    %>  h
   %>  h    %z>  h   %r>  h   %j>  h   %b>  h   %Z>  h   %R>  h   %J>  h   %B>  h   %R>  f        H=1?  H*?  H9tH>  Ht	        H=?  H5>  H)HH?HHHtH=  HtfD      =>   u+UH==   HtH==  Yd>  ]     w    Ht+UHSHHH?HtV@HE@HH[]D  ff.     @ AVAUATUSLl$0H<  HM  M  M   I     IA    H      9FHFP{P(IH   HLHA LEP1LH     IxA   M9t
HEPLP@HEP1M   H5  Hx   u;AE    IE     IE(    IE0    IE8    IE@    Aǅ       []A\A]A^    [   ]A\A]A^HtLEPe   11H	  IxA  LEP1v   1H#  IxA  두USHLFHtKHHӿ   AP(Htf H1H[]LE   H  1IxA  1Ix   1Hb  A  @ AWAVAUATUSH8  H<$L$p  L$x  dH%(   H$(  1HD$    H  HLM  LNM  M  H    AE       FP9Fp  HL$1Ҿ@  LMwA©   MtI?HtD$HEP@I    DT$LuA   H|$Ht	?    H5  A	   Ht$I~M   1   Au_Lt$ 1       LHLHLƄ$   xH}ALH$AM HPHHHA   D  H$(  dH+%(     H8  D[]A\A]A^A_@ H5  IB@ D$E1E1Lj H
u  H3  Lj j j j j j j DT$@H@DEqf     H} Ht$D$nHE LB8@HM DT$JT9   /  t*L$ 
   ALfLH$H    HA$   ID$     ID$(    ID$0    ID$8    ID$@    AǄ$           HL$ HzHH
ItHt
H)LH)։HH$HrfIyH  11A  AGHtLNIy   11H  A  AIyHM  11A  AL$ 
ALLH$H-ff.     fMt
I     1HLFP1L   Hk  1IxA  H@ ~H7     H1A    ÐHI1HH(  1A  Hf     ~H7     H1A    ÐHI1HH  1A  Hf     ff.     f.     AWAVAUATUSH  L$dH%(   H$  1HD$    H   IIH  HH  ;     H$   u#  f     ;tHH=  i  AuLc;BƄ<    HLDK,>Le E}   @HKD>fD  L HEt[BDbuI}   11H  A  AH$  dH+%(     H  D[]A\A]A^A_fD  fHT$ HL$HH$   D$$D$4D$(   D$    D$@kAą   L|$LD$P   LLD$AWIwILaf|$P
LD$uD$XD$\u
|$`  tED9t$   DLHI}   11H  A  1|D$dA   HD$X    D$T   fD$PHI}   11H{  A  I}   11H[  A  I}   11H;  AA  _d@ H   AVIAUATIUSHtYIHtVH>Ht29r1[]A\A]A^Ð9rAV8I$HtGA] D  AV(I$HtXAm HtI~   11H  A  AE     I~   1H  A  oAE     I~   1H  A  ӸHq  AVAUIATUSHH  IH  L!M   AD$    IT$   HH1H@ HHH9uAL$LL   AT$I<$1,I$     H3HSHH=HKHH9u1[]A\A]A^fD     AU(IHt~f M&J1LLSuAT$I<$1I}   11HI  A  HtI}   11H  A  bI}   H  1A  봸H   AVAUATUHSHHtDIHtAHIHxIU(IHHtBHdMtE,$1[]A\A]A^HtH}  11H7    1H}  1HV    밸 HtCATUSHHt+L&Mt#HLL   H;U@H    []A\        Ht;USHHHt$HHtH0Hx   H;U@H    H[]fff.     @ Ht3HHt%HHt#    HP0H0HtH9uD  1D  AUILATAUSHH(dH%(   HD$1H    Ht7H@ Et	H   H1HT$dH+%(      H([]A\A]ÐI}HL$HT$A   uEtuHD$Ht1H|$HډЅuEtH; uI}l  HT  1A  qI}H  1A  eD  AUIHATIUHSH(dH%(   HD$1H    @      HtnHx  H   x(HAU(HE H   S(Hs HxHeHE HD A$   1HT$dH+%(      H([]A\A]I}HL$HT$@  A   uHD$HtI}Ht$H@  ЅuH}  uI}  H  1A  x    I}  H0  1A  NI}H  11A   AVIAUIATILUSLH dH%(   HD$1I     Ht:H@ H   H1HT$dH+%(      H []A\A]A^    I|$HL$HT$A$   uHD$HtHLLIj E1H|$ ZYuH; uI|$  H
  1A$  eD  I|$H  1A$   ATI@  UHHSHH dH%(   HD$1H    Ht6H@ H   H1HT$dH+%(      H []A\    H}HL$HT$@     uHD$HtH|$HL@  ЅuH; uH}  H  1  w H}H
  1  ff.      AW   IAVAUIATIULSHHHM~  H|$P tH|$h tH$      L@ALD$LAW(LD$HH  HxH     JD0    HH)A1HHMtH
  H@  H0HBLjLbMtH
  H@  H0HBLBHjH|$P t(H
  H@  H0HBHD$PHBHD$XHBH|$h t&HD$`H@  H0HBHD$hHBHD$pHBH$    t,HD$xH@  H0HBH$   HBH$   HBH    f1HB    BH[]A\A]A^A_fH|$P H|$h H$    A`   ~1HH5  1A  D  @AN1I*  1H
  A  dD  fH7GG   GW$fD  AWAVAUATUSHXH$   LD$(HD$H$   HD$ dH%(   HD$H1A      GIHIM̅   DwE>  EG$E9  IGHT  Aw D)H<09  t$HHT$^DD$HT$HL$@IwH|$ AHHD$AWDLD$<D)Ѕ   T$<A$LI?LHT$(f   T$<Ht$@A<$I} IU D$<A$A$    AG      9ALDFH)H~HDD)HT$AGHT$D)HAG   AOAG     AAOE HT$HdH+%(   uHX[]A\A]A^A_f     IDP(IGHtKEwD  M1DH	     1A   @ HA_ 1{qD@ HGHtHHHR@     AWAVAUATUHSHH  MM   ILϾ@   HT$IMHT$HHtzIHp1HM) IALU(IE Ht%LLHG@HD[]A\A]A^A_fH}  11Hl  A  fD  1MtA? u;LHPAEuHLLH[1]A\A]A^A_*f.     LHAH}  11H  A  Gff.     HAVHAUIATIUSujHHtbHLHII|AU(HHHtZL8L#L]@   HfAH;1[]A\A]A^D  1I}  1H  A  1I}  1H  A  @ SHHdH%(   HD$1H1HHH$t1HT$dH+%(   uH[f.     ATUHSH  dH%(   H$  1ILHHcMH$   L     HPH1LH$  dH+%(   uHĐ  []A\   HH                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Parameter Error in ../../plugins/anonymous.c near line %d       Out of Memory in ../../plugins/anonymous.c near line %d Nonzero serverinlen in ANONYMOUS continue_step  SSF requested of ANONYMOUS plugin       Please enter anonymous identification ANONYMOUS login: "%s" ANONYMOUS version mismatch ANONYMOUS                anonymous       Parameter Error in ../../common/plugin_common.c near line %d    Out of Memory in ../../common/plugin_common.c near line %d      Unexpectedly missing a prompt result in _plug_get_simple        Unexpectedly missing a prompt result in _plug_get_password      Unexpectedly missing a prompt result in _plug_challenge_prompt  Unexpectedly missing a prompt result in _plug_get_realm make_prompts() called with no actual prompts    encoded packet size too big (%d > %d) Authorization Name Authentication Name Password %s %s ;        L<  T  \    \  p  \          4  |  L    L<  h  |    <  LD  Lx      (  <  l  <           zR x  $         FJw ?;*3$"       D              (   \   1    FDG SDA   L         BBB A(A0	
(A BBBHA
(F BBBA(      |    AAD m
AAA  p     X   BBB B(A0A8G
8D0A(B BBBEgSBBBBBBN      x  <    Sh      G    db      G    db          8            4       L     0   BBB B(A0A8G
#
8D0A(B BBBG   D   <      KEB D(A0`
(A BBBB   D     H   KBE A(A0
(A BBBG  D         KBB A(D0D
(A BBBAG  ,     I    GAA tABH   (   D  A    FAG mAAC     p  ,;       8     X    BHD C(GPP
(A ABBB 8     `   BHD D(DP
(A ABBA L     @
   BEE G(C0GPK
0A(A BBBHkXK`MXAP 0   L       BIG G@K
 AABH H     ;   BJB E(D0D8GP
8A0A(B BBBC            L     L   BBB B(A0A8D
8A0A(B BBBJ      0         `   D  E   BBB B(A0D8DP
8D0A(B BBBCL
8J0C(B BBBO<         EHE I(A0_
(A BBBF         TV    AI E
AA <         BAD Ib^QZ
 AABA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         `                                                     
       x,             M                           M                    o    `             @                    
                                  O             (                           h                           h      	                            o           o    
      o           o    F
      o                                                                                            M                      6      F      V      f      v                                                                  &      6      F      V      f      v                                                   P                              '1                    81              0            p                                      '1                            p                                                                    /usr/lib/debug/.dwz/x86_64-linux-gnu/libsasl2-modules.debug }&X%i
0Giub253d2bd1ede5867de198d3fc44d5d9eb23476.debug    d .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.got .text .fini .rodata .eh_frame_hdr .eh_frame .init_array .fini_array .dynamic .data .bss .gnu_debugaltlink .gnu_debuglink                                                                                  8      8      $                                 o       `      `                                   (                                                      0             @      @                                   8   o       F
      F
      X                            E   o       
      
      `                            T                           h                           ^      B       h      h      (                          h                                                         c                                                       n                                                      w                                                      }             x,      x,      	                                            0       0      T                                          T3      T3                                                 P4      P4      L                                          M      =                                                M      =                                                 M       =                                 r             O      ?                                                 P       @                                                  P      @                                                          @      P                                                    8A      4                                                    lA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ELF          >            @       `R          @ 8 	 @                                 H      H                                        #      #                    @       @       @                               L      \      \                                L      \      \                               8      8      8      $       $              Ptd   @D      @D      @D                         Qtd                                                  Rtd   L      \      \                                  GNU QEMT,!{THY                 d, h                             !   %   '       (       *   ,   _\`9)#O*=Eqq UH|<[Adz	AwK?3O.OubjB?\                                                                                                                                      z                                            ^                                                                                                                                                       y                     ,                                                                 F   "                                                                                  Y                      %                 @3                  &      A                   G       o                 U     &      I       
    *             e    2                  '             C                      @'      ;       <    0                  +      ;          )      
      g     (      `      *    P       G           2      V           0.                 p$            N    0      E           #             /    P.      L       __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize _plug_free_string _plug_get_password strlen _plug_buf_alloc __snprintf_chk _plug_make_prompts _plug_free_secret _plug_get_simple __stack_chk_fail memcpy strncpy strncmp time __sprintf_chk crammd5_server_plug_init crammd5_client_plug_init sasl_client_plug_init sasl_server_plug_init _plug_ipfromstring __ctype_b_loc getaddrinfo __memcpy_chk freeaddrinfo _plug_iovec_to_buf memset _plug_strdup strcpy _plug_find_prompt _plug_challenge_prompt _plug_get_realm _plug_decode_init _plug_decode _plug_decode_free _plug_parseuser strchr _plug_make_fulluser strcat _plug_get_error_message strerror _plug_snprintf_os_info uname libc.so.6 libcrammd5.so.2 GLIBC_2.3 GLIBC_2.14 GLIBC_2.4 GLIBC_2.2.5 GLIBC_2.3.4                                                                ii
                ii
        ui	        ti	         \                   \             p       `              `       `             =@      H`             0      P`                   X`                   `             =@      `                   `             @      `                    _                    _                    _                    _                     _                    _                    _                    _                     _         "           (_         ,           0_                    8_                    @_                    H_                    P_         	           X_                     `_         
           h_                    p_         &           x_                    _                    _         
           _                    _         '           _                    _                    _         $           _                    _                    _                    _                    _                                                                                                                                                                                                            HHO  HtH         5N  %N  @ %N  h    %N  h   %N  h   %N  h   %N  h   %N  h   %N  h   %N  h   p%N  h   `%N  h	   P%zN  h
   @%rN  h   0%jN  h    %bN  h
   %ZN  h    %RN  h   %JN  h   %BN  h   %:N  h   %2N  h   %*N  h   %"N  h   %N  h   %N  h   p%
N  h   `%N  h   P%M  h   @%M  h   0%N  f        H=N  HN  H9tHM  Ht	        H=N  H5N  H)HH?HHHtHM  HtfD      =mN   u+UH=rM   HtH=nM  YdEN  ]     w    Ht+UHSHHH?HtV@HE@HH[]D  ff.     @ Ht3UHSHHH tHwHHE@HH[]D      SH!   Ht>1H5.      PLPHHu@  [AWAVAUATUSHhL^H<$L$   HT$L$   dH%(   HD$X1I    HD$(    HD$0    D$$    HD$8    A       X  FPH9Fpi  1I} AMM{  HT$$Ht$0LLLT$D$  LT$D$Mt I:HtHCLT$P@LT$I    L[  |$   H|$0 I{  I{Ht$(M1ҹ      Ņ   HD$0HkH;  LD$@H|$DLD$HP   Hu(H|$/H6  I}HD$8hH4$H{Lx?HVD@Ņ   H$H   LHL*  H8t$@1MMHD$H8I<$AAE    IE     IE(    IE0    IE8    IE@    Aǅ       ZYD  H|$8 tH{Ht$8D$$   HD$XdH+%(     Hh[]A\A]A^A_f     l$f.     |$   L*      LEH)  j E111j LLj j j j j PH@ŅL   dfH{Ht$0OD  HL$(   @  LLD$ŃD$H|$0 LT$t0D$ MzL[D  1L)  GfL[    HD$8    H}HD*  11       HD$8    HkʐI{H)  1A  tfI{H)  11A  RN  H)  11A  1f.     AWAVAUATIUiSH:(  fHnH  H|$H$LD$dH%(   H$  1H(  HD$(    HD$P    fHnfl)D$@  AH HA  8 uID$PA~HcP(HH[  IcH4$HIHHD$B; ID$PL|$@I$   L(  AŅS  ID$PLD$1H޹   HxA$   AŅ(  ID$PI$   H$   L8  AŅ  H$      H$   H	  H8QIL$PIHU  IQ(HD$(H  DHHLl$`HH$   HIWH0DLHID$PH   ID$PHt$@D)L$   I$   h  ID$PLL   HD$LhLIL$PLLLl$0QpID$PLL   ID$PLHp("HIgH9N  H$Ht$HLHt1AŅ*  HD$    H@     H@(    H@0    H@8    H@@    ǀ       ID$PHP@H|$(   ID$PLP@H$  dH+%(   a  HĘ  D[]A\A]A^A_    IL$P11Hg%  Hy  I$   EAAID$PHP@H|$( tI|$PHt$(x H$    tH$   HtH Ll$`o)T$`oX)\$p*     IL$PH$  11AHy  HyH$  11  AQI|$PHt$(\MD$P   11H%  AIxA  @ IL$PH2$  11AHy  nff.      AWAVAUMATUSH(dH%(   HD$1LD$`IE     A    H9  H     D7HA   AtMLFPDHO%  1   1AA   HD$dH+%(   P  H(D[]A\A]A^A_ HD$dH+%(   '  H([]A\A]A^A_f       1M   H$HEPP(IHtTL$   LH    L5#  HLHLH?LHH)HHH)к   I)1HEPHt$   Hx   D$T$   T$T$ЉD$HEPP(H$HH   DD$1H
"  H   M   HEP   P(HCHH   u      1AWLN"  HLL$H{I} LA$HEPP@HEPH|$P@   XZ-fD  HNPHE"  1Hy  AHNPH#  11Hy   LEP   11H"  IxA  ALEP   11H"  IxA  pU   HSHHHFP(Htf HE 1H[]LC  H/"  1IxA  ff.     U   LSHHHFPP(Ht"H@    @        HE 1H[]LCPr   H!  1IxA  ff.     f~Ht@     H1A    ÐHI1HHz   1A  Hf     ~H?     H1A    ÐHI1HH*   1A  Hf     ff.     f.     AWAVAUATUSH  L$dH%(   H$  1HD$    H   IIH  HH  ;     H$   u#  f     ;tHH=  i  AuLc;BƄ<    HLDK,>Le E}   0HKD>fD  L HEt[BDbuI}   11H   A  AH$  dH+%(     H  D[]A\A]A^A_fD  fHT$ HL$HH$   D$$D$4D$(   D$    D$@[Aą   L|$LD$P   LLD$AWIwILQf|$P
LD$uD$XD$\u
|$`  tED9t$   DLHI}   11Hv  A  1|D$dA   HD$X    D$T   fD$PHI}   11H#  A  I}   11H  A  I}   11H  AA  _$@ H   AVIAUATIUSHtYIHtVH>Ht29r1[]A\A]A^Ð9rAV8I$HtGA] D  AV(I$HtXAm HtI~   11H:  A  AE     I~   1HR  A  oAE     I~   1H'  A  ӸHq  AVAUIATUSHH  IH  L!M   AD$    IT$   HH1H@ HHH9uAL$LL   AT$I<$1I$     H3HSHHHKHH9u1[]A\A]A^fD     AU(IHt~f M&J1LLuAT$I<$1oI}   11H  A  HtI}   11H  A  bI}   H  1A  봸H   AVAUATUHSHHtDIHtAHIqHxIU(IHHtBH$MtE,$1[]A\A]A^HtH}  11H    1H}  1H    밸 HtCATUSHHt+L&Mt#HLL   H;U@H    []A\        Ht;USHHHt$HHtH0Hx   H;U@H    H[]fff.     @ Ht3HHt%HHt#    HP0H0HtH9uD  1D  AUILATAUSHH(dH%(   HD$1H    Ht7H@ Et	H   H1HT$dH+%(      H([]A\A]ÐI}HL$HT$A   uEtuHD$Ht1H|$HډЅuEtH; uI}l  H  1A  qI}H]  1A  %D  AUIHATIUHSH(dH%(   HD$1H    @      HtnHx  H   x(HAU(HE H   S(Hs HxHEHE HD A$   1HT$dH+%(      H([]A\A]I}HL$HT$@  A   uHD$HtI}Ht$H@  ЅuH}  uI}  H  1A  x    I}  H  1A  NI}H:  11A  AVIAUIATILUSLH dH%(   HD$1I     WHt:H@ H   H1HT$dH+%(      H []A\A]A^    I|$HL$HT$A$   uHD$HtHLLIj E1H|$ ZYuH; uI|$  H  1A$  eD  I|$Hl  1A$   ATI@  UHHSHH dH%(   HD$1H    KHt6H@ H   H1HT$dH+%(      H []A\    H}HL$HT$@     uHD$HtH|$HL@  ЅuH; uH}  H  1  w H}H  1  ff.      AW   IAVAUIATIULSHHHM~  H|$P tH|$h tH$      L@ALD$LAW(LD$HH  HxH     JD0    HH)A1HHMtHo  H@  H0HBLjLbMtH_  H@  H0HBLBHjH|$P t(H6  H@  H0HBHD$PHBHD$XHBH|$h t&HD$`H@  H0HBHD$hHBHD$pHBH$    t,HD$xH@  H0HBH$   HBH$   HBH    f1HB    BH[]A\A]A^A_fH|$P H|$h H$    A`   ~1HH  1A  D  @AN1I*  1Hn  A  dD  fH7GG   GW$fD  AWAVAUATUSHXH$   LD$(HD$H$   HD$ dH%(   HD$H1A      GIHIM̅   DwE>  EG$E9  IGHT  Aw D)H<09  t$HHT$>DD$HT$HL$@IwH|$ AHHD$AWDLD$<D)Ѕ   T$<A$LI?LHT$(&   T$<Ht$@A<$I} IU D$<A$A$    AG      9ALDFH)H~HDD)HT$yAGHT$D)HAG   AOAG     AAOE HT$HdH+%(   uHX[]A\A]A^A_f     IDP(IGHtKEwD  M1DH     1A   @ HA_ 1{q@ HGHtHHHR@     AWAVAUATUHSHH  MM   ILϾ@   HT$IMHT$HHtzIHp1HM) IALU(IE Ht%LLH@HD[]A\A]A^A_fH}  11H  A  fD  1MtA? u;LHAEuHLLH[1]A\A]A^A_f.     LHAH}  11HT  A  Gff.     HAVHAUIATIUSujHHtbHLOHIDI|AU(HHHtZLL#L@   HfAH;1[]A\A]A^D  1I}  1H  A  1I}  1H  A  @ SHHdH%(   HD$1H1HHH$t1HT$dH+%(   uH[jf.     ATUHSH  dH%(   H$  1ILbHHcMH$   L     HPH1LH$  dH+%(   uHĐ  []A\   HH                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Please enter your password %s %s *userPassword *cmusaslsecretCRAM-MD5 need authentication name no secret in database empty secret incorrect digest response %lu %u <%s.%s@%s> CRAM version mismatch     Please enter your authentication name   CRAM-MD5 input longer than 1024 bytes   SSF requested of CRAM-MD5 plugin        Parameter Error in ../../plugins/cram.c near line %d    whoops, make_hashed failed us this time Out of Memory in ../../plugins/cram.c near line %d      CRAM-MD5 does not accept inital data    Invalid CRAM-MD5 server step %d
                0123456789abcdef        Parameter Error in ../../common/plugin_common.c near line %d    Out of Memory in ../../common/plugin_common.c near line %d      Unexpectedly missing a prompt result in _plug_get_simple        Unexpectedly missing a prompt result in _plug_get_password      Unexpectedly missing a prompt result in _plug_challenge_prompt  Unexpectedly missing a prompt result in _plug_get_realm make_prompts() called with no actual prompts    encoded packet size too big (%d > %d) Authorization Name Authentication Name    ;  !   0  X  p       P  h     ,  PX      `  p    @0  0x    `  8   d  @x  @    @  t      `$  8                     zR x  $         FJw ?;*3$"       D   P           (   \   1    FDG SDA   (      9    FDG [DA         0P    AN        d6   BBB B(A0A8D][A
8C0A(B BBBJwIHBBBBAI  L   T   b   BBB B(D0D8S
8D0A(B BBBH   p     @   BBB E(A0A8D`
8D0A(B BBBDX
8A0A(B BBBN hNpFhA`  (     U    AIG ]
AAA  (   D  c    AIG k
AAA     p  4G    db      lG    db                             L        BBB B(A0A8G
#
8D0A(B BBBG   D         KEB D(A0`
(A BBBB   D   d     KBE A(A0
(A BBBG  D         KBB A(D0D
(A BBBAG  ,     PI    GAA tABH   (   $  pA    FAG mAAC     P  ;       8   d      BHD C(GPP
(A ABBB 8     `   BHD D(DP
(A ABBA L     
   BEE G(C0GPK
0A(A BBBHkXK`MXAP 0   ,  h    BIG G@K
 AABH H   `  4;   BJB E(D0D8GP
8A0A(B BBBC     (       L     4L   BBB B(A0A8D
8A0A(B BBBJ        4       `   $  @E   BBB B(A0D8DP
8D0A(B BBBCL
8J0C(B BBBO<     ,    EHE I(A0_
(A BBBF         V    AI E
AA <         BAD Ib^QZ
 AABA                                                                                                               p                                              
       3             \                           \                    o    `             p                    
                                  ^                                                     @             h      	                            o           o    
      o           o    
      o                                                                                           \                      6      F      V      f      v                                                                  &      6      F      V      f      v                                                                                 `                              =@                                    0                                                  =@                                  @                                                             /usr/lib/debug/.dwz/x86_64-linux-gnu/libsasl2-modules.debug }&X%i
0Giud71345984d542cf28293d5217b544859e71c0e.debug    =-< .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.got .text .fini .rodata .eh_frame_hdr .eh_frame .init_array .fini_array .dynamic .data .bss .gnu_debugaltlink .gnu_debuglink                                                                                  8      8      $                                 o       `      `                                   (                           P                          0             p      p                                   8   o       
      
      \                            E   o       
      
      `                            T             @      @      h                           ^      B                                             h                                                         c                                                       n                                                      w                           !                             }             3      3      	                                            @       @      =                                          @D      @D                                                XE      XE      ,                                          \      L                                                \      L                                                \      L                                 r             ^      N                                                `       P                                                  `      P                                                          P      P                                                    8Q      4                                                    lQ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ELF          >            @                 @ 8 	 @                                                                                  1      1                                        '      '                                                                                                           8      8      8      $       $              Ptd                     $      $             Qtd                                                  Rtd                     8      8                      GNU r"z1ӡ *1       /         (@0 f	   
 /   1       4   5       7   9   ;   =   A   C       E       G   I   _Q\`9O*=fEqqIk<[A UH|dz	A\V]5g2O.OupbjB?\                                                                                                                                                        )                     E                     M                                                                                                           m                                                                 f                      ,                       v                     F   "                                                                                   T                                          a                                                                 ;                     U                      4                     >                     ?                                                                G                                                                                     ,                                                                {                                                                                                                  P          P             d    P      A                                              Q      J      
           I           P                 X             U    p                 P                                                          ;                         R                  {    P      ;                `      .    @      
          h                 `             O                 i    @      V       h    К            E           E      h                .                 [          L       __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize __stack_chk_fail strlen DES_key_sched DES_ede3_cbc_encrypt memcpy DES_cbc_encrypt EVP_CIPHER_CTX_free OSSL_PROVIDER_unload OSSL_LIB_CTX_free EVP_DecryptUpdate EVP_DecryptFinal_ex EVP_EncryptUpdate EVP_EncryptFinal_ex _plug_buf_alloc strcpy strpbrk malloc strcat _plug_decode _plug_iovec_to_buf _plug_make_prompts stpcpy __sprintf_chk _plug_get_simple _plug_get_password _plug_get_realm _plug_strdup OSSL_LIB_CTX_new OSSL_PROVIDER_load EVP_CIPHER_fetch EVP_CIPHER_CTX_new EVP_EncryptInit_ex EVP_DecryptInit_ex _plug_decode_free _plug_free_secret __ctype_b_loc available_ciphers __strcat_chk __snprintf_chk time SEALING_SERVER_CLIENT SIGNING_SERVER_CLIENT SEALING_CLIENT_SERVER SIGNING_CLIENT_SERVER memset DigestCalcResponse strcasecmp strcmp strncasecmp strncpy _plug_decode_init strchr digestmd5_server_plug_init strtol digestmd5_client_plug_init sasl_client_plug_init sasl_server_plug_init _plug_ipfromstring getaddrinfo __memcpy_chk freeaddrinfo _plug_free_string _plug_find_prompt _plug_challenge_prompt _plug_parseuser _plug_make_fulluser _plug_get_error_message strerror _plug_snprintf_os_info uname libcrypto.so.3 libc.so.6 libdigestmd5.so.2 OPENSSL_3.0.0 GLIBC_2.14 GLIBC_2.4 GLIBC_2.3 GLIBC_2.3.4 GLIBC_2.2.5                                                                                           +p                            ii
        ii
        ti	        ui	                      $                   `$                                               @             x      H              .      P              ~      X             0C      `              -                                                         -                   Pq                   M                    -                                        3                    `2      (             @      0             1      8                   P              3      X             `2      `             @      h             1      p                                 3                   `2                   @                   1                                      0                   /                    +                   p'                                      .                    +                   )                   p'      P             p      X                   `                    h             @               C                                        8                                                                                D                    0                    :                                        A                                         =                                                                        (                    0         5           8                    @         	           H         7           P         
           X         ;           `         E           h                    p         
           x                                                                                                             G                    ?                                        I                                                            1                                                            2                                                                                                                                              @           (                     0         !           8         "           @         #           H         $           P         %           X         &           `         J           h         '           p         (           x         K                    <                    )                    *                    +                    ,                    -                    .                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HH  HtH         5  %  @ %  h    %  h   %  h   %  h   %  h   %  h   %  h   %  h   p%z  h   `%r  h	   P%j  h
   @%b  h   0%Z  h    %R  h
   %J  h    %B  h   %:  h   %2  h   %*  h   %"  h   %  h   %  h   %
  h   %  h   p%  h   `%  h   P%  h   @%  h   0%  h    %  h   %  h    %  h   %  h    %  h!   %  h"   %  h#   %  h$   %  h%   %  h&   %  h'   p%z  h(   `%r  h)   P%j  h*   @%b  h+   0%Z  h,    %R  h-   %J  h.    %B  h/   %:  h0   %2  h1   %*  h2   %"  h3   %  h4   %  h5   %
  h6   %  h7   p%  h8   `%  f        %    %    f.     fH=y  Hr  H9tH  Ht	        H=I  H5B  H)HH?HHHtH  HtfD      =   u+UH=j   HtH=~  9d  ]     w    1fD  DB0	JWDGшFDB0	JWDGшTFHHuF  @ HH9r/FfD  @<wHWH9t0G<?w5HHH9s<v1H9f        f.     1H9    AUIHATIUSHdH%(   HD$1   McHJ,H9s3fD  H H9tsHH@vH9tL)AT$pHCH9s.CHt$L?	к   D$AT$pHsH9rHD$dH+%(   u7H[]A\A]ÐHHD$dH+%(   uHGpHLD[]A\A]ATUSH    S(HtWH{Hź    H   /   S(IHt7HE1.   H¾       HuS@L[]A\@ S@E1H{H%  11  f     Hv@	OHp	OHp	OHp	OHp	OHp	O@GH8  HtH   HHR@@ ff.     @ AWEAVIAUIATIUSHHxH$   DL$Hl$HH$dH%(   HD$h1ShDL$LE   qLL-  HSp   LHSpMtA<$ tL=LHSp   LHE1SpDLHSpH<$HSxHD$hdH+%(      HxD[]A\A]A^A_D  LLL-  HISHH߉D$   LHSpMtA<$ u@   LHSpIcLELHH߉AiD$A	HD  LPLLHIHH߉D$.D$	D$ff.     @ SHHtjHHDH9sfD   vH9tH[D  HrHH9u wH1HsHHfD  1[@ AVIAUIATUHSHdH%(   HD$H     P(H   IHHLH   HuLH      HELLH  H   I8  pHxTIvLXH  x8IFH  1I@  HT$dH+%(   u"H[]A\A]A^    ո}ff.     fAVIAUIATIUSHdH%(   HD$H     P(HtwHHLHHID$LHL  H   I8  {LIFH  1M@  HT$dH+%(   uH[]A\A]A^øfD  HATHUILSH@  Lj HH   IL   PAD$Z^<HGw!AD$)f     9t@:4t[]A\    A
1A)De []A\ff.      H   ATAUHSHH?HtR@H{HtU@H{HtU@H{ HtU@At-H{H    1HHCP    H)KXH[]A\ H{(HtU@f.     ff.     @ AUATUSHHH    HtwCIt.E11     H{ 3LHLIXCH9rH{ HtAU@H{HtAU`HC    IE@HH[]A\A]f.     H[]A\A]D  HFPATIUH`  SLP(HtWHxHH     HHǀX      H1H)`  H   A$   BHE HB1H[]A\ø@ ATIUHSHHN   t
H    tbx  Q(HHtnHxHHǀp      1HH)x  HH      H   BI$HB1H[]A\1HyHm  1  ߸    AWHLAVAUIATMU   SD{
HHL8  D)@ՉHHHH؃sm@   t@   IE HAMHIcM   LHAEHfCI   jP E<$H1[]A\A]A^A_ L@HIHT0L)r1AɃK9rx T0jD  fT0[fD  AVAUIATIULE1SL@  LLHLM   AD$ID I   AD$<HGwAD$)D  9t@:4t[]A\A]A^ A
1A)De []A\A]A^fAWIAVAUATMU   SDk
HDHL8  L)LL$@ՉIHHփs}@   t@   IHM   LLLLA   HAGfCA\- HcHID,I   HD$H1[]A\A]A^A_@ L@HIHT8L)r1AK9rh T8ZD  fT8KfD  USHHH8  HtvHǃ8      H@  HtZHǃ@      H0  HtBH}HtH}HtH} Ht	H   HP@Hǃ0      H[]f.     AUHATIULSLAHHH@  dH%(   HD$1Ll$LuKHcD$I$@  LE H4u*D$
E 1HT$dH+%(   uH[]A\A] t@ AVIAUATIULSLAHH8  dH%(   HL$1Ll$HHL[uvt$A
   LLI8  u H4uOD$E LE I8  H4Bu-D$E 1HT$dH+%(   uH[]A\A]A^    @ AWAVMAUATIUHSLH(H|$LHT$tHIiA$HT$HF|(H|$DAŅ   E$H} E  LWLu Lt$`IƅD  ="  AF H5  HfA?HF  E1 HxH5  AHuHMcI|IH.  L         HT$H|$DHÅ   H} LLJH] HN"   fE<$H(D[]A\A]A^A_    H|$H|$A,   LfDH} D  \HHHL<"t<\u\H =   HfAH} CE<$if.     H} H$5    LAm7H\$6  11HKz  H{  @ UHH   HMSHH   H   L   HSPH   HU H[]ff.     AWAVAUATUSH(L   dH%(   HD$1  If|   IMƋLDG\HA9R  JH   H   L)Aąt*HD$dH+%(   g  H(D[]A\A]A^A_@ C\H   ȉH   UC\L@H  ME H   1MLHЅ   A6Mu I   HSqH   H   M   1I.<A8|
 ufD  HH
8<A8|
 tL   H1y  11IxA  A    A     LLA.O     IyHx  11A  IyH<  11A  IyH5x  1A  ufAWAVAUATUSHHdH%(   HD$81H  HH  HLIL   H    +  HLt$HD$HFD$H   H   LAą   H   CXȉH   LzI6AVHxWH   HS`   A~HD$    L   IHD$wH   A   MI6IAVHL$H  E M   fA E CXA@E H   E ȉH   E IE CXHD$8dH+%(      HHD[]A\A]A^A_fH   LAąuL   L   AN ANH   H   HLD      AF
E AF
M)Ht$L   fIx>  11Hv  A  A2D  AWIAVAUMATIULS1HHH$H  L$HN   HydH%(   HD$81HD$     HD$(    HD$0       H}   E1H} >  IH   D$    X  MW M  M]  I} HtIT$D$R@IE     D$At6t1|$t*t%H}   Ht$0HtI  ]  1xIl$   I|$E1L=ȁ  1Ƀ|$  1Lmu  LEHu  AHEWE1LHARAWj j j j Q1iH@Å   DHD$8dH+%(   a  HH[]A\A]A^A_@ H$H  |$`  H HD$01MAt  fD  I|$Il$$H$H  HM(t$HL$  HD$   HHcHD IH$ I?ItHT$HHBHD$L9<$uHzHT$HD$HT$fop  :   fxI HBHD$     LH {  II|f
B Hu},  f0@ H9,$uHD$1Ƀ|$L  A.I|$Il$6H
  *A|$I|$Il$E1E11H
  L=  D  I|$HE  H|$0M:Ari|$TI|$Il$L=M  W I|$H  HxU(IH  MD$H1H
G  H   XI|$Il$L~  fIT$HD$(IM$   Ht$ HzHa  8 X     1AщÅ3ID$Ht$(I1ҹ   HxA$   ÅxD  I|$HL$ M   @  éE1H} I|$HL$(M1Ҿ@  wAƩfI|$IP  IH  LD$\$f    I|$H4$HT$0LLT$LT$
MWs    I|$IW 11LV}  L=g}  D     1Aщ    f     HD$   fo  HD$   I :   fAGff.     @ AVAUIATIUHSH      P(H   HHHH   H5|  H;H5|  HCH;HC  H5|  HCH0   IHHt0E11LLHt(HK[]A\A]A^ûf     H8  4HHtE11LLHuH@  1뮻H   H߻P@ff.      ATIHo  1USHH~   A$   H{HtAT$@H{ HtAT$@H{@Ht*CH~1fD  H<HAT$@9kHH{@AT$@H{(HtAT$@H{8HtAT$@H(  HtHH{PHtAT$@H   H   HtAT$@H   HtAT$@H   HtAT$@H   HtAT$@H   HtHHtHAT$@H   AT$@ID$@H[]A\ff.     H   USHHHtyH1H~Hyn        P  u4Hh  HtS@Hp  HtS@HHH[]UD  HHH  qHh  Hu H[]f     ff.     @ AVAUATUHSH ~WAA'I          &KH]H ~(@~Z~CIsAu?H DXu[H]A\A]A^f     CIsD  AWAVAUATUSHH  HT$Hfy  HL$HNPHydH%(   H$x  1H4$      L$IjH  }  l  L%  DX  D$p Ƅ$p   M4$E   A  M  H,$1LT$-fD     LH   Mt$8I8M9  AD$D9r9T  r܅u!|$p H|$p+     H5x  H$p  HLIIDH=    $p   h,   fBt- XDT  D$pauthD$t E  Mf.     |$p   IzPL$HL$HI}  L$Lt$,HID$4    IzPLL   Hǃ       L   LLzy  ǃ       LjRZYL$  L$HIzPIjLv  LLLAZA[L$  L$HIzPLjLJw  LLL$   AXAYL$  $p     P    EJhEtfL\$0@   1L$Lߺ   @   L\$Lv  L$HLLv  LLIzPj LL$(XAYAZL$`  L$HIzPLj Lv  LLL
v  _AXL$L  L$HIzPLj LL
vv  LLuv  Y^L$  HD$MBP8     HC    1HLHS L$L$2  S   HCHx    HxIBPL$PP   AU L$h  L@ H1uHK11L$qHy HH,BIRPHHHC1Hh HC HE     HEHC     LmE   HE     L$HE(HCHxIBPPX$ Lk(1C0   HC8    HH  H   H0Ht$HD$H(      H$x  dH+%(     HĈ  []A\A]A^A_D  H,$LT$jf.        H5lt  H    IjH
IJPH8h  11Hy     D  ,   f|$tH|$p   H5t  L$L$Mf.     L$HIzPLj L
s  LLLs  vA[ZL$IJPHg  11Hy  fD  fD  L$HIzPLjLxs  LLL$  
^_L$:IJPHg  11Hy  @ T  MIJPH h  11Hy  ]IxHBh  11A  BIJP1Hf  1Hy  IJPH<h  11Hy  IJPHg  11Hy  IJPHf  11Hy  IJPHf  11Hy  1IJPHf  11Hy  eD  AWMAVAAUIHg  ATIUSHHxH~   L$Hl$dH%(   HD$h1   HShLDHSpAt$-  Hf  H0HHt$Ht$HSpHLSxHShDLHSpAL$  H  L(LLM$   HSpHH<$SxHSh   LHSpAT$   Hڢ  L0LGLHSpHI|$`SxHSh   LHSpAD$t\H  L(LLHSpI|$qHSxHD$hdH+%(   uPHx[]A\A]A^A_D  H	  @ H	      H  J@ H١      HtHtff.     @ H   H &     ATIUHSH    @ ]  wHrYu
[1]A\fD  #H1@ HDC] t=HDQt=wuٍSЃv    Hf.     1D  I$   []A\f.     HH    H    H  AUATIUHH &     SHH   fD  H< wmHrZtvH;   =tt  HH &      wf@ HrOH    H[]A\A]     GH< v<,uGHOxHp  HH[]A\A]PH v=uHx  H &     < woHr\HHE ?"ufWHO1HȄu%        1HPH   u\tY"   HGH< v<"uHG1HtM wwH &     Hru1I$þ     H wHsH,t7H    HE     LhH9rL1HH)RL끀,u  Hff.     @ AWAVIAUATMUSHH  H$`  Ht$Hl$0L$$L$X  HHD$H$h  LD$(L$P  HD$dH%(   H$  1ShMtLLHSpL-	p     HLSpLLHSpH5{n  Lt   LHSpHt$    HSpH$   HL$   H|$SxH|$LHShHt$    HSp   LHSpL;LHSp   LHSpA<$ u[L$       LHSpHLSxHt$L/H$  dH+%(      H  []A\A]A^A_fD  DD$$L$   
   1H
k     L(LLHSpL   HSpLt$(LjLHSpL   HSpLILHSp   LHSp&fD  AWAVAUATIUSHHH  H$  HT$Hl$0L$L$  HL$L$  HD$(L$  dH%(   H$8  1MHtl  IEHD$VhAT$	     LHSpH$  HD$    H5m  HSpH|$bHt$HSp   H5qm  HSpH<$:H4$HSpMt%   H5Em  HSpLLHSpL$   HLSxLL(AoM A$   AEA$   AD$_  L$   HShIvHAVSpHLSxH$   LHt$ LHUA6AvLl$(LL$8LD$ L$4LH !   S(LHLfo$  Ifo$   @  Xt$ Uj AvLL$8LD$ L$4GHD$HH !   H8S8H   fo$  HL$(H fo$   hH@  H$8  dH+%(      HH  L[]A\A]A^A_fD  H$  LHHD$     HSp     fL$   )$       H\$(E1H; H    bff.     @ AWAVAUATIHh  UHSH
g  fHnH  HNP   H$  H|$LD$0HyLL$8HD$ dH%(   H$  1Hg  HD$P    HD$X    fHn1HD$`    flHD$h    HD$p    HD$x    HǄ$       HǄ$       HǄ$       HǄ$      HǄ$       HǄ$       HǄ$       HǄ$      HǄ$       )$      HMP  HD$p  Hf  HǄ$       H$   H$   HǄ$       HǄ$       Ǆ$       HD${Q(HLIHHD$H$   {A A?   D$,    L$   L$   D$@    L$   L=pf          H5ef  H1  H5Yh  H  H5?f  H  H5d  H  H|$h H}P*  H$   HT$h1H$   8 tcLLLH$   H  ; t?LH<H}PH$   1HT$XH$   8 u    H|$X   H|$p #  D|$,LuPE  H|$x n	  H$    K  H$      H|$h g  HD$Hx( O	  HD$HX HP  H|$hHZ  E1HD$H|$pHp(!  L$   H   LA(  Å
  LuPHt$XEtuHD$HX ;   H HII|AV(H
%e  H   H$     HD$LD$XH$   LH 1aH$   LuPHD$`   Ht8ɃI~LD$ 1   År
  Ht$`LuPH
  > 
  I~LD$    1   Aƅ
  HMPH\  11DHy  HD$LuPHD$    H@Hx   H|$AV@  f     H   HD$Hl1HyHX    HD$H@Hx #  HxHEPPP  HL$pHD$    H  HD$1HH@0  HEPHyPXH|$ Z  LuPH|$AV@H  D  H}PH$   HT$`1 H}PH$   HT$x1 H5}c  H1  H5a  H  H$    H}P  H$   H$   18# H$   HH  HH1<Fw/<@wCx@	
  tHH9u؉t$,D  x@
  tft    HyHV  11  HD$    H$   HtHEPP@H|$XHtHEPP@H|$`HtHEPP@H|$hHtHEPP@H|$pHtHEPP@H|$xHtHEPP@H$   HtHEPP@H$   HtHEPP@H|$HtHEPP@H$   HtHEPP@H$   HtHEPP@H$   HtHEPP@H|$P tH}PHt$PH$  dH+%(     Hĸ  []A\A]A^A_fD  H5H`  H	   H$    H}P  H$   1H$   'HD$H?  HD$HpH-  H$   HMPHEV  11Hy    fH}PH$   HT$p1 HD$@D$HtH5_  HA8H5t_  H*V  H5^  Hm  H5^  H  T$@
  H$   H$   CY
  H$   H)
  H=   D$@   H|$X a  H|$p s  LuPI~HYT  11A  HD$    LuPHD$H@Hx HxAVPHL$pH  1tH1uH|$1HOqG0օ?La H4L,rIM  A;D$   HUP1LHD$HHHMPH]  11Hy  %D  Hu HHt$HGH$   Ht$HHHHHL$H	  HL$H</	  H$   sHMPHR  11Hy  HMPHS  11Hy  L|$1AG0AD$IOID$(#HHUPH4FHA H<1lHD$HHH}PH$   H$   1ӿI~HT     1A   HD$H}P1Ht$hHP 蜿LuPHUPL1HL$HALh HD$XMIE HA HD$X    IEHA(HA     IEHD$xHA(    HD$x    IE A0D$,    H}PH$   H$   1I~H	S  11A  #H@Hx D  DhE7  HL$pH  1ۄtH1ۄuHxAVP   HD$1LpAHHBIV HHLjHT$@MtH|$hLunHT$@ztH2Ht[H|$XuML|$H}P1LIW IGH}P1IW(H@ HtMwI^ CAG0HC(IH  HEPI~PXHD$LuPHx( 1I~HL$p   H+[  A   HD$LuPHx( ^L$   H   LA(  ÅuzLuPHt$XH5Y  H  H$   H5Y  HH}Pi  H$   1H I~HEQ  11A  7HMPHjR  Hy11  LuPHD$    I~HR  11A  ; I~1   HQ  A   HD$Hx HtHEPP@HD$H}P1A   Ht$hHP YLuPJLuPH   H$   LA8  LuPJ  H$      H$(  H  H8HH  H{AV(HD$PH  HHHH$(  HSHH0譼HH}PAHH$x  E1PHT$xHt$hDƄ$   A]A^  H}PHt$P蠻LuPH   H$   Ah  L$   M  HD$H    HD$ x$vHD$H(  HD$HH5CW  L  H$   H  L5  M.MtWL\$@HHMLIIHHuuHL$AD$;X  r9T  -  Il$8I8HuLHMPHP     1Hy   HMP11HP  Hy  HD$ @$   E1LuPLD$D  I~HN  11A  _D  HMPHTX  11Hy  IHL  H1A  !LHT$h1H5DX  ùHMP   1HAN  Hy   LuP^HMPH3O  HyH5U  H+   D$HWH$   H5U  ;HMPHV  11Hy  JD  H$   1LH$8   t)H$@  HtH oƄ$   )$p  q11I~HtV  A  H    HD$      LuP1:LMPHHuL  1L$      IyA   ^H5T  LuHD$X    H5V  L'  HD$11ҋX    Ht$ D$@    HN0HV@F$H|$HuPMLwPAVt$hH$  Pt$(L$   L$LH$   'H IH-  H$   H7  HMP7  LQ@HuPAVt$hH$  Pt$(L$   L$   L$LH$   H|$(HD$0H H  H$   H|$輷  HD$Hx( X  L$,9H0  HEPH  HxHT  11HD$LuPǀP     "IHI  H1A  HMPH7J  11Hy  IHI  H11A  LMLIIHD$HHL$ \$@L  AoF(Ao^     AFA$AFD$@HHA0HDHA@HMPHPL  11Hy  Ll$LuP)I~HS  11A  iH}P1H$   H5S  蠵L$   NHD$PH}PL AQHHA   H$  PHT$xHt$hƄ$   AZA[HMPHvR  11Hy  MT  H
HH   HMPHR  1Hy  LuPHD$    4HMPHQ  11Hy  HMPHQ  1Hy  HMPHSH  1Hy  HMPHK  11Hy  1LuPHt$HyHIK  11  Ll$LuPH@Hx   HL$ H$   y$P   Q   A HD$ H|$ǀ       HEPHGX    H   HD$HHtЋUhL|$  I   I   DĲHD$ H$tLHuPL$@LL$`  H$P  I   MII   LHtLHЅ  HL$1H}P1$   LpQ  AVy L   L   LIPLLPLXZuaHD$LuPx    HD$L   LXH=   wOHL$8HD$0L HMPHP  11Hy  HMPHC  11Hy  LuPHMPH&I  11Hy  LuPHMPHH  1Hy  HD$LEP1HFP  H  Ix1A  LuPX1^AQLP  LLjL$   LLAZA[   HD$L$`  
   L)N  
      LDH01̲H}PMLVLnN  LLj ]_AXu7H}PPLLjL$   LM  L2ZLuPYXLuP4HL$ A $1ٲHL$HQH+H  H;BHy( H5HEPH  HxD$,;B0HN  11>IHM  H11A  AVUSHI     Lt$0A    H       HHtKt.LFPHyG  1   1A   H[]A^ Lt$0H[]A^fD  uvhuǃT      1*@ }d   )9    BǉT  E`9r)X  HtHCHx uHHHL[L]A^# HHHAVLL$LD$ZY?HMP11HM        I~I    1Iǆ       HI)A   HH{(L$LL$HtHEPP@LL$L$H{ HtHEPLL$L$P@LL$L$fC (@ fD  AWIHF  AVAUATUHSHH  HN   dH%(   H$  1D$\    Hy   A$HD$0    vH(  HD$0T  V    HIG0HkIG@HX  PHAW$HL$LH  o@o`(H1J  HD$     DcLuE  HD$8    H   HD$MgMoLLK{0Hs(    HH  HS LDHC8|$HHt$ Lh  HD$HL  HC  ;  H|$ /  H&  HHK  LLLT$(HDHE1H$H  HLHD$P̲DSAXAYE  L$   LAVh{  H4$   LAVpH$p  HD$@   H5pL  LAVpH|$ 7Ht$ LAVp   H5EL  LAVpH|$Ht$LAVpMt'   H5L  LAVpLޫLLAVpH<$LAVxH<$L$  L$P  sfo$@          L$   LAVhHD$LHpPAVpH$   LH|$(AVxH|$(H4$膮t$@LHt$VLl$LAu AuLL$0LD$8L$hHT$@QH !   AV(LLfo$p  HD$(fo$  @  Xt$@t$j AuLL$0LD$8L$hHT$@H H{P!   AV8H  fo$p  HCP(fo$  pHCP@  H   HtHEP@Lt$\HH}MOLt$L   L   Lǃ       LLLyG  Hǃ       jtZY
  HH}LK LjL!F  LLGA[A^  MOIwLLL$֪LuLL$t/HLLLjHL$LF  _AX  LuHLK(LLjHL$LG  LƻAYAZZ  HH}LK8LjHL$LH  L蕻Y^+  DK0
      L$   LL F  
   豪HH}Mj Lt$LLLFF  L:A[Z  HH}LLj LL$ LgE  LD$ AYAZ  HX  Ht/HH}LLj HL$L+E  L˺_AX`  DMXEc  HD$D[LLLE  H}LHEHE  LEHjHL$wA^Z  DSLuEtoHLLLj Lh  LD  HL$8^_  Lp  LuMt.HLLLjHL$LF  ZY  LuHLLLj LL$8LD  HL$˹AXAY_  H   SH=   G  H`  A$AG )  AG HuHD$0HCX    H   HtHH   UX  H   D舦AG$d  H|$8HtHEP@H|$(HtHEP@H$  dH+%(   )  D$H  []A\A]A^A_D  H} H}IsI|AV(HD$8IH  Hu H-A/   fDHuHxfHiC  Lt$hLuHD$`HD$`HD$p    HD$x    Ǆ$       HD$D  LT$(H$p  HD$@MH5B  L.f     I~
  11HL5  A  HD$(        HyAG$   IG0HIG@HA  D$L    HD$f     HC  IG0    IG@    AG$    D$L    HD$    AG fD  L$p  LC  @   1   @   LxHH}Lj HL$MLLvA  Y^GHMH<  11Hy  @ HuL$LL$@  L$  H   MMHH   H_LLHЅLLEH  11H:<  IxA      D$ fH$   )$       H$p  H<$HHD$@    LAVpRD$f     H{PwHCP    uD  AWAVAUAATUHSHH   HNH$   H|$LD$0HD$ H$   LL$HD$(dH%(   H$   1H    fH1uHt$L~EWA     H|$LsH    H|$         tSHt=     11A       H$   dH+%(     HĘ   []A\A]A^A_D  1AAH\     H5SA  HHD$6      IAVP  HD$Hx HtHCP@HD$Hx(HtHCP@HD$Hx8HtHCP@HD$fH@8    HǀX      @ Ls1I~   H@  A   CP9CT  HD$Hx(   HD$Lx@DPHLt$(LL|$DLD$0HML耺ŅLHLŅI   HHt$ HD$HA      o        fI~H@     1A   HCA}P(HD$pIH  DA  A?  EtU AA  A HD$xA; L$   HD$Hl$pL=?    L\$^f.     A<$ Ls  LLVL$     1I~LHn4     A   HD$p8 s  Ht$LH<Ld$xMuL\$HK11H?  L\$Hy  LsL\$LAV@HD$H@HxHCPPHKH  
  fD  H1uHt$1LsHNqF0  
  HyAVXfD  HU I{HHIHTITLH)AL H)HeIAVP:  L|$DHIWHALj LbID Hx(HCHhXH  Hsĝ  LHKH=  1   Hy   LL$(11LD$0HL蒷ŅHKH  E1tHA1EuL|$IGhHxHCPP  D1MoMe HH,BHII|$(H   Hs   HD$(I<$Hp   I HtHCP@MoIE L|$1H{Ht(IW IGH{1IW(H@ Ht(ܝIGH{1HP HBHr BAG0IG8H讝A   MoIm Ht$E0T  HE8HX  HE@H`  HCI}PXHD$Hx( tGHH\$HT$(H{ŅAH   H貜Ht$ HD$HLHD$    f     1L\$Ls2Ҿ   HHBHA H<L.HD$LsHHL\$|HD$L\$LHxPL\$L\$z  I~Hx6  11A  LsL\$)HK1H4  HD$p       Hy   HET$@:
  HCA}P(HD$8HD$pH  DA  A  EtU Ht$8A  L|$Ht$8 H{IǇ`     IG8H  HD$8E18   1E1HD$xD$H    D$h    Hl$pEL$   D$l    D$T    D$D    HD$L$PdEfAHCMcIM  LLP8IH{M	  H$   KT71KD7    EHD$p8   Ht$LHLd$xM  A<$   H5L6  LE]H5z8  L.   H56  Lu  H56  L I  H56  L   HD$HH      DP  EH  HD$HǀH      HD$(    ǀ       Ht$8HU H~HHTHHTH)HHAL H)HD  Ld$H{1H$   IT$(胙AD$0   D  LP(IZH55  L  D\$DE
  L$   HD$LH`  A
  HD$H`  H
  H= 	  D$D   L$   M   Hl$HLŀ}     L$   M  H	D  A$<    H   tf,   LL$   踘H    LHhПH6    H5w4  L  L$PH$   HVHl$HD$H   :D  <,{IWL$   MLl$`Hl$XLŀ}     L$   M  H	D  A$<    H      ,   LL$   ėH    LHhܞHN  H\e    H2H  I     Iu8I8H  LוuAu	t$hH$   H)Hl$XLl$`  <,WI/L|$DHSHIwHHHF    H<-IGHxHCPX!H52  LJ)  H$   H52  .HKDt$11HP5  Hy  MLsDT$D$@DT$H|$8AV@|$@ DT$$Et#IcMM,D  HCI<$IP@M9uHCLP@L$PELsuDD$H   EY  |$T2  MD$@DT$I~11H</  A  LsDT$HH51  L+  L$P1H51  L
  HD$L$   DPEv  H554  LٓtH51  LƓc  HD$H{1LHh  |$T_  D$T   1U ATATHy    HHBLL$    LL|$H{1IGHP HD$(HpLwIGIW 1H{Hp LHVIW(IG     HVAW0IG(    VIW8HV HV(HsIG8    "AW  IOHA LHt$LsT  P0HX  HP8H`  HP@3LFH1oH{HH  HKDt$11Hd0  Hy  6HD$Hx( H  Ht$Cp~  sX  HD$HX     DT$H|$8AV@DT$AtHD$Lx@DPH?HD$Hx HtHCDT$P@DT$IHt$DT$LE1HF HCP@DT$HKH1  1Hy  HCH|$8P@LH18H50  L2f  L$P8H50  Lj  HD$DHElH{1H$   Hp  -|$l  D$l   :H$   'Ht$HNHh  HA LHPHHp  Hǆh      HPPHǆp      HT${TsPHX  9o  9EHODT$I~11Hx+  A  MLsDT$D$@$LKLH)  1   IyA   &EITfAT#H$   CLKLH)  1   IyA   LKLH$  1L$      IyA   H5-  LcHKDt$11H-  Hy  MLsDT$D$@0DT$I~11H)  A  H>))9    AC      H^  H8 u[f.     H8H8 tGp9rA9r|$h#xtHt9rsHt$HHX  ƋU Ht$8TTHtHD$ǀT     IL$@I~11DT$H.  A  LsL$@DT$HD$HX   
   ǀT     DT$I~HJ.  11A  THt$8fTDLCDt$L1H'  1IxA  E14HKH-  11Hy  HD$ǀT     HDT$I~HM(  ZLsE1HKDt$H&  1Hy  LCDt$L1H'  1IxA  LCDt$L1H&  IxA  HKDt$11H,  Hy  W_L|$H{1IGIh  H@ Ht(H軍MoIE Ht(PHH{Ip  1蓍MoHKDt$11H&  Hy      AVAUATUSH dH%(   HD$1HD$    2  HIIMĿ(   U(HH&  fHL$H@     LD$ Ht,  H5)  @H}U H|$H   
   1HHH)HHCH   tEUHHCH   `"  Cd   U(HC HH   C1HHPH褊H[  HHZ  A   IE 1A$   HT$dH+%(   uVH []A\A]A^ÐHCHhHC    f     H{U`HU@HU@S    AVIAUIATMUH(   SU(HH   f@$        @@UHHCH|   p  C
   U(HC HHtKC1HHPH腉HY  HHdY  A   IE 1A$   []A\A]A^fD  f     ø Kff.     髊f.     AWAVAUATUSH  L$dH%(   H$  1HD$    H   IIH  HH  ;     H$   u#  f     ;tHH=  i  AuLc;BƄ<    HLDK,>Le E}   萉HKD>fD  L HEt[BDbuI}   11H)  A  AH$  dH+%(     H  D[]A\A]A^A_fD  fHT$ HL$HH$   D$$D$4D$(   D$    D$@Aą   L|$LD$P   LLD$AWIwILqf|$P
LD$uD$XD$\u
|$`  tED9t$   DLHwI}   11H~(  A  1|D$dA   HD$X    D$T   fD$PHI}   11H+(  A  I}   11H(  A  I}   11H'  AA  _蔈@ H   AVIAUATIUSHtYIHtVH>Ht29r1[]A\A]A^Ð9rAV8I$HtGA] D  AV(I$HtXAm HtI~   11HB'  A  AE     I~   1HZ'  A  oAE     I~   1H/'  A  ӸHq  AVAUIATUSHH  IH  L!M   AD$    IT$   HH1H@ HHH9uAL$LLć   AT$I<$1̄I$     H3HSHH
HKHH9u1[]A\A]A^fD     AU(IHt~f M&J1LLCuAT$I<$1OI}   11H%  A  HtI}   11H%  A  bI}   H%  1A  봸H   AVAUATUHSHHtDIHtAHIHxIU(IHHtBHMtE,$1[]A\A]A^HtH}  11H$    1H}  1H%    밸 HtCATUSHHt+L&Mt#HLLL   H;U@H    []A\        Ht;USHHHt$HHtH0Hx   H;U@H    H[]fff.     @ Ht3HHt%HHt#    HP0H0HtH9uD  1D  AUILATAUSHH(dH%(   HD$1H    LHt7H@ Et	H   H1HT$dH+%(      H([]A\A]ÐI}HL$HT$A   uEtuHD$Ht1H|$HډЅuEtH; uI}l  H#  1A  qI}He#  1A  蕃D  AUIHATIUHSH(dH%(   HD$1H    @      CHtnHx  H   x(HAU(HE H   S(Hs HxH5HE HD A$   1HT$dH+%(      H([]A\A]I}HL$HT$@  A   uHD$HtI}Ht$H@  ЅuH}  uI}  H!  1A  x    I}  H!  1A  NI}HB"  11A  0AVIAUIATILUSLH dH%(   HD$1I     Ht:H@ H   H1HT$dH+%(      H []A\A]A^    I|$HL$HT$A$   uHD$HtHLLIj E1H|$ ZYuH; uI|$  H   1A$  eD  I|$Ht!  1A$  # ATI@  UHHSHH dH%(   HD$1H    ~Ht6H@ H   H1HT$dH+%(      H []A\    H}HL$HT$@     uHD$HtH|$HL@  ЅuH; uH}  H  1  w H}H   1  .ff.      AW   IAVAUIATIULSHHHM~  H|$P tH|$h tH$      L@ALD$LAW(LD$HH  HxH     JD0    HH)A1HHMtHw   H@  H0HBLjLbMtHg   H@  H0HBLBHjH|$P t(H  H@  H0HBHD$PHBHD$XHBH|$h t&HD$`H@  H0HBHD$hHBHD$pHBH$    t,HD$xH@  H0HBH$   HBH$   HBH    f1HB    BH[]A\A]A^A_fH|$P H|$h H$    A`   ~1HH  1A  D  @AN1I*  1Hv  A  dD  fH7GG   GW$fD  AWAVAUATUSHXH$   LD$(HD$H$   HD$ dH%(   HD$H1A      GIHIM̅   DwE>  EG$E9  IGHT  Aw D)H<09  t$HHT$.~DD$HT$HL$@IwH|$ AHHD$AWDLD$<D)Ѕ   T$<A$LI?LHT$(V}   T$<Ht$@A<$I} }IU D$<A$A$    AG      9ALDFH)H~HDD)HT$i}AGHT$D)HAG   AOAG     AAOE HT$HdH+%(   uHX[]A\A]A^A_f     IDP(IGHtKEwD  M1DH     1A   @ H|A_ 1{qt{@ HGHtHHHR@     AWAVAUATUHSHH  MM   ILϾ@   HT$IMzHT$HHtzIHp1HqzM) IALU(IE Ht%LLH7{@HD[]A\A]A^A_fH}  11H  A  fD  1MtA? u;LHyAEuHLLH[1]A\A]A^A_yf.     LHyAH}  11H\  A  Gff.     HAVHAUIATIUSujHHtbHLxHIxI|AU(HHHtZLyL#Lx@   HfAH;y1[]A\A]A^D  1I}  1H  A  1I}  1H  A  @ SHHdH%(   HD$1xH1HHxH$t1HT$dH+%(   uH[xf.     ATUHSH  dH%(   H$  1ILvHHcMH$   L     HPH1"yLH$  dH+%(   uHĐ  []A\Kx   HH                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Unable to allocate final buffer DIGEST-MD5 unavailable due to lack of HTTP request      Out of Memory in ../../plugins/digestmd5.c near line %d DIGEST-MD5 SASL packets must be at least 16 bytes long  Incorrect Sequence Number: received %u, expected %u     CMAC doesn't match at byte %d!  Parameter Error in ../../plugins/digestmd5.c near line %d       Please enter your authentication name   Please enter your authorization name    DIGEST-MD5 common mech dispose  DIGEST-MD5 client mech dispose  user_realm is an empty string!  no way to obtain DIGEST-MD5 realm       internal erorr: failed creating a nonce internal error: add_to_challenge failed internal error: add_to_challenge 3 failed       internal error: add_to_challenge 4 failed       internal error: add_to_challenge 5 failed       internal error: add_to_challenge 6 failed       internal error: add_to_challenge 7 failed       internal error: challenge larger than 2048 bytes        internal error: out of memory when saving realm DIGEST-MD5 create_layer_keys()  input expected in DIGEST-MD5, step 2    missing HTTP request in DIGEST-MD5, step 2      required parameters missing: username   required parameters missing: noncecount required parameters missing: nonce      duplicate realm: authentication aborted duplicate qop: authentication aborted   duplicate digest-uri: authentication aborted    bad digest-uri: doesn't match HTTP request      bad digest-uri: doesn't match service   duplicate maxbuf: authentication aborted        DIGEST-MD5 unrecognized pair %s/%s: ignoring    required parameters missing: cnonce     required parameters missing: digesturi  required parameters missing: response   The client didn't send a realm, assuming empty string.  The client specifies a realm when the server hasn't provided one. Using client's realm. The client tries to override server provided realm      nonce changed: authentication aborted   unable to obtain user password  unable to canonify user and get auxprops        unable to canonify authorization ID     protocol violation: client requested invalid cipher     client requested invalid cipher protocol violation: client requested invalid qop        internal error: unable to create response       client response doesn't match what we generated (tried bogus)   client response doesn't match what we generated Invalid DIGEST-MD5 server step %d
      DIGEST-MD5 make_client_response()       internal error: add_to_challenge maxbuf failed  internal error: failed to init cipher '%s'      DIGEST-MD5 parse_server_challenge()     Server supports unknown layer: %s
      Server supports unknown cipher: %s
     At least two maxbuf directives found. Authentication aborted    Invalid maxbuf parameter received from server (%s)      Invalid maxbuf parameter received from server (too small: %s)   Invalid maxbuf parameter received from server (too big: %s)     Must see 'algorithm' only once  Server doesn't support any known qop level      Must see 'algorithm' once. Didn't see at all    Server doesn't support "no layer"       Can't find an acceptable layer  DIGEST-MD5: This server wants us to believe that he knows shared secret Invalid DIGEST-MD5 client step %d
      Digest session key to server-to-client signing key magic constant       Digest session key to client-to-server signing key magic constant       Digest H(A1) to server-to-client sealing key magic constant     Digest H(A1) to client-to-server sealing key magic constant "\ Wrong Version Please enter your realm {} Please enter your password DIGEST-MD5 ask_user_info() {%s} legacy default RC4 DIGEST-MD5 server step 1 auth-int , auth-conf qop cipher true stale %u maxbuf utf-8 charset md5-sess algorithm %08x *userPassword *cmusaslsecretDIGEST-MD5 DIGEST-MD5 server step 2 AUTHENTICATE Parse error username authzid nc digest-uri response invalid maxbuf parameter maxbuf parameter too small maxbuf parameter too big client doesn't support UTF-8 'algorithm' isn't 'md5-sess' No reauth info for '%s' found %s@%s no secret in database empty secret unable to allocate secret no cached server nonce incorrect nonce-count server nonce expired couldn't init cipher '%s' rspauth error converting hex to int DIGEST-MD5 reauth failed
 %d opaque DIGEST-MD5 client step 1 rspauth= DIGEST-MD5 client step 2 no server challenge failed to create cnonce Charset must be UTF-8 md5 Must see 'opaque' only once Don't have nonce. No good privacy layers DIGEST-MD5 client step 3 DIGEST-MD5 Received Garbage reauth_timeout rc4-40 rc4-56 rc4 3des :       Available realmsParameter Error in ../../common/plugin_common.c near line %d    Out of Memory in ../../common/plugin_common.c near line %d      Unexpectedly missing a prompt result in _plug_get_simple        Unexpectedly missing a prompt result in _plug_get_password      Unexpectedly missing a prompt result in _plug_challenge_prompt  Unexpectedly missing a prompt result in _plug_get_realm make_prompts() called with no actual prompts    encoded packet size too big (%d > %d) Authorization Name Authentication Name %s %s  ;   C   t\<  `d  $`   a|  Ta  a  b  Dc$  c8  cL  e  4f  Tg  h@  h  Ti  i  tj4  $kd  Dl  l  nP  nx  To  $p  trD  rt  t  w  }  D~    4,	  Āl	  d@
  D
  d
  $
  TL        tT
  T     td  T  d  t  44  $|    T  <  h  4|  4    D  x      T(  t<               zR x  $      0Z   FJw ?;*3$"       D   ]              \   ^L          p   ^i       L      _    BHD A(D@
(A ABBB]
(G ABBB   ,      _    BAA \
ABE        `            `!       H   ,  `   BEE E(D0A8G
8D0A(B BBBF   x  b|    Ay
F{ @     tb   BEE A(D0D@
0A(A BBBH @     Pc    BEE D(A0D@
0A(A BBBA @      c    EFG L(U0K(A q
FBHNAB   0   d  (d    KDD ^
ABDX H     d    BBA A(D0q
(D ABBLD(A ABB  ,     d|    FDI ^
ABA   ,     8e    BDD x
ABA   P   D  e   BHB E(D0F8M@HAPM8C0A(B BBBD@   H     f    BDE D(G0b
(F BBBDN(A BBBH     f*   BEB B(D0F8SP
8C0A(B BBBE $   0  g    AAG AA8   X  4h    BED D(M@j
(A ABBD @     h    BEB D(D0J@
0A(A BBBH H     $iL   BBE B(D0D8G`I
8D0A(B BBBH,   $  (kD    AN\ A(A0TAA   H   T  Hk   BBB B(A0A8D`
8D0A(B BBBE L     l;   BBB B(A0A8Dr
8D0A(B BBBC   p     n   BEB E(D0D8F>KBBBBBAKd
8C0A(B BBBE   <   d  t"   BBE D(D0
(A BBBA   (     xu4   BMA AB 8     v    JAG L
GAJdAAJ   <      w    BBB A(D0a
(D BBBJ      L  Pw   BBB B(A0A8JDFATIWBTI\BgVLBTIZBTIZA
8A0A(B BBBFI[ACI[A L      ~   BEE L(D0A8Gd
8A0A(B BBBF      p         D         UDD _
CBGXH JAB   \     0!   \BD N(G0j
(A ABBIn
(A ABBAA0L   ,	   J   BBE B(D0A8J
8A0A(B BBBG   t   |	      BBB B(D0A8JGCD_uABD\Z
8D0A(B BBBG     	     BBB B(K0D8U
8C0A(B BBBGVYDDID]|DIDoSYB(`KAOUBDOFBIHXE\   
     BAA D0`
 AABDI
 AABK`
 JDBHD8H@P8A0  \  4  
   BLB B(A0D8JvXKBRILD\uDBD\WBFALMTBnKRBPLVBLMUAvI\ALLZBXLUBEBLAYKYA\KRAPKXB
8A0A(B BBBFIXA   H        BBB E(A0D8J
8C0A(B BBBF     Q    @    
     BBB A(A0DP*
0A(A BBBBT   D
      KEE D(I0
(A BBBGPF0         
            
         L   
     BBB B(A0A8G
#
8D0A(B BBBG   D         KEB D(A0`
(A BBBB   D   \     KBE A(A0
(A BBBG  D         KBB A(D0D
(A BBBAG  ,     @I    GAA tABH   (     `A    FAG mAAC     H  ;       8   \      BHD C(GPP
(A ABBB 8     t`   BHD D(DP
(A ABBA L     
   BEE G(C0GPK
0A(A BBBHkXK`MXAP 0   $  X    BIG G@K
 AABH H   X  $;   BJB E(D0D8GP
8A0A(B BBBC            L     $L   BBB B(A0A8D
8A0A(B BBBJ        $       `     0E   BBB B(A0D8DP
8D0A(B BBBCL
8J0C(B BBBO<         EHE I(A0_
(A BBBF         V    AI E
AA <         BAD Ib^QZ
 AABA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         $      `$                                                            
       (                                                            o    `             h
             H      
                                               X                                                           	                            o           o          o           o          o    ,                                                                                                             6       F       V       f       v                                                               !      !      &!      6!      F!      V!      f!      v!      !      !      !      !      !      !      !      !      "      "      &"      6"      F"      V"      f"      v"      "      "      "      "      "      "      "      "      #      #      &#      6#      F#      V#      f#      v#      #      #      #      #                                                                                                                      Q   !              x       .       ~      0C       -                                       Q                -      Pq      M       -                                                                            (              3      `2      @      1            8              3      `2      @      1                          3      `2      @      1            7             0      /       +      p'            p             .      +      )      p'                                                              p                   @      /usr/lib/debug/.dwz/x86_64-linux-gnu/libsasl2-modules.debug }&X%i
0Giub51e22edb290ebb67a31d3a1820520932ad931.debug    S .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.got .text .fini .rodata .eh_frame_hdr .eh_frame .init_array .fini_array .dynamic .data .bss .gnu_debugaltlink .gnu_debuglink                                                                                  8      8      $                                 o       `      `                                   (             H      H                                 0             h
      h
                                   8   o                                               E   o                                               T                                                    ^      B                   X                          h                                                           c                                                         n             #      #                                   w             #      #      U                             }             (      (      	                                                                                                               $                                                      $                                                                                                                                                                                              r                         (                                                       p                                           p      p                                                          p      P                                                          4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ELF          >            @       `B          @ 8 	 @                                 x      x                                                                  0       0       0                               =      M      M                               =      M      M                               8      8      8      $       $              Ptd   4      4      4                         Qtd                                                  Rtd   =      M      M                                  GNU }߉niZURQ                Y d, (                                "           $       &   (   _\`9O*=EqDq UH|<[Adz	A3O.Ouڐ(bjB?\                                             g                                                                                       o                      0                                                               >                                            X                     K                     ,                       2                     j                     F   "                   $                     K                          `                               s    -             U     !      A           p                P!      I           %             7    ,                         G            0"                  P                 !      ;           P+                  &      ;          $      
           0#      `      R    -      V           (             o                      p+      E                 G       _    0                  )      L       __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize _plug_free_secret strncpy __stack_chk_fail _plug_get_password _plug_make_prompts _plug_get_simple login_server_plug_init login_client_plug_init sasl_client_plug_init sasl_server_plug_init _plug_ipfromstring __ctype_b_loc getaddrinfo __memcpy_chk freeaddrinfo memcpy _plug_buf_alloc _plug_iovec_to_buf memset _plug_strdup strlen strcpy _plug_free_string _plug_find_prompt _plug_challenge_prompt _plug_get_realm _plug_decode_init _plug_decode _plug_decode_free _plug_parseuser strchr _plug_make_fulluser strcat _plug_get_error_message strerror _plug_snprintf_os_info uname __snprintf_chk libc.so.6 liblogin.so.2 GLIBC_2.3 GLIBC_2.14 GLIBC_2.4 GLIBC_2.2.5 GLIBC_2.3.4                                                            ii
                ii
        ui	        ti	         M             p      M             0       P              P       P             0      HP                   PP                   XP                   P             0      P             @      P                    P                   O                    O                    O                    O                     O                    (O                    0O                    8O                    @O                    HO         (           PO         )           XO                    `O                    hO                    pO                    xO                    O                    O         	           O         #           O         
           O                    O                    O         
           O         !           O                    O                    O                    O                                                                                                                                                                                                                                                                                                                                                                                                                            HH?  HtH         5>  %>  @ %>  h    %>  h   %>  h   %>  h   %>  h   %>  h   %>  h   %>  h   p%>  h   `%>  h	   P%>  h
   @%>  h   0%>  h    %>  h
   %z>  h    %r>  h   %j>  h   %b>  h   %Z>  h   %R>  h   %J>  h   %B>  h   %:>  h   %2>  h   p%B>  f        H=!?  H?  H9tH>  Ht	        H=>  H5>  H)HH?HHHtH=  HtfD      =>   u+UH==   HtH==  Yd>  ]     w    Ht+UHSHHHHtV@HE@HH[]@ ff.     @ HtKUHSHHGuHE@HH[]f     HwH4HE@HH[]D  ff.     @ AWAVAUATUSH(dH%(   HD$1L|$`I     A    H  ͋IHHMM̃td   tHMFP1H  1   A   HT$dH+%(   H  H([]A\A]A^A_D       INP     AHt$IQ(Ht$HHCH  L>HCkB8 H  A$	   IE       _    INP      HT$H}Q(Ht$HHD$  HxHHD$HL$MD) IFPSHsH)   HxA   HL$IFPIwAWLIHxDL   I~PHt$D$   6IE     D$A$    A   IG     IG(    IG0    IG8    IG@    AǇ       S 1HyH  1  1H  A	   I f.     MFP   Ix1HB  1A      kD$HyH  11  MFP   Ixff.     @ AWAVAUATUSHH(dH%(   HD$1L|$`Lt$hHD$    M  ILM̃   tZLF11H     A   MtA    I$    HT$dH+%(     H([]A\A]A^A_ H  HGH  Mt$I8HtHFP@HE     IEH  MtHAHI$1A   IF     IF(    IF0    IF8    IF@    Aǆ       GD  LVFP9Fp  H  I~   Mt!I8H  AR@HE     LSHl$1IzM   H   MtAFAIFI$   AE    f     HWHwH{LHt H} HtHSD$R@HE     D$H  H{j E1j E111j Hj j j j PH@%   HL$   @  LYHt H} HtHSD$R@HE     D$LSunj E1L  1j 1HLj j j j j j gH@kfD  1LC  H1  1IxA  \Hl$ZLFC  H   1IxA  1IzH  1A  IzH  11A  HNH6  11Hy  f     U   HSHHHFP(Ht"f@        @HE 1H[]LC&  H  1IxA  ff.     fU   LSHHHFPP(Ht"f@        @HE 1H[]LCPM   HY  1IxA  ff.     f~H5     H1A    ÐHI1HH  1A  Hf     ~H5     H1A    ÐHI1HHl  1A  Hf     ff.     f.     AWAVAUATUSH  L$dH%(   H$  1HD$    H   IIH  HH  ;     H$   u#  f     ;tHH=  i  AuLc;BƄ<    HLDK,>Le E}   PHKD>fD  L HEt[BDbuI}   11H  A  AH$  dH+%(     H  D[]A\A]A^A_fD  fHT$ HL$HH$   D$$D$4D$(   D$    D$@{Aą   L|$LD$P   LLD$AWIwILqf|$P
LD$uD$XD$\u
|$`  tED9t$   DLHI}   11H  A  1|D$dA   HD$X    D$T   fD$PHI}   11HC  A  I}   11H#  A  I}   11H  AA  _@ H   AVIAUATIUSHtYIHtVH>Ht29r1[]A\A]A^Ð9rAV8I$HtGA] D  AV(I$HtXAm HtI~   11HZ  A  AE     I~   1Hr  A  oAE     I~   1HG  A  ӸHq  AVAUIATUSHH  IH  L!M   AD$    IT$   HH1H@ HHH9uAL$LL   AT$I<$1LI$     H3HSHHmHKHH9u1[]A\A]A^fD     AU(IHt~f M&J1LLsuAT$I<$1I}   11H  A  HtI}   11H  A  bI}   H  1A  봸H   AVAUATUHSHHtDIHtAHIHxIU(IHHtBHtMtE,$1[]A\A]A^HtH}  11H    1H}  1H    밸 HtCATUSHHt+L&Mt#HL,L   H;U@H    []A\        Ht;USHHHt$HHtH0Hx   H;U@H    H[]fff.     @ Ht3HHt%HHt#    HP0H0HtH9uD  1D  AUILATAUSHH(dH%(   HD$1H    Ht7H@ Et	H   H1HT$dH+%(      H([]A\A]ÐI}HL$HT$A   uEtuHD$Ht1H|$HډЅuEtH; uI}l  H  1A  qI}H}  1A  D  AUIHATIUHSH(dH%(   HD$1H    @      HtnHx  H   x(HAU(HE H   S(Hs HxHHE HD A$   1HT$dH+%(      H([]A\A]I}HL$HT$@  A   uHD$HtI}Ht$H@  ЅuH}  uI}  H
  1A  x    I}  H
  1A  NI}HZ  11A   AVIAUIATILUSLH dH%(   HD$1I     Ht:H@ H   H1HT$dH+%(      H []A\A]A^    I|$HL$HT$A$   uHD$HtHLLIj E1H|$ ZYuH; uI|$  H  1A$  eD  I|$H
  1A$   ATI@  UHHSHH dH%(   HD$1H    Ht6H@ H   H1HT$dH+%(      H []A\    H}HL$HT$@     uHD$HtH|$HL@  ЅuH; uH}  H  1  w H}H  1  ff.      AW   IAVAUIATIULSHHHM~  H|$P tH|$h tH$      L@ALD$LAW(LD$HH  HxH     JD0    HH)A1HHMtH  H@  H0HBLjLbMtH  H@  H0HBLBHjH|$P t(Hm  H@  H0HBHD$PHBHD$XHBH|$h t&HD$`H@  H0HBHD$hHBHD$pHBH$    t,HD$xH@  H0HBH$   HBH$   HBH    f1HB    BH[]A\A]A^A_fH|$P H|$h H$    A`   ~1HH
  1A  D  @AN1I*  1H	  A  dD  fH7GG   GW$fD  AWAVAUATUSHXH$   LD$(HD$H$   HD$ dH%(   HD$H1A      GIHIM̅   DwE>  EG$E9  IGHT  Aw D)H<09  t$HHT$DD$HT$HL$@IwH|$ AHHD$AWDLD$<D)Ѕ   T$<A$LI?LHT$(   T$<Ht$@A<$I} IU D$<A$A$    AG      9ALDFH)H~HDD)HT$AGHT$D)HAG   AOAG     AAOE HT$HdH+%(   uHX[]A\A]A^A_f     IDP(IGHtKEwD  M1DH     1A   @ HA_ 1{qd@ HGHtHHHR@     AWAVAUATUHSHH  MM   ILϾ@   HT$IMHT$HHtzIHp1HM) IALU(IE Ht%LLHW@HD[]A\A]A^A_fH}  11H4  A  fD  1MtA? u;LHpAEuHLLH[1]A\A]A^A_Jf.     LH5AH}  11Ht  A  Gff.     HAVHAUIATIUSujHHtbHLHII|AU(HHHtZLHL#L}@   HfAH;1[]A\A]A^D  1I}  1H  A  1I}  1H  A  @ SHHdH%(   HD$1H1HHH$t1HT$dH+%(   uH[f.     ATUHSH  dH%(   H$  1ILHHcMH$   L     HPH1LH$  dH+%(   uHĐ  []A\;   HH                                                                                                                                                                                                                                                                                                                                                                                               Username: Password: Invalid LOGIN server step %d
 SSF requested of LOGIN plugin Please enter your password Invalid LOGIN client step %d
 LOGIN version mismatch Version mismatch in LOGIN       username too long (>1024 characters)    Out of Memory in ../../plugins/login.c near line %d     clientinlen is > 1024 characters in LOGIN plugin        Parameter Error in ../../plugins/login.c near line %d   Server didn't issue challenge for USERNAME      Please enter your authentication name   Server didn't issue challenge for PASSWORD      Parameter Error in ../../common/plugin_common.c near line %d    Out of Memory in ../../common/plugin_common.c near line %d      Unexpectedly missing a prompt result in _plug_get_simple        Unexpectedly missing a prompt result in _plug_get_password      Unexpectedly missing a prompt result in _plug_challenge_prompt  Unexpectedly missing a prompt result in _plug_get_realm make_prompts() called with no actual prompts    encoded packet size too big (%d > %d) Authorization Name Authentication Name Password %s %s ;        D  d\          $      4$  D8  TL      ,  4t           t\      ,  @  4  T    tH  l         zR x  $         FJw ?;*3$"       D   H           (   \    1    FDG TDA   4      Q    FDG O
DAKTDA H      <   BBB B(A0A8D`
8A0A(B BBBF         BBB B(A0A8G`
8A0A(B BBBDhEpIxEBBBAI`ehNpJxBBBBBI`  (     c    AIG k
AAA  (     Tc    AIG k
AAA       G    db      G    db    $            8         L   L      BBB B(A0A8G
#
8D0A(B BBBG   D     p    KEB D(A0`
(A BBBB   D        KBE A(A0
(A BBBG  D   ,  P    KBB A(D0D
(A BBBAG  ,   t  I    GAA tABH   (     A    FAG mAAC       ;       8     (    BHD C(GPP
(A ABBB 8      `   BHD D(DP
(A ABBA L   \  
   BEE G(C0GPK
0A(A BBBHkXK`MXAP 0         BIG G@K
 AABH H     ;   BJB E(D0D8GP
8A0A(B BBBC   ,         L   @  L   BBB B(A0A8D
8A0A(B BBBJ               `     E   BBB B(A0D8DP
8D0A(B BBBCL
8J0C(B BBBO<         EHE I(A0_
(A BBBF       H  $V    AI E
AA <   l  `    BAD Ib^QZ
 AABA                                                                                                                                                                                                                                                                                                                                 p      0                                              
       x.             M                           M                    o    `             (                    
                                  O             @                           8             
             h      	                            o           o    p
      o           o    
      o                                                                                           M                      6      F      V      f      v                                                                  &      6      F      V      f      v                                                         P                              0          0                                                                            0          0                   @                                                                   /usr/lib/debug/.dwz/x86_64-linux-gnu/libsasl2-modules.debug }&X%i
0Giue77ddf890e916e6918ea5a8b5552e2f6a351e4.debug     .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.got .text .fini .rodata .eh_frame_hdr .eh_frame .init_array .fini_array .dynamic .data .bss .gnu_debugaltlink .gnu_debuglink                                                                                  8      8      $                                 o       `      `                                   (                                                     0             (      (                                   8   o       
      
      V                            E   o       p
      p
      `                            T             
      
      h                           ^      B       8      8      @                          h                                                         c                                                       n                                                      w                                                      }             x.      x.      	                                    2        0       0                                               4      4                                                 5       5                                                M      =                                                M      =                                                M      =                                 r             O      ?                                                 P       @                                                  P      @                                                          @      P                                                    8A      4                                                    lA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ELF          >            @       `          @ 8 	 @                                                                                  qI      qI                    p       p       p                                                                             0      0      0                                 8      8      8      $       $              Ptd   {      {      {      l      l             Qtd                                                  Rtd                                                    GNU 5<ܠQ1$i^B       -         Ae, (-   .       1   2       4   5   6   7   ;           =       @   B   _\`9O*=!	Eqq<[A UH|dz	A8
&2O.OubjB?\                                             U                      ]                                                               i                                                                                       s                                           2                                                                                                              ,                       5                     F   "                                                                                                                                                                       C                                                                                      b                                                                                      J                     9                     [                                                                  W                     
                                          x                      y                         PV             (    [             
    \      A       @    h                 `V                @\      I       f    U      G       ,    `             }    g                  ]                 \      ;           @V             [    @f                 a      ;           ^      `          _      
      |    U      G       <    c                  h      V           Z            m    `f      E            Y             N    c      L       __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize close writev __errno_location recv memcpy strlen __ctype_toupper_loc _plug_buf_alloc MD4 strcspn strncpy getaddrinfo _plug_get_error_message socket connect getnameinfo freeaddrinfo gai_strerror __stack_chk_fail _plug_strdup __ctype_b_loc strchr DES_set_odd_parity DES_set_key DES_ecb_encrypt HMAC_CTX_new stpcpy strcpy EVP_md5 HMAC HMAC_CTX_reset HMAC_Init_ex HMAC_Update HMAC_Final HMAC_CTX_free memset _plug_get_password _plug_get_simple _plug_free_secret _plug_make_prompts getpid memcmp _plug_snprintf_os_info __snprintf_chk ntlm_server_plug_init ntlm_client_plug_init sasl_client_plug_init sasl_server_plug_init _plug_ipfromstring __memcpy_chk _plug_iovec_to_buf _plug_free_string _plug_find_prompt _plug_challenge_prompt _plug_get_realm _plug_decode_init _plug_decode _plug_decode_free _plug_parseuser _plug_make_fulluser strcat uname libcrypto.so.3 libc.so.6 libntlm.so.2 OPENSSL_3.0.0 GLIBC_2.14 GLIBC_2.4 GLIBC_2.3 GLIBC_2.3.4 GLIBC_2.2.5                                                                                         +p                            ii
        ii
        ti	        ui	                        $      (             #                                         v      H             p3      P             `6      X             0$                   v                   P.                   @                   p$                                   
                                                   H                    P         ;           X                    `                    h                    p         7           x                                                                     	                    
                    =                                        6                                                   Ȟ                    О                    ؞                                                                     .                                                                                                                          /           (                    0                    8                    @                    H                    P                     X         !           `         :           h         "           p         #           x         $                    ?                    %                    &                    '                    B                    (                    )                    *                    +           ȟ         ,           П         0           ؟         3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HH  HtH         5~  %~  @ %~  h    %
~  h   %~  h   %}  h   %}  h   %}  h   %}  h   %}  h   p%}  h   `%}  h	   P%}  h
   @%}  h   0%}  h    %}  h
   %}  h    %}  h   %}  h   %}  h   %}  h   %z}  h   %r}  h   %j}  h   %b}  h   %Z}  h   p%R}  h   `%J}  h   P%B}  h   @%:}  h   0%2}  h    %*}  h   %"}  h    %}  h   %}  h    %
}  h!   %}  h"   %|  h#   %|  h$   %|  h%   %|  h&   %|  h'   p%|  h(   `%|  h)   P%|  h*   @%|  h+   0%|  h,    %|  h-   %|  h.    %|  h/   %|  h0   %|  h1   %|  h2   %|  f        H=q}  Hj}  H9tH^|  Ht	        H=A}  H5:}  H)HH?HHHtH%|  HtfD      =|   u+UH=|   HtH={  Yd|  ]     w    Ht+UHSHHHHtV@HE@HH[]@ ff.     @ HtKUHSHHHHtV@{uHE@HH[]@ HE@HH[]@ ff.     @ AUIATE1USH@ I} u!IuHD[]A\A]f.     z  L9Nu, txtHA[D]A\A]    Aą~L1#f.     H@    )H9oHH9}HcHH)HH9BMD  Rz  
~Ez        AVAUE1ATUStXAHAfD  L1HDPvA9~(Hc)HA@  tătA[D]A\A]A^ff.     fATSHHftAAAI< tsHD  HHGG H9uC$D	fE111ɈSKSACAcACACE!H[A\D  LL$3DDLL$Eff.     @ SMBNONONoN
ONONO	NO
NONONO
HNHONfONONONONON ON!ON"OV#Wff.     fGFGFG	FG
fFGfFHGHFGfFGfFGfFGfF GfF"    AUIATUSHHuHtAHHt4Mt/LMd5 D  HH CL9t	H+@uHL[]A\A]f.     AWILAVIAUATMUHLSHHL 0t<IHAG  11A  AE,$HH[]A\A]A^A_f.     H3I>AŅt*N1fD  TDG GHHH9uH3I>HHff.     AUIATU   SHH5L  HoH{LH9IHFHFHH M   1D  TATCTATCHH9rMA   Ht-   LEHDIt9K$HT3 H)
oO  H3f     fHH9u   L)HtF3 H[]A\A]        f     AWfAVAUIATUH-L  SHHHH  H$HL$HT$ dH%(   H$  1D$$D$4HD$    D$(   D$    D$@
=  Lt$A~  Ll$L$   MH$   [DH   MIIHD$HcK  HH HHD$H1AW1   LS@^_Mm(MJ  A}AUAuAƅxAUIuSy_DD8HAuMI}jA      HAXAY?Hunknown HE I$(     H|$Ll$EL$   H$   >H<$LD$  D:LHLl$*Ht$P   DLl$PHD$X   Ld$`HD$h"   Hl$pHD$x"   ~      LDeD$ɉL$t3=   u,H$  dH+%(     H  D[]A\A]A^A_Ht$   DD$D$H
ZI  <t!wHH
0I  <t<H
:C  HQI  HE1HC     1   D9Ac<H
C  HI  HE1HwC     1   DIN HC     HHD$11   H|$f.     HD$11A    H$   HpHxjIZYuhHD$I   HB  HH HHD$11   H|$:H   H$I1IH@H     1Hunknown H$   ff.     fAV    IAUMATUSH dH%(   HD$HFPP(H  IIFPHL$H5H  LD$HG  HxP Ht$HG  I~P1HT$  D$H\$t?mE11     H0H<D~ uDA@<3H\$;T$rL Hl$-f       IvHhI~PHT$Ã   ,   HHl$HuIvI~PHH|$IFPP@t#fA$   1AD$AD$A\$Me HT$dH+%(   uPH []A\A]A^D  MFP  Ix1H*A  1A  fMFP  Ix%IFPH|$P@g@ AWE1AVAAUATUHSHH   HL$L$   Ld$dH%(   H$   1fD  DSKsAE{AADCCE	AAD	AAD	AAD	EAAD	AH	A%   E	EL	DHH@L	HLHH	HHH	HHH	AHII	AMII	AHL$   LLH|$HL   HE9H$   dH+%(   uHĨ   []A\A]A^A_     AT   HULSHH dH%(   HD$HKGS!@#$%Ld$
LHD$   LHL$LHߺ   
E     HD$dH+%(   uH H[]A\D  AWAVAUIATUHSHL$f   IIEǍyL$HcAV(L$L$HIE H   AT$9T$P   D$P)9   I4Etdft)1f.     FHH9uIE H HtÉE 1H[]A\A]A^A_    H        DLI} L1I~8  1H=  A  룸fU   HSHHHFP(Ht"f@        @HE 1H[]LC  HY=  1IxA  ff.     fAWAVAUATUSHH   H|$HH$   Ht$L$   HT$L$   LD$ L$   LL$(dH%(   H$   1HtHIDL LLHD$LotKH}H%B  11  AH$   dH+%(     HĨ   []A\A]A^A_fD  HA     11   UHD$0HG  HD$PHt$MMHLHHD$8tDd$LHt$Me LNHtHH>t$LLDt$LI] Et+D1    ADC CHH9uDt$LI] 4HG6HLd$T   HATLL$HLMjH\$@HT$\E1LHHHt$0   H$   Ht$8HmHt$LHH@  11   A       HXZbH}H@  1  ABff.     AWMAVAUIHA  ATIUHSH   H$  L$LD$L$  HD$LF   dH%(   H$   1I    A    1A   A$t`   LEH@  1   1A   H$   dH+%(   d	  H   []A\A]A^A_f.     LmEP9Ep  A    IT$It$L    r  IL$A1HfoA  HHNTLMSSP HHA  AHAID$IA$   G@ HD$h    ML]HD$p    A|$HD$x    A  HNTLMSSP I9E   A]	AE
	AE	AE	Ã  HD$E1Hx tJHL$HT$\Ht$pLDD$ D$(  DD$ AH|$ uZ   fD  LD$HL$h   L߾@  DL$ GAD$(o  H|$p DL$ {  H|$   HD$H8Ht(HEDD$$DL$ P@HD$DD$$DL$ H     A*  E!  HELD$   1Ht$hHx   D$`O  AELE1   AU	AU	AU	H=  ÉD$$1A   AH}1AHT$xHMDD$(D$ IuPD$p^_HD$xHD$  LEHHy=  1   1A   HEH$   E1He=  H5<  HxP H$   H  1tyto~  t  HMH$=  11   H$      HE   L$   LL$LHx   HD$HHMEHPHD$hPID$HD$@PID$HD$@PujLL$HHL$8H$   H0E1D$`  H|$ tHEH|$P@\$`T$\H}Ht$p    D\$(    |$(uiA    L5  LEH;  H}j E11j 1j j j j j PHt$H$   H@bbAufD  1L5  맀xn HEIt$IHt$(H   ID$HD$0D$$   t{H;     11LD$0HULL$`H$   HL$(Ht$pHAHL   @    1@ H$   HHD$LD$xf.     H0;     11H$      HKGS!@#$%H$   HD$pHHp   HAH$      HHH$   HD$<Ht$LHߺ   D$`    Ǆ$       Ƅ$    HD$E1H@HD$HEHD$8D$ H|$D$d@   1DhHtLD$@LD$@HH|$HtLD$HHT$@HT$@LD$HHDAE@AXHAEŉMtHT$0Ht$(AH|$8LD$@LD$@D$(  Ml$A1LD$0L=HLD$0HNTLMSSP IE q;  AE  foX   X      AM@HCIEPX   AuAu1AE
 AE @  AE MtfAoLIpHp   HD$AM1E1AuAE AuAE fAMAE T$dHtHDH|$1H\$dFL$ I}IHMDmHD$HtHKD$(L$ T$(IMHt$I}$Dt$$211L$ I},IHM1D$dEu<AE4    AE8DfAE>  AE=ID$D$`    IHD$    H@     H@(    H@0    H@8    H@@    ǀ       Df.     HD$H@HD$HEHD$8b@ I{H1  11A  @   @   1@   (I}H6  11A  I}H6  11A  L]H\$8Hd7  11H{  D$`tD  AWAVAUATUSH  LD$L$  LL$dH%(   H$  1I     A    H  LFPHIIAHB8     1A   M X     HD$p    M\$PHD$x    HǄ$       HǄ$       M
  A3u
  HNTLMSSP I9b
  AG	AW
	AW	AW	Ѓ6
  HL$XHT$pME1HIwLAVD$xAXAY2  H|$pHtaID$PP@H$   H$   \$hHtID$PP@Ht3ID$PHP@&D  MD$PH
7  11   A   H$  dH+%(     HĨ  []A\A]A^A_@ HǄ$       MD$PMn	  Ad	  HNTLMSSP I9Q	  A_	AG
	AG	AG	Ã%	  AO
AGH.5  1   	AG	AG	1MA   UM|$P%  D}E;  [  IHu   A   HEDuL$   HD$HEMl$PHD$ Ǆ$   0   0   MtLL 0HD$HT$LHt$ :D$
  HD$Lm1LiHNTLMSSP IE 5  AEDD$MtLJD$1L	L$T$MHI}L$   *EuHEHt$IEHEHE    H$   HID$PP@D  fƄ$    L$   L$   )$   Ǆ$       Ƅ$   r)$   dLf$   f$   H$  H>H$   }H$   H$   H$  H$      H$  H
3  H$   D4  L$   HǄ$      HǄ$       HǄ$     HǄ$     HǄ$(     Ǆ$      /f$  TB  }   L;  $   HULHT$AŉD$0HEAHDHD$   Hu}DD9#  LEA  LLLD$(   H52  Lo$   rLD$(4  $   	  $      |$0    &  A@ $   <  fAx! A@#AuAP4AHB  ǃ@        A@CAU9}
  I@EDuHEA  L$   Ml$Pp@ HL$\HT$xME1HI|$PIwAV,H$   D$xH\$^_t5H\$xH|$HtID$PP@HID$PHP@uD  HL$`I|$PIwMH$   HAVDEAH$   D$xZYuHL$dI|$PIw$MH$   HAVDEAvD$xA[A^VH|$   |$X  Ht|$\  H$   HD$H  MD$PHL$11H/     A   L$   MtMD$PL   1H/  1A   ID$P}HD$  H5/  L$   HǄ$       I$   H$   LHǄ$       (  D$hlID$PT$dM   Ht$HxA$   D$h>ID$PI$   H$   L8  D$h		  H$      H$   H  IL$PH8HL$HL$HIR	  HxQ(H$   H{	  DHxHH$   IWH0ID$PI$   H$   h  E1DT$hH	  L$\ID$PHuL}Ht$ L   HEL$(HD$	  11Hp.     AH$  AQHLKHT$pRAWt$8At$PL$PQHT$@LH$   LD$HH0HHߺ   !t"IL$PH.  Hy11  D$hM|$PH$   L6|$h AE    IE     IE(    IE0    IE8    IE@    Aǅ       D$h    C AULD$0HHT$(IAW(HT$(LD$0HH$   Hk  IpML$   Et,AM1fD  AGAHHH9uL$   DuA   Duf@ It$1H$   LuM   M|$Py@ rf     I{H=(  11A  IIxH%  11A  )H    IL$PH(  11Hy  D$hH
'     11A   $   H@&     11A   H&     11A   뻋L$XDD$\fH$   )$   L$  L$0DD$()$   D$W
HD$ Ǆ$       Ƅ$   sHt$ Lff$   f$   H|$ )$   DD$(Ƅ$   f$   $     L$0f$   H  fD$   DAH=+  Ǆ$      fǄ$    	H$     HǄ$      		Љ$  H$  HHD$0W   H$  A   HD$(Hǹ   1jL*     jHD$|HǄ$      HD$HH$   HD$gH$  H$  H$   H$  L$   HǄ$      HǄ$     HǄ$(     H$0  HǄ$8     XZHD$H9  H$0  A      HǄ$8     H*  HH   HǄ      AGD$LH|$IcHH   HL$@'HL$@HMH   H*  LDHcD$LLHL   HD$@HT$@HAGHHHH   IHD$0HJ4   HAGHHHJ4   IHD$(HJ4   AWEGHHH$   J4   H   H1fD  fPXHH9u}f$  D=ȉD$l  }Ht$8     Dt$lH|$HUHuEAD  Hu}DYD9  HUAq  Ht$ H$   SMB  $   s  $      $     A      B D$W<c  B%1  ID$PT$dM   Ht$HxA$   D$hI}H"  11A  Hh"     11A   IH   11A  Hb      11A   H      11A   H      11A   {11{A      11~D|$LAH?      11A   0:IL$P11H&  Hy  I$   D$hH!     11A   H\      11A   I  11Hc  A  HyH%  11  D$h]XHL$H!  11Hy  D$h111H$     H$  L$  AIT$PHL$ MH$   LL$hH,E1HL$HD@   L@    LH	IL$PH%  HyH!  HL$   11   D$hwH|$ M|$P11H#     A   HuLELHt$L}H$  LD$ WH|$pH|$0WHAWVAt$P$   FPHD$8HT$@H$   LHH|$8H0H   +(IL$P11H:#     L$     IT$PLL$(MHL$H$   L1HL$ Hp   L@ `H|$   HIL$PH#  HyH:   H  H  HF  yHL$H#  11      D$hH   EH>   9LT$H#  11   A   D$h     ~HJ     H1A    ÐHI1HHw#  1A  Hf     ~H$J     H1A    ÐHI1HH'#  1A  Hf     ff.     f.     AWAVAUATUSH  L$dH%(   H$  1HD$    H   IIH  HH  ;     H$   u#  f     ;tHH=  i  AuLc;BƄ<    HLDK,>Le E}    HKD>fD  L HEt[BDbuI}   11H'"  A  AH$  dH+%(     H  D[]A\A]A^A_fD  fHT$ HL$HH$   D$$D$4D$(   D$    D$@Aą   L|$LD$P   LLD$AWIwILf|$P
LD$uD$XD$\u
|$`  tED9t$   DLHI}   11H!  A  1|D$dA   HD$X    D$T   fD$PHI}   11H   A  I}   11H   A  I}   11H   AA  _$@ H   AVIAUATIUSHtYIHtVH>Ht29r1[]A\A]A^Ð9rAV8I$HtGA] D  AV(I$HtXAm HtI~   11H  A  AE     I~   1H  A  oAE     I~   1H  A  ӸHq  AVAUIATUSHH  IH  L!M   AD$    IT$   HH1H@ HHH9uAL$LLT   AT$I<$1I$     H3HSHH]HKHH9u1[]A\A]A^fD     AU(IHt~f M&J1LLuAT$I<$1I}   11H  A  HtI}   11H2  A  bI}   HQ  1A  봸H   AVAUATUHSHHtDIHtAHIHxIU(IHHtBHMtE,$1[]A\A]A^HtH}  11H    1H}  1H    밸 HtCATUSHHt+L&Mt#HLL   H;U@H    []A\        Ht;USHHHt$HHtH0Hx   H;U@H    H[]fff.     @ Ht3HHt%HHt#    HP0H0HtH9uD  1D  AUILATAUSHH(dH%(   HD$1H    ,Ht7H@ Et	H   H1HT$dH+%(      H([]A\A]ÐI}HL$HT$A   uEtuHD$Ht1H|$HډЅuEtH; uI}l  H  1A  qI}H  1A  %D  AUIHATIUHSH(dH%(   HD$1H    @      #HtnHx  H   x(HAU(HE H   S(Hs HxHHE HD A$   1HT$dH+%(      H([]A\A]I}HL$HT$@  A   uHD$HtI}Ht$H@  ЅuH}  uI}  Hj  1A  x    I}  H  1A  NI}H  11A  AVIAUIATILUSLH dH%(   HD$1I     Ht:H@ H   H1HT$dH+%(      H []A\A]A^    I|$HL$HT$A$   uHD$HtHLLIj E1H|$ ZYuH; uI|$  H9  1A$  eD  I|$H  1A$   ATI@  UHHSHH dH%(   HD$1H    軿Ht6H@ H   H1HT$dH+%(      H []A\    H}HL$HT$@     uHD$HtH|$HL@  ЅuH; uH}  H=  1  w H}H]  1  ff.      AW   IAVAUIATIULSHHHM~  H|$P tH|$h tH$      L@ALD$LAW(LD$HH  HxH     JD0    HH)A1HHMtH  H@  H0HBLjLbMtH  H@  H0HBLBHjH|$P t(H  H@  H0HBHD$PHBHD$XHBH|$h t&HD$`H@  H0HBHD$hHBHD$pHBH$    t,HD$xH@  H0HBH$   HBH$   HBH    f1HB    BH[]A\A]A^A_fH|$P H|$h H$    A`   ~1HH  1A  D  @AN1I*  1H  A  dD  fH7GG   GW$fD  AWAVAUATUSHXH$   LD$(HD$H$   HD$ dH%(   HD$H1A      GIHIM̅   DwE>  EG$E9  IGHT  Aw D)H<09  t$HHT$~DD$HT$HL$@IwH|$ AHHD$AWDLD$<D)Ѕ   T$<A$LI?LHT$(   T$<Ht$@A<$I} IU D$<A$A$    AG      9ALDFH)H~HDD)HT$蹽AGHT$D)HAG   AOAG     AAOE HT$HdH+%(   uHX[]A\A]A^A_f     IDP(IGHtKEwD  M1DH9     1A   @ HA_ 1{q@ HGHtHHHR@     AWAVAUATUHSHH  MM   ILϾ@   HT$IMOHT$HHtzIHp1HM) IALU(IE Ht%LLH׻@HD[]A\A]A^A_fH}  11H  A  fD  1MtA? u;LH@AEuHLLH[1]A\A]A^A_f.     LHAH}  11H  A  Gff.     HAVHAUIATIUSujHHtbHL_HITI|AU(HHHtZLhL#L-@   HfAH;x1[]A\A]A^D  1I}  1HD  A  1I}  1Hb  A  @ SHHdH%(   HD$1ѸH1HHѸH$t1HT$dH+%(   uH[jf.     ATUHSH  dH%(   H$  1IL袷HHcMH$   L^     HPH1貹LH$  dH+%(   uHĐ  []A\۸   HH                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               cannot allocate P16_nt unicode buffer   Not listening for calling name  Called name present, but insufficient resources NTLM: no IP address info for %s NTLM: couldn't connect to %s/%s NTLM: error sending NetBIOS session request     NTLM: negative NetBIOS session response: %s     Out of Memory in ../../plugins/ntlm.c near line %d      Please enter your authentication name   server didn't issue valid NTLM challenge        client didn't issue valid NTLM request  NTLM: error sending NEGPROT request     NTLM: error reading NEGPROT response length     cannot allocate NTLM NEGPROT response buffer    NTLM: error reading NEGPROT response    NTLM: not enough data for NEGPROT response header       NTLM: error in NEGPROT response header: %u      NTLM: not enough data for NEGPROT response wordcount    NTLM: incorrect NEGPROT wordcount for NT LM 0.12        NTLM: error in NEGPROT response parameters      NTLM: not enough data for NEGPROT response bytecount    NTLM: incorrect bytecount for NEGPROT response data     cannot allocate NTLM challenge  client didn't issue valid NTLM response client issued incorrect/nonexistent responses   NTLM: error sending SESSIONSETUP request        NTLM: error reading SESSIONSETUP response length        cannot allocate NTLM SESSIONSETUP response buffer       NTLM: error reading SESSIONSETUP response       NTLM: not enough data for SESSIONSETUP response header  NTLM: error in SESSIONSETUP response header     NTLM: not enough data for SESSIONSETUP response wordcount       NTLM: incorrect SESSIONSETUP wordcount . Not listening on called name Called name not present Unspecified error 139 NTLM: getaddrinfo %s/%s: %s NTLM: connect %s[%s]/%s: %s ntlm_server NTLM cannot allocate NTLMv2 hash _plug_HMAC_CTX_new() cannot allocate HMAC CTX _plug_HMAC_CTX_free() Please enter your password SSF requested of NTLM plugin cannot allocate NTLM request server flags: %x server domain: %s ntlm_v2 calculating LMv2 response calculating NT response calculating LM response cannot allocate NTLM response Invalid NTLM client step %d
 client flags: %x NT LM 0.12 SMB client user: %s client domain: %s *userPassword no secret in database empty secret calculating NTv2 response incorrect NTLMv2 response incorrect NTLM response incorrect LMv1/v2 response Cyrus SASL %u.%u.%u NTLM: auth failure: %u NTLM: authenticated as guest Invalid NTLM server step %d
 NTLM version mismatch  CA                                   Parameter Error in ../../common/plugin_common.c near line %d    Out of Memory in ../../common/plugin_common.c near line %d      Unexpectedly missing a prompt result in _plug_get_simple        Unexpectedly missing a prompt result in _plug_get_password      Unexpectedly missing a prompt result in _plug_challenge_prompt  Unexpectedly missing a prompt result in _plug_get_realm make_prompts() called with no actual prompts    encoded packet size too big (%d > %d) Authorization Name Authentication Name %s %s  ;h  ,     ԧ      D(  Dt  Ī    $    <      ĲD    4  Ķ  X  T  Ժ    d  d|          T      	  T@	  T	  	  	  
  P
  D
  d
       $x    T         zR x  $      @   FJw ?;*3$"       D               (   \   ئ1    FDG TDA   4      Q    FDG \
DAFMDA H          BED C(F0X
(D ABBKq
(G DBBH8     ȧs    BBE A(A0](D BBB  (   H      BAG0}
ABF    t              ,Y       4     xf    BEA A(D0O(D ABBH         BHE B(D0G8G@u
8D0A(B BBBK  8      $    BEA F(N0
(A ABBI |   \     BFB E(A0H8P

D
O
A
L
M
U
B

8D0A(B BBBA
I
I
A
 @     x   BJE A(A0DPc
0A(A BBBFL         BEE B(A0D8J[
8A0A(B BBBA   0   p  T    BJD G@g
 DABA H        BBB E(A0D8DP
8A0A(B BBBH (     c    AIG k
AAA  \     Ȳt   BBB B(A0A8J
8A0A(B BBBGVA     |  +
   BEB L(D0D8G
8C0A(B BBBKvQLAQKKCB[GDBBBBAU     x   BBB B(A0A8G
IMB
8C0A(B BBBEKWAVBZAaBSB?MBDEH^NAnKEAEKd     G    db      G    db    ,            @         L   T     BBB B(A0A8G
#
8D0A(B BBBG   D         KEB D(A0`
(A BBBB   D     (   KBE A(A0
(A BBBG  D   4  `    KBB A(D0D
(A BBBAG  ,   |  I    GAA tABH   (     A    FAG mAAC       ;       8     8    BHD C(GPP
(A ABBB 8   (  `   BHD D(DP
(A ABBA L   d   
   BEE G(C0GPK
0A(A BBBHkXK`MXAP 0         BIG G@K
 AABH H     ;   BJB E(D0D8GP
8A0A(B BBBC   4	         L   H	  L   BBB B(A0A8D
8A0A(B BBBJ      	         `   	  E   BBB B(A0D8DP
8D0A(B BBBCL
8J0C(B BBBO<   
      EHE I(A0_
(A BBBF       P
  4V    AI E
AA <   t
  p    BAD Ib^QZ
 AABA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          $      #                                                            
       hi                                         (                    o    `             	                    
       	                           0                                                                   h      	                            o           o          o           o    
      o                                                                                           0                      6       F       V       f       v                                                               !      !      &!      6!      F!      V!      f!      v!      !      !      !      !      !      !      !      !      "      "      &"      6"      F"      V"      f"      v"      "      "      "      "      "      "      "      "      #      #      &#      6#      F#      V#                                                                    v                                   p3      `6      0$                                      v                           P.      @      p$                                                      /usr/lib/debug/.dwz/x86_64-linux-gnu/libsasl2-modules.debug }&X%i
0Giu353cdca09951319c1c24c9ce690fce5e42bb12.debug    ܀ .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.got .text .fini .rodata .eh_frame_hdr .eh_frame .init_array .fini_array .dynamic .data .bss .gnu_debugaltlink .gnu_debuglink                                                                                  8      8      $                                 o       `      `                                   (                           `                          0             	      	      	                             8   o       
      
                                  E   o                                               T                         h                           ^      B                                               h                                                           c                             @                            n             `#      `#                                   w             p#      p#      E                             }             hi      hi      	                                            p       p                                                {      {      l                                          |      |      
                                                                                                  (      (                                                0      0                                  r             0      0                                                                                                                                                                               P                                                    8      4                                                    l                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ELF          >            @       `B          @ 8 	 @                                                                               q      q                    0       0       0                               <      L      L                               =      M      M                               8      8      8      $       $              Ptd   3      3      3                           Qtd                                                  Rtd   <      L      L                                  GNU CЧ
GtRJ |O"                 d, (                                #           %       (   *   _\`9O*=X/7Eqq UH|<[Adz	A@S3O.OubjB?\                                             U                                                                                       v                      7                                                                o                      u                                                                  R                     ,                       i                     q                     F   "                   [                                          2    P                 !             z    .                  "      A       H    `                       G       ]     @"      I           &             >    -                   #                 @                 "      ;           @,                  '      ;          %      
            $      `      Y    .      V                 G           )                              '    `,      E                             )      L       __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize strncpy _plug_free_string strcmp __stack_chk_fail _plug_get_simple _plug_make_prompts _plug_buf_alloc memset memcpy _plug_free_secret _plug_get_password plain_server_plug_init plain_client_plug_init sasl_client_plug_init sasl_server_plug_init _plug_ipfromstring __ctype_b_loc getaddrinfo __memcpy_chk freeaddrinfo _plug_iovec_to_buf _plug_strdup strlen strcpy _plug_find_prompt _plug_challenge_prompt _plug_get_realm _plug_decode_init _plug_decode _plug_decode_free _plug_parseuser strchr _plug_make_fulluser strcat _plug_get_error_message strerror _plug_snprintf_os_info uname __snprintf_chk libc.so.6 libplain.so.2 GLIBC_2.3 GLIBC_2.14 GLIBC_2.4 GLIBC_2.2.5 GLIBC_2.3.4                                                            ii
                ii
        ui	        ti	         L                    M             P       P              P       P             1      HP                    PP             `      XP                   P             1      P             `      P                   O                    O                    O                    O                    O                    O                     O                    (O                    0O                     8O         *           @O                    HO                    PO                    XO                    `O                    hO                    pO         	           xO                    O         $           O         
           O         &           O                    O                    O         
           O                    O         "           O                    O                    O                    O                                                                                                                                                                                                                                                                                                                                                                    HH?  HtH         5>  %>  @ %>  h    %>  h   %>  h   %>  h   %>  h   %>  h   %>  h   %>  h   p%>  h   `%>  h	   P%>  h
   @%>  h   0%z>  h    %r>  h
   %j>  h    %b>  h   %Z>  h   %R>  h   %J>  h   %B>  h   %:>  h   %2>  h   %*>  h   %">  h   p%>  h   `%>  h   P%">  f        H=?  H>  H9tH=  Ht	        H=>  H5>  H)HH?HHHtH=  HtfD      =>   u+UH==   HtH==  Yde>  ]     w    Ht+UHSHHH?HtV@HE@HH[]D  ff.     @ AWAVIAUATUSH(dH%(   HD$1Hl$`I     A      HӉHf.     H9  9 u9  D`LI9  LD  H9q  9 u9d  DxE1MILDA9rfwH9  9 uAE)INP9  A}Q(HD$HHC  DLHT$`HD$HT$ Ht	; D  L   A   IFPLI1HxA   Aąt  IFPHuEUHL$Hx   I~PHt$AE  EuvIFPI   0  H  H0LhHt,f>*tI} tIFPI   h  Iu IHuIFP1I   HHxA      E    HE     HE(    HE0    HE8    HE@    ǅ       HD$dH+%(     H(D[]A\A]A^A_ LHE1AEDfD  )A8@ INPH  11Hy  A|D  I~PHt$BdHyH  11  ADD  INPH5  11Hy  D  INPH  11Hy  MFP   11HY  AIxA  AC AWAVAUATUSHHLVH<$L$   L$   dH%(   HD$81I    HD$     A    FPHD$(    HD$0    D$    9Fp  I~ HMMA  1E1I~ y  HL$ M1Ҿ@  LAé  H|$0 :  1M   I<$Ht!HUD$D\$R@I$    D$D\$LUAt!t3  E1H  17D      H  HEL&  HG  1ɃLEAHEj E11Lj Lj j j j j PH@Å  D$  HD$8dH+%(     HH[]A\A]A^A_     A    LUHt$ H   MIzH  >      1ЉÅxHEHt$(M1ҹ   Hx   ÅQHT$    Ht: tAFHT$0ANL$$H}
IT$LAAÅAI<$1PHD$ I$Ht	8   HAVIvH>AVHHD$0H|HHp!H$H IE A   IF     IF(    IF0    IF8    IF@    Aǆ       ^    H}Ht$0PD  H|$0 Iz}  HT  11A      f     LU1D     fD  Ht$(   1Љi HL$(   @  LAÉAI~ LULUf.     HT$Ht$0LLD\$uMD\$@ DAVIvHHAFH?IzH  11A  ff.     U   HSHHHFP(Htf HE 1H[]LC  HO  1IxA  ff.     Mt
I     1HLFP1F   H  1IxA  H@ ~H4     H1A    ÐHI1HH  1A  Hf     ~H$4     H1A    ÐHI1HH  1A  Hf     ff.     f.     AWAVAUATUSH  L$dH%(   H$  1HD$    H   IIH  HH  ;     H$   u#  f     ;tHH=  i  AuLc;BƄ<    HLDK,>Le E}   HKD>fD  L HEt[BDbuI}   11H_  A  AH$  dH+%(     H  D[]A\A]A^A_fD  fHT$ HL$HH$   D$$D$4D$(   D$    D$@Aą   L|$LD$P   LLD$AWIwI)Lf|$P
LD$uD$XD$\u
|$`  tED9t$   DLHI}   11HV  A  1|D$dA   HD$X    D$T   fD$PHI}   11H  A  I}   11H  A  I}   11H  AA  _@ H   AVIAUATIUSHtYIHtVH>Ht29r1[]A\A]A^Ð9rAV8I$HtGA] D  AV(I$HtXAm HtI~   11H  A  AE     I~   1H2  A  oAE     I~   1H  A  ӸHq  AVAUIATUSHH  IH  L!M   AD$    IT$   HH1H@ HHH9uAL$LL   AT$I<$1LI$     H3HSHHHKHH9u1[]A\A]A^fD     AU(IHt~f M&J1LLsuAT$I<$1I}   11H  A  HtI}   11Hj  A  bI}   H  1A  봸H   AVAUATUHSHHtDIHtAHIHxIU(IHHtBHMtE,$1[]A\A]A^HtH}  11H    1H}  1H    밸 HtCATUSHHt+L&Mt#HL,L   H;U@H    []A\        Ht;USHHHt$HHtH0Hx   H;U@H    H[]fff.     @ Ht3HHt%HHt#    HP0H0HtH9uD  1D  AUILATAUSHH(dH%(   HD$1H    Ht7H@ Et	H   H1HT$dH+%(      H([]A\A]ÐI}HL$HT$A   uEtuHD$Ht1H|$HډЅuEtH; uI}l  H
  1A  qI}H=  1A  D  AUIHATIUHSH(dH%(   HD$1H    @      HtnHx  H   x(HAU(HE H   S(Hs HxHHE HD A$   1HT$dH+%(      H([]A\A]I}HL$HT$@  A   uHD$HtI}Ht$H@  ЅuH}  uI}  H  1A  x    I}  H  1A  NI}H
  11A   AVIAUIATILUSLH dH%(   HD$1I     Ht:H@ H   H1HT$dH+%(      H []A\A]A^    I|$HL$HT$A$   uHD$HtHLLIj E1H|$ ZYuH; uI|$  Hq  1A$  eD  I|$HL  1A$   ATI@  UHHSHH dH%(   HD$1H    Ht6H@ H   H1HT$dH+%(      H []A\    H}HL$HT$@     uHD$HtH|$HL@  ЅuH; uH}  Hu
  1  w H}H  1  ff.      AW   IAVAUIATIULSHHHM~  H|$P tH|$h tH$      L@ALD$LAW(LD$HH  HxH     JD0    HH)A1HHMtHO  H@  H0HBLjLbMtH?  H@  H0HBLBHjH|$P t(H-  H@  H0HBHD$PHBHD$XHBH|$h t&HD$`H@  H0HBHD$hHBHD$pHBH$    t,HD$xH@  H0HBH$   HBH$   HBH    f1HB    BH[]A\A]A^A_fH|$P H|$h H$    A`   ~1HH	  1A  D  @AN1I*  1HN  A  dD  fH7GG   GW$fD  AWAVAUATUSHXH$   LD$(HD$H$   HD$ dH%(   HD$H1A      GIHIM̅   DwE>  EG$E9  IGHT  Aw D)H<09  t$HHT$DD$HT$HL$@IwH|$ AHHD$AWDLD$<D)Ѕ   T$<A$LI?LHT$(   T$<Ht$@A<$I} HIU D$<A$A$    AG      9ALDFH)H~HDD)HT$AGHT$D)HAG   AOAG     AAOE HT$HdH+%(   uHX[]A\A]A^A_f     IDP(IGHtKEwD  M1DHq     1A   @ H>A_ 1{qd@ HGHtHHHR@     AWAVAUATUHSHH  MM   ILϾ@   HT$IMHT$HHtzIHp1HM) IALU(IE Ht%LLHg@HD[]A\A]A^A_fH}  11H  A  fD  1MtA? u;LHpAEuHLLH[1]A\A]A^A_Jf.     LH5AH}  11H4  A  Gff.     HAVHAUIATIUSujHHtbHLHII|AU(HHHtZLXL#L}@   HfAH;H1[]A\A]A^D  1I}  1H|  A  1I}  1H  A  @ SHHdH%(   HD$1H1HHH$t1HT$dH+%(   uH[f.     ATUHSH  dH%(   H$  1ILHHcMH$   L     HPH1LH$  dH+%(   uHĐ  []A\;   HH                                                                                                                                               Can only find author (no password)      Can only find author/en (no password)   Got more data than we were expecting in the PLAIN plugin
       Out of Memory in ../../plugins/plain.c near line %d     Please enter your authentication name   Please enter your authorization name    Parameter Error in ../../plugins/plain.c near line %d Password verification failed Please enter your password SSF requested of PLAIN plugin PLAIN version mismatch PLAIN        Parameter Error in ../../common/plugin_common.c near line %d    Out of Memory in ../../common/plugin_common.c near line %d      Unexpectedly missing a prompt result in _plug_get_simple        Unexpectedly missing a prompt result in _plug_get_password      Unexpectedly missing a prompt result in _plug_challenge_prompt  Unexpectedly missing a prompt result in _plug_get_realm make_prompts() called with no actual prompts    encoded packet size too big (%d > %d) Authorization Name Authentication Name Password %s %s ;      T  <  T      4@  l    $  t      T,  Dt    t  4  `  Tt  T    <  p    $  t   4               zR x  $      8   FJw ?;*3$"       D              (   \   x1    FDG SDA   H      }   BBE B(A0A8D`N
8D0A(B BBBDp         BBB B(A0A8DNJEBBBBAIn
8C0A(B BBBI   (   H  U    AIG ]
AAA     t   <    Sh      HG    db      G    db                         L        BBB B(A0A8G
#
8D0A(B BBBG   D   4       KEB D(A0`
(A BBBB   D   |     KBE A(A0
(A BBBG  D          KBB A(D0D
(A BBBAG  ,     hI    GAA tABH   (   <  A    FAG mAAC     h  ;       8   |      BHD C(GPP
(A ABBB 8     `   BHD D(DP
(A ABBA L     
   BEE G(C0GPK
0A(A BBBHkXK`MXAP 0   D      BIG G@K
 AABH H   x  L;   BJB E(D0D8GP
8A0A(B BBBC     @       L     LL   BBB B(A0A8D
8A0A(B BBBJ      (  L       `   <  XE   BBB B(A0D8DP
8D0A(B BBBCL
8J0C(B BBBO<     D    EHE I(A0_
(A BBBF         V    AI E
AA <         BAD Ib^QZ
 AABA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       P                                              
       h/             L                            M                    o    `             @                    
                                  N             p                           @             
             P      	                            o           o    
      o           o    6
      o    
                                                                                       M                      6      F      V      f      v                                                                  &      6      F      V      f      v                                                                     P                              1          0   "                              `                                            1          0   "               `                                                                    /usr/lib/debug/.dwz/x86_64-linux-gnu/libsasl2-modules.debug }&X%i
0Giu43d0a7130a47e4d6ed7452074a207c4fc522b2.debug    !^ .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.got .text .fini .rodata .eh_frame_hdr .eh_frame .init_array .fini_array .dynamic .data .bss .gnu_debugaltlink .gnu_debuglink                                                                                  8      8      $                                 o       `      `                                   (                                                      0             @      @                                   8   o       6
      6
      X                            E   o       
      
      `                            T             
      
      P                           ^      B       @      @      p                          h                                                         c                                                       n                                                      w                                                      }             h/      h/      	                                    2        0       0                                               3      3                                                 4      4      D                                          L      <                                                 M       =                                                M      =                                 r             N      >                                                P       @                                                  P      @                                                          @      P                                                    8A      4                                                    lA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ELF          >            @                 @ 8 	 @                                 x      x                                           1_      1_                                        4      4                   x      x      x                                                                            8      8      8      $       $              Ptd                     D      D             Qtd                                                  Rtd   x      x      x                                  GNU \lZ!j"!U       !          d. (!   "       %   &   '   (   )   *   +   /           1       4   6   _\`9O*=}뫡Eqq<[A UH|dz	A2Op.OubjB?\                        x                                                                 !                     L                                           .                                           h                                            X                                           ,                       >                     F   "                                        }                     '                                                                 6                     a                     =                                           y                                           u                                                                                                                                     l             T    Pq             g     Pr      A       
    ~             +     l            U      r      I           k      G           Pv                  p}                 r                 r      ;            l                  |                 Pw      ;          s      `          @u      
          y                 @k      e           @~      V       e    o                  |      E      D    n                 y      L       __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize _plug_free_string _plug_free_secret EVP_MD_get_size memcpy HMAC __stack_chk_fail strlen malloc strncpy EVP_Digest EVP_get_digestbyname _plug_parseuser _plug_make_fulluser __errno_location strtoul __sprintf_chk strchr strncmp strcmp memcmp _plug_buf_alloc _plug_strdup strcpy __memcpy_chk strcspn strcat memchr _plug_make_prompts __snprintf_chk _plug_get_simple _plug_get_password scram_server_plug_init scram_client_plug_init sasl_client_plug_init sasl_server_plug_init _plug_ipfromstring __ctype_b_loc getaddrinfo freeaddrinfo _plug_iovec_to_buf memset _plug_find_prompt _plug_challenge_prompt _plug_get_realm _plug_decode_init _plug_decode _plug_decode_free _plug_get_error_message strerror _plug_snprintf_os_info uname libcrypto.so.3 libc.so.6 libscram.so.2 OPENSSL_3.0.0 GLIBC_2.14 GLIBC_2.4 GLIBC_2.3 GLIBC_2.3.4 GLIBC_2.2.5                                                                 '          +p   N        6            \     ii
   g     ii
   q     ti	   {     ui	         x             p#                   0#                                         G      @                   H             *      P             P^      X             $                   U                   $                   *                   P^                   $                   c                    +                   *                   P^                   $      @             q      `             2      h             *      p             P^      x             $                                      9      ȱ             *      б             P^      ر             $                    G                                        +      (             =      0              $      @             +      h             U                   $                    +                   =                    $                   +      в             c                   +                    +                   =                     $                   +      8             q      P             2      X              +      `             =      h              $      x             +                                      9                    +      ȳ             =      г              $                   +                                   
                    
                                                            /                                        +                               Ȯ                    Ю                    خ                                                 	                    *                                                                                 5                                         "           (                    0         #           8                    @                    H                    P         2           X                    `         .           h                    p         )           x                             '                                                                                                    6                                        &                               ȯ                    Я                    د                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             HHՏ  HtH         5j  %l  @ %j  h    %b  h   %Z  h   %R  h   %J  h   %B  h   %:  h   %2  h   p%*  h   `%"  h	   P%  h
   @%  h   0%
  h    %  h
   %  h    %  h   %  h   %  h   %ڍ  h   %ҍ  h   %ʍ  h   %  h   %  h   %  h   p%  h   `%  h   P%  h   @%  h   0%  h    %  h   %z  h    %r  h   %j  h    %b  h!   %Z  h"   %R  h#   %J  h$   %B  h%   %:  h&   %2  h'   p%B  f        H=A  H:  H9tH  Ht	        H=  H5
  H)HH?HHHtHՌ  HtfD      =Ր   u+UH=   HtH=  Yd  ]     w    HuB@ HHt-<=uOt12t&3u'Du!HHu 1@ Ct
@ H,   ff.     fH   UHSHHH tHwH8H{ tHsH%H{  tHs HH{0 tHs0HH{@ tHs@HH{HHtU@H   HtU@Hǃ       H   HtU@Hǃ       HE@HH[]D      H   UHSHHGulH{ HtU@HC     H{0HtU@HC0    H{@ tHs@H9H{P tHsPH&H{XHtU@HE@HH[] HwHC    |ff.     @ AWIAVMAUATIULSH8H$H\$xH|$HdH%(   HD$(1D$$    HI~LcHD$P(HLHHg  Hl$LBD5 HD$P(D|$HEFHDL|$,IAWHL$(McHt$LIHLH[Y^|$pvcHA   LIHHMILAWT$LHt$ XZHt1    AT 0T HH9uAD9t$psLH\$H|$S@HS@HD$(dH+%(   uH8[]A\A]A^A_     AUIATIUSHH   H1 AHt<,t<=uAHu   HHcH|VIE I$H   tI5sf  
nf  fD  HSHt!,tA=uSfHH@Du  1H[]A\A]D  I] I$    ff0H@C롸ff.     AWIAVMAUIATIHUSHH   H$  LD$HD$H$   HD$(H$(  HD$dH%(   H$   1D$4    HD$8    HcHD$Ht$ H     M[  HI}AT$(HD$8HU  DIUHxLHL|$@HL$ 1AWMHHǋ$  HLPLD$ HL$0A
   H߉L$   ^H
W  LLl$<MAU\_AXH   HT$E11IHcL(ttHH
V  LAULL$8A
   HZYHth1H|$8 t
Ht$8LH$   dH+%(   uiH   []A\A]A^A_f.     HJV  H\$Hf.     HV      H-V  HvpATUHSH   S(HtLIHH{      LE1H!         LuS@E  H[]A\D  S@1f     AUIATI   UHSHHFP(HtNHxHH     HHǀ       H1H)   HLHC1H] H[]A\A]ME1  1H:X  IxA       AUIATI   ULSHHFPP(HtNHxHH     HHǀ       H1H)   HLHC1H] H[]A\A]MEP1  1HW  IxA       AWAVIAUL-U  ATUHSHT  Hh  HL$DD$dH%(   H$X  1L$   HD$X    HD$`    HD$h    HD$p    HD$x    HǄ$       HHHD$Aă t%
  HS  0t@HS      HELEPIp  H  111Aǅ  HEPHS  E1H$   H5S  HxP H$   Htf<1t<yt<o  <tuOHD$`HMH}PMLEHT$hHHD$ HT$(Aǅt}LEPHHvS  11IxA  H$X  dH+%(     Hh  D[]A\A]A^A_@ HS  HR      HE     H}PHL$hLt$XHT$`LAǅ  LUP$    H|$   IzE1HHǄ$       H$   HR  AR H$   HH|$0ttLH|$0
   H$        ILH$   D$0H$   H9t: uA  HMPH0U  11      HǄ$       D$0   HEPL$      L|$8LHx   L$H}PMH$   A   PH$H  HD$HPH$   HD$(PD$HPHT$(Ht$0H Aǅ  HEPL$   E1H|$8   L      J  IcƄ$    H|$DHHIHILLL$H9H$  D$8E1HT$HBLHEPL$   L$LL$  D$8E1H|$@DHNH$  HD$HHEPBƄ   LL$   LL$  BƄ   HH   HEPP(HD$pH  HHxIؾ   t$H
P  H1t$XAWDL$PL$   H I|$oLUPI$ HD$p    1A  HD$xHH]  HEPH$   (  Aǅ   HEPHT$pHX  HtD:HDH|$xLAǅ   HEPHT$XHt$xHxp  H|$x AtHEPH|$xH  LUPE   HHO  11   A   H|$X tH}PLH|$` tH}PHt$ H|$h tH}PHt$(H|$p H}PHt$p@ znv"H|$x t>HEPH|$xH  LUPIzHHN  11A  T    ALUPHvifD  H$   HLEPH]  11IxA  LEPIxHHQ  11AA       LEP  11HP  IxA  ALEP  11HrP  IxA  LEP  11HQP  IxA  LEP  H4P  1IxA  `AWAAVIAUL-0M  ATIUSH  HH$  H$LD$LL$ HD$dH%(   H$  1D$T    D$\    Ń t(   L-L  0t@LL      IDIMD$PE[  A  H$x=  AAP(HHe  H4$HLB; HI9   MD$PLHM  Ix11A  ID$PHP@@ H$  dH+%(   /  Hĸ  []A\A]A^A_D  L- L  /LK      IDID  ;ctMD$PLHTO  Ixd {=uL{,   LH    LHD$0HxHD$(ID$PP(Ht$(LD$TLHD$HID$P   L\$08  D$TI   L\$(M   IH9e  H|$LHT$8LD$0.LD$0HT$8L\$(7  A     A{rY  A{=N  M{,   LH    Iv@LHD$(V  HT$(Lzz Lu'  ,   VH  x Hx  ?puڀ=uHGI,   HHD$(MD$PH   IxLH'P     f.     MD$PL11HM  IxA  ID$PHP@H|$ ID$PH|$P@@ ML$PL11HM  IyA  MD$PLHIM  Ix1     MD$PLH1J  Ix11A  ID$PHP@wfEA)DL$T?  M$   M   M  I?LDL$@HT$8L\$0LD$(H|$H#LD$(L\$0HT$8DL$@  MGDL9=  M\$P1L1HN  I{A  ID$PHP@f     IxLH*I  11A  AfMD$PLHQN  Ix     IxLHJ  11A  MD$PLHI  IxMD$P  11HJ  IxA  MD$PLHiL  Ix{MD$PLHM  IxcM\$PM1LD$HLHL  1I{A  ID$PHP@HL$IwL\$(H<HL\$(MD$PLHL  IxML$P1L1HK  IyA  ID$PHP@RH|$(HcLD$@HD$0LD$@HHHcHHHHH:H9D$0HHH9HD$8tIxLH
M  SLI~0H)HAIN8IHAP8Hv  IF0H4$LIF8HIF8IV0L$   Iv\LIF8 IN0I~ASMcF8HD$dHD$PLL$P@A_ZHLL$@r  L|$(LL$@LMT$PMLH$`  LD$XHT$(A   HT$(LL$@   D$XHcH9   MF1H|$`H.  A2IH@H9D$0uHt$0E11LT$(L$   LyLT$(1u       HPL9  HAL\A8tIL$PHOF  11Hy  ID$PHP@OMD$Py  HG  1IxA  ID$PHP@MD$PLHNK  IxhMD$PLHnK  IxPMD$PIMHE  1IxA  ID$PHP@E11H$   1ou/MD$P1IM1H_E  IxA  ID$PHP@PL$   IN0I~APt$McF8MI   !AYAZHWD$8I|$PIV(Iv H  IF E1L vIF @=D$8HIF HPID$P   Ņ   IF HL$8D HD$I~ H8	HL$ A   t`tMt=HD$11HHP(HP0HP8HP@       H@     ID$PP@gHD$1pxHD$@x   HL$I   Ax   HA`IL$P1HD  1Hy  ID$PHP@MD$P1  1HE  IxA  ID$PHP@AWAVAUATUSH  HT$HC  H$P  fHndH%(   H$  HC  I     A    fHnfl)D$H  IHAHMMH

B   t%   H
A  0t@H
A      HEA     EE A   A  E  LKPHMC  11   A   AH$  dH+%(   	  H  D[]A\A]A^A_D  H
xA  pH
WA      HEX     foT$I}HǄ$       )$    T    HD$0   L@  0t@o  HD$@   L@  LCPE  A	  L\$(AAP(L\$(HHD$ `  HT$Ht$ L\$0EHH~HHHJDH)JDHHH)DIHB HLT$(LT$(L\$0I9_  HD$  <p  <yG  <nO  LCPLHG  Ix11A  HCPH|$ P@8  HD$   L?  M  HD$   L?  f     AE    A   Efo\$I}HǄ$       )$              HD$   LCPLB?  i@ AE    H$  dH+%(   /  HT$MMDH$P  HLH  []A\A]A^A_    LCPLH?  Ix11A  HCPLP@A
fD  0tS@  HD$@   LCPL]>  HE1HD$fHD$   LCPLk>      HD$0   LCPL!>  dIxLHs@  11A  `f     L|$ A=x  LCPLH
E  Ixf     HD$ Lx   A   A?,   AG<a  <,   Ht$ LAG IH)HxI   HCPHL\$0LT$(P(LT$(L\$0HI   HE  I   Ht$ L\$0LT$(HPlLT$(L\$0I   I   D,I   I    A=  LCPLH=  Ix LCPLH/>  IxHD$ Lx1HD$    L<   HD$    LCPL<      HD$ ,   L\$0LT$(HxHI   PLT$(L\$0HIj    I   I   1H{PL\$0LT$(A,LT$(   L\$0:@ A=I,   L\$0LLT$(LT$(L\$0H  Ht$   1IUHD$0H{PH)LL\$(HLT$8I   XI}L\$(  LD$0I   LT$8Mx     LCPH=B  11IxA  A<m  <n   LCPLHWC  Ix	LCP  Ix1H=  1A  HCPH|$ P@A?LCPLIǅ       HB  IxIxLHX;  11A  I,   L\$0LLT$(uLT$(L\$0HItz  Lx   LCPLHB  Ix<LCP8  H	=  1IxA  <LCPLH)B  IxLCPLH=  IxLCPLHKB  IxLCPLHA  IxH{P1IULL\$8LD$0LT$(jLD$0L\$8AxruAx=LT$(uMx,   L\$0LLT$(bLT$(L\$0Ht  LL\$8LT$(Hx!HD$0HCPP(LT$(L\$8HIE@H?  LL\$8LT$(bH{PHt$0Iu@LT$(L\$8Hb  HCPL$   L\$8LT$(H   L(  A  IELT$(L\$8HH  8ɃHCPL\$81ILT$(IuHx   LT$(L\$8,  IuLCPH  >    L\$8Ix1ILT$(      LT$(L\$8   HKPD$H@  Hy11  HCPH|$ P@DD$ILCP  IxHL$hHt#LKPD$H2G  11IyA  DD$HCPH|$ DD$P@DD$LCP  HK:  1IxA  HCPH|$ P@r   LCPL\$8H   LH$   LT$(A8    H$    LT$(L\$8m  H$    ^  Iu1L{PLT$@L\$HImHHt$8HD$hrL|$HHD$(HAW(HI4AWA   HjHt$HHLHj  H|$ HD$8M}HE1Ht$XH$   H6  IEPHCPHxP L$   ZYLT$@MtvLT$A
   Ht$xLH1E GHT$xLT$AEXHD$pH9t: u
}  z  HKPLT$1   H!9  1   1LT$HD$pAEX   H$   LT$H(H5IuH{PHHHD$hPI   PIE\PAEXPMEHMMPH LT$AHCPLT$H   H$   h  IEP   1HHHH,HCPH}P(LT$HI   HCPLT$E1MI}HAuPL   LT$  LCPG  IxH7  11A  HCPH|$ P@AHCPDD$LP@DD$H$      H$      LLT$HL\$8Lt$XHl$8HD$@1L$   HD$(Ld$PMHD$(M<Mu  D  IA? tLt$@HLLCtHD$(LL u
PH t$u؀x Hxu	H? t:   H|$8IHtH|$8H9tII)I  LCPHH<  11IxA  L$   jHKP11H4  Hy  HCPH|$ H      P@AHKPD$H;  HyLCP1HH4  1IxA  HCPH|$ P@
LCP:  IxHD$0A/ IU(Iu H{PLT$Hl<MLT$  LCPX  IxL$   LH   LBƄ$    sHt$x
   LI1A$xAEXHD$xL9  8 z  A<$ o  MfH53  LM<IM9?  A? 5  HCPLP(LKPDMEPIEHDHLA   '  LCPHHN;  11IxA  L$   LT$I} MHVAEXH
3     PME@1-LT$ M+   JT LT$ HBHzIE8HCPP(HIE0HAXAYLT$   LHt$I   LT$RLT$IE0B,I}0IjIu HPI}0H5+3  HI}0dI} IE8I<$SH|$ AHCPAE    P@A   IA< tLcP<$t/I}HAT$@E1L$   M]HqLCPj  IxIH? t:   H|$8@IHtH|$8H9tD$L|$pDIU\)MD$8A$      LcPD$pH9D$   I|$H11H9  A$  HCPI}HP@E1MUHL$   LCPHH9  11IxA  L$   HLCPE1HD$HP@ALCPHH9  Ix11A  fI    L'HtAƋL$8I   MD)LA$   u@D$pH9D$t!LCPHHg9  IxLiLLT$HLd$PLt$XbLCPHH8  Ixaf     AWAVAUAATIUHSH.  Hx  H<$HLD$LL$ dH%(   H$h  1D$T    Aƃ t%  H-.  0t@H.      HELEE  Ai  A|$=]  A$<m   <rp  A}AP(IH  HLLC/ LII9   LEHHk.  11IxA  HD$    HEAHD$    LP@H|$   H|$HtHEP@H$h  dH+%(   l
  Hx  D[]A\A]A^A_     H8-  H-      HE     IG,   HHD$H  xs  t  x=j  H,   HHD$(H  xi  f  LEHH7  11IxA  H$L$   LDHH@HxAPAULc@HLL$X`AYAZHLL$H	  HD$0AA2   HHL$@H9rHD$(HxHEP(HH	  Ll$(HEE1HH$   DAM   AąuJL4$B+ IHH
-  H|$8   1I~0A   PI~0HD$H8HL$ HELP@HEHP@HEH|$P@ LEHH6  11IxA  fD  x=H,   HHD$Ht  H|$Ht$X
        HD$0H4$HT$XFhH9T$  :   HL$0DE  LE=   d  H|$LD$LD$H &  H$H|$    LD$0HHPHHL$HL$LD$0  HAP@H$H}1Ht$HPPH$H@PHD$H  H|$(HMHHG  HD$0Q  HHt$H4$HH@HF`HxQ(H$Ht$HHD$HAX  H$HT$LD$PH|$(H@`HD$D$HHE   C  H$D$PHQ HA`HE:ps  HI(Hp(Hȿ   1HL$HHHHHD$(HxHL$HIL  t$(HELL$VH$H   LI 1HL$E1LHT$Ѕ  IcH|$HL$(HHHD$@H HHHHHH9HHHL$(HD$8H$HxPHL$(HT$8H}HTLH$HP8Hp0.n  LE
  11H+  IxA  HEA     LEHH:3  11IxA  [fD  LEHH2  1IxA  5     LEHH2  1IxA  
IxHHJ(  11A  A(@ IxHH2  11A  D  IxH2  11A  D  IxH2  11A  D  IxHHd)  11A  sLEG	  11H)  AIxA  |IxHH.  11A  +HyH(  1  1HyHu2  1  AHEHD$    HD$    LE	  IxH0)  1A  HD$    LE1HH92  1AIxA  HEHD$    HD$    LE	  IxH   HL$HM  HQHIHp(HL$H$HT$HI(HYHD$HHL$(HyHL$(HI  HLHL$@HHHHHHH9HHHD$(H$Hp HP(HT$Ht$IH$LLL$8Hx(^HD$(HxHEP(LL$8HL$@HHD$*  t$(HELL$VH   H$LD$H1   Hy0LIPH
&  pH$Hy03H$HHD$8HAHHy@ItHEHP8H  H$LHQHHA@,HQ@HAHH|LL$$HT$8ID$@LID$HI@,I|$HIt$0LI|$@ZHt$8IT$@DID$HMHID$H ID$lIT$It$H}PAL$hML$`LRMD$XHD$PQH
LLd$pA[I}Ll$\H
{#  DMAUHt$XA
   ZYH/  H$Ht$@E11L$   LL@LLT$HmLT$HLEHKHY$  1IxA  LE
  11H%  IxA  LE1	  1H%  AIxA  1HEH|$H|$ZLEL$11	  H%  AIxA  L$1HEHt$LL$1AHt$LE/
  HJ%  1IxA  1LEHKH\#  1IxA  LE
  11H%  IxA   AWAVIAUMATMUSHHX  HH$  HT$L$  HD$dH%(   H$H  1kH!   t%   H!  0t@Hz!      HEI$    A       	  EA   AH  E   LSHEȾ   H#  11A   H$H  dH+%(     HX  []A\A]A^A_fD  H!  ^H       HEFHT$MMHLŃuN   ~    HD$    H@     H@(    H@0    H@8    H@@    ǀ       A1f.     I~DL$HD$P    HD$X    HD$h    HD$p    HD$x    DL$H
    t%   H
  0t@H
      HEȋCP9Cp
  HD$1Hx   HD$E1Hx   I~ #  M:  I} Ht#HCD\$DL$P@IE     D\$DL$m  Ac  A  HL!  E11x  H
X  QH
7      HE9     I~D$x    LcH  HD$MA t1  H  HD$A0tA@H      HDHD$LK  HD$8vK  x=A  UHl$,   LL$ IHH`LL$ HAMHL$   LD$pH)L\$HHDELDA   L\$w  D$pI9  L\$ I~IvlDL$   HA
   L$   MH
  ATLT$^_HLT$L\$ K  L\$ IN@DLL$   HI~McFHATLL$贿ZYH7  1MLL$L\$ u HI9A4A84tHKH  11Hy  AHH  HD$AdAH       HDHD$F@ H  A   1L)  LEH8)  AHEH{j E11j Lj j j j j PH@ŅH|$h tLl$hH{L聾H|$p H{Ht$pgfAu21l IyHL$11H4)  A   tHD$Hx B     !  ?  '  D$n1HC!   P(IFPHHr  H{wH  HD$XHt	8   HD$Ll$hHt$`LHx ^  HD$   HtHHHD$IF0H|$xHKHD$ HD$`H|$HHL$(HD$8˻I~PHD$0轻H|$IV8HH  HT$@HD$H虻LD$HT$0HL$HHt$ IH|$(HT$@IIAHLD$贼LD$H  9  H  H}  I~0t$IpHPL  1URDL$8   oIn0H HH{IV 1IF(H)MNPLD$81I~(H
  I~0H   H{Iv(1IV@Iv0I~@H  蕺I~0   IFHI<$H|$h ASH|$p tH{Ht$pʻ   ]H{1HL$XM@  DL$DL$A&f     H{IVIvLD\$GD\$A  MfD  I~ LCm  11H%  IxA  @ H{HL$PM   @  DL$XDL$nHSHD$XL   Ht$PHzH  8   Ll$   1MAщŅHCHt$XM1ҹ   Hx   ŅPLC1  H,  IxA  H|$h t6Ll$hLC  Ix11H  A  H|$h uH|$p tH{Ht$pAǆ      1D$yAǆ       H   H  H(D$pAǆ      LD$   1AщLCH1H#  1IxA  'LCHL$11H$  IxA  HD$HT$pHt$xHT$Hx蟽\LC11  H  Ll$hIxA  H|$h H|$p H{Ht$轸LC1  Ll$hH  IxA  H|$h VLC  IxVLD$HD$0Ht$ H|$(IIAHLD$+uH   LD$HD$sH-  HtIyHL$11H`  A  H|$h _H|$p H{Ht$p׷LCH  11IxA  KLCHL$11H"  IxA  ULC  Ix[LCHL$H{  1IxHA  eLCHL$11HQ  IxHA  =ED  HI~<HF     H   HH5H  A    A   1H    1HHk  1A  ff.     ~HdD     H1A    ÐHI1HH  1A  Hf     ff.     {f.     AWAVAUATUSH  L$dH%(   H$  1HD$    H   IIH  HH  ;     H$   u#  f     ;tHH=  i  AuLc;BƄ<    HLDK,>Le E}   HKD>fD  L HEt[BDbuI}   11H   A  AH$  dH+%(     H  D[]A\A]A^A_fD  fHT$ HL$HH$   D$$D$4D$(   D$    D$@۲Aą   L|$LD$P   LLD$AWIwILf|$P
LD$uD$XD$\u
|$`  tED9t$   DLH致I}   11H  A  1|D$dA   HD$X    D$T   fD$PHI}   11Hk  A  I}   11HK  A  I}   11H+  AA  _褲@ H   AVIAUATIUSHtYIHtVH>Ht29r1[]A\A]A^Ð9rAV8I$HtGA] D  AV(I$HtXAm HtI~   11H  A  AE     I~   1H  A  oAE     I~   1Ho  A  ӸHq  AVAUIATUSHH  IH  L!M   AD$    IT$   HH1H@ HHH9uAL$LL   AT$I<$1̯I$     H3HSHHHKHH9u1[]A\A]A^fD     AU(IHt~f M&J1LLsuAT$I<$1OI}   11H9  A  HtI}   11H  A  bI}   H  1A  봸H   AVAUATUHSHHtDIHtAHIqHxIU(IHHtBH$MtE,$1[]A\A]A^HtH}  11H'    1H}  1HF    밸 HtCATUSHHt+L&Mt#HL̮L   H;U@H    []A\        Ht;USHHHt$HHtH0Hx   H;U@H    H[]fff.     @ Ht3HHt%HHt#    HP0H0HtH9uD  1D  AUILATAUSHH(dH%(   HD$1H    LHt7H@ Et	H   H1HT$dH+%(      H([]A\A]ÐI}HL$HT$A   uEtuHD$Ht1H|$HډЅuEtH; uI}l  HD  1A  qI}H  1A  襭D  AUIHATIUHSH(dH%(   HD$1H    @      CHtnHx  H   x(HAU(HE H   S(Hs HxHEHE HD A$   1HT$dH+%(      H([]A\A]I}HL$HT$@  A   uHD$HtI}Ht$H@  ЅuH}  uI}  H
  1A  x    I}  H   1A  NI}H  11A  @AVIAUIATILUSLH dH%(   HD$1I     Ht:H@ H   H1HT$dH+%(      H []A\A]A^    I|$HL$HT$A$   uHD$HtHLLIj E1H|$ ZYuH; uI|$  H  1A$  eD  I|$H  1A$  3 ATI@  UHHSHH dH%(   HD$1H    ۩Ht6H@ H   H1HT$dH+%(      H []A\    H}HL$HT$@     uHD$HtH|$HL@  ЅuH; uH}  H  1  w H}H  1  >ff.      AW   IAVAUIATIULSHHHM~  H|$P tH|$h tH$      L@ALD$LAW(LD$HH  HxH     JD0    HH)A1HHMtH  H@  H0HBLjLbMtH  H@  H0HBLBHjH|$P t(Hl	  H@  H0HBHD$PHBHD$XHBH|$h t&HD$`H@  H0HBHD$hHBHD$pHBH$    t,HD$xH@  H0HBH$   HBH$   HBH    f1HB    BH[]A\A]A^A_fH|$P H|$h H$    A`   ~1HH%  1A  D  @AN1I*  1H  A  dD  fH7GG   GW$fD  AWAVAUATUSHXH$   LD$(HD$H$   HD$ dH%(   HD$H1A      GIHIM̅   DwE>  EG$E9  IGHT  Aw D)H<09  t$HHT$>DD$HT$HL$@IwH|$ AHHD$AWDLD$<D)Ѕ   T$<A$LI?LHT$(膧   T$<Ht$@A<$I} ȧIU D$<A$A$    AG      9ALDFH)H~HDD)HT$yAGHT$D)HAG   AOAG     AAOE HT$HdH+%(   uHX[]A\A]A^A_f     IDP(IGHtKEwD  M1DH     1A   @ H辦A_ 1{q脥@ HGHtHHHR@     AWAVAUATUHSHH  MM   ILϾ@   HT$IMHT$HHtzIHp1H豤M) IALU(IE Ht%LLHW@HD[]A\A]A^A_fH}  11H\  A  fD  1MtA? u;LH0AEuHLLH[1]A\A]A^A_
f.     LHAH}  11H  A  Gff.     HAVHAUIATIUSujHHtbHLOHIDI|AU(HHHtZLL#L@   HfAH;X1[]A\A]A^D  1I}  1H  A  1I}  1H  A  @ SHHdH%(   HD$1H1HHH$t1HT$dH+%(   uH[f.     ATUHSH  dH%(   H$  1IL袡HHcMH$   L     HPH1RLH$  dH+%(   uHĐ  []A\[   HH                                                                                                                                                                                                               HMAC call failed Digest call failed empty secret Client Key Server Key SCRAM-SHA-512 SCRAM-SHA-384 SCRAM-SHA-256 SCRAM-SHA-224 SCRAM-SHA-1 scram_secret_generate SCRAM %s: Error parsing user scram_iteration_counter %s$%u:%s$%s:%s Error putting %s secret Setpass for %s successful
 Invalid %s input NULs found in %s input Nonce expected in %s input Nonce mismatch %s input HMAC-%s call failed StoredKey mismatch Internal error *userPassword *authPassword ',' expected in %s input no secret in database $  r=%s,s=%s,i=%u Invalid %s server step %d
 No valid %s secret found The salt can't be empty c=%s,r=%s ,p=%s Please enter your password a= SSF requested of %s plugin %c%s%s,%s%s, n=%s,r=%s Invalid %s input expected ServerSignature mismatch Invalid %s client step %d
 SCRAM-SHA-* version mismatch SHA512 SHA384 SHA256 SHA224 SHA1   Out of Memory in ../../plugins/scram.c near line %d     %s: auxprop backend can't store properties      Invalid iteration-count in scram_iteration_count SASL option: not a number. Using the default instead.  Channel binding expected in %s input    At least nonce is expected in %s input  Invalid base64 encoding of the channel bindings in %s   Channel bindings prefix doesn't match the one received in the GS2 header of %s. Expected "%s"   Channel bindings data expected in %s    Server does not support channel binding type received in %s. Received: %s       Unsupported channel bindings type received in %s. Expected: %s, received: %s    Unsupported channel bindings length received in %s. Expected length: %lu, received: %d  Channel bindings mismatch in %s At least proof is expected in %s input  Client proof is expected in %s input    No extension data is allowed after the client proof in %s input Invalid client proof length in %s input Invalid base64 encoding of the client proof in %s input Invalid client proof (truncated) in %s input    %s input longer than (MAX_CLIENTIN_LEN) bytes   The initial 'p' needs to be followed by '=' in %s input Channel binding name must be terminated by a comma in %s input  The initial %s client response needs to start with 'y', 'n' or 'p'      Invalid authorization identity encoding in %s input     Unsupported mandatory extension to %s   Username (n=) expected in %s input      Nonce expected after the username in %s input   Invalid username encoding in %s input   unable to canonify user and get auxprops        unable to canonify authorization ID     Invalid iteration-count in %s input: the value is too big       Invalid iteration-count in %s input: not a number       Invalid base64 encoding of the salt in %s stored value  Invalid base64 encoding of StoredKey in %s per-user storage     Invalid StoredKey in %s per-user storage        Invalid base64 encoding of ServerKey in %s per-user storage     Invalid ServerKey in %s per-user storage        Nonce (r=) expected in %s input Salt expected after the nonce in %s input       iteration-count expected after the salt in %s input     Invalid iteration-count in %s input     iteration-count is too big, refusing to compute The nonce received from the server doesn't start from the nonce sent by the client      Invalid base64 encoding of the salt     Invalid base64 encoding of the salt in %s input Please enter your authentication name   Please enter your authorization name    %s input longer than (MAX_SERVERIN_LEN) bytes   Parameter Error in ../../plugins/scram.c near line %d   ServerSignature expected in %s input    Invalid base64 encoding of the server proof in %s input Invalid server proof (truncated) in %s input       =2=3Parameter Error in ../../common/plugin_common.c near line %d    Out of Memory in ../../common/plugin_common.c near line %d      Unexpectedly missing a prompt result in _plug_get_simple        Unexpectedly missing a prompt result in _plug_get_password      Unexpectedly missing a prompt result in _plug_challenge_prompt  Unexpectedly missing a prompt result in _plug_get_realm make_prompts() called with no actual prompts    encoded packet size too big (%d > %d) Authorization Name Authentication Name %s %s  ;@  '   4\  Ē          x    $(  X  4  ԛ  4L    d  d  T      $  4  4  |  d    d<  h  |    T  dD	  dx	  	  	  (
  4<
  
  T
           zR x  $      Ў   FJw ?;*3$"       D   8              \   s       (   p   \    JDG DA  0           JDG i
DAEX  d      |h   BEE B(D0D8DprxTfxAp]xKRxApV
8A0A(B BBBA  8   8     BED A(G0
(A ABBF p   t  X   BEE E(G0A8JWcTFBiNTAv
8C0A(B BBBK,     g    BAD P
ABF   8     4    BEI D(D0S
(A ABBA 8   T      BEI D(D0S
(A ABBA x     `   BBE I(A0D8Ny
8D0A(B BBBEhNNES/PTBV   p     
   BEE I(D0A8G%
8C0A(B BBBFOLADWB           BBB B(A0A8G
8D0A(B BBBFz
8A0A(B BBBL.KQAHEEQQ@B  t   $  h   BBB E(D0D8NI
8D0A(B BBBIBPBWYRXQA        BBE E(D0C8J
8C0A(B BBBGZKAnJKAGEBBBBAILJAX      H  e    D|
H     d  G    db    |  P            L       L     H   BBB B(A0A8G
#
8D0A(B BBBG   D         KEB D(A0`
(A BBBB   D   <  `   KBE A(A0
(A BBBG  D         KBB A(D0D
(A BBBAG  ,      I    GAA tABH   (      A    FAG mAAC     (  D;       8   <  p    BHD C(GPP
(A ABBB 8   x  4`   BHD D(DP
(A ABBA L     X
   BEE G(C0GPK
0A(A BBBHkXK`MXAP 0         BIG G@K
 AABH H   8  ;   BJB E(D0D8GP
8A0A(B BBBC            L     L   BBB B(A0A8D
8A0A(B BBBJ               `     E   BBB B(A0D8DP
8D0A(B BBBCL
8J0C(B BBBO<   `	      EHE I(A0_
(A BBBF       	  lV    AI E
AA <   	      BAD Ib^QZ
 AABA                                                                                                                                                                                                                                                                                                                                         p#      0#             '             6             @                     
       (             x                                               o    `             `                    
                                                                                                          	                            o           o    h      o           o          o    :                                                                                                             6       F       V       f       v                                                               !      !      &!      6!      F!      V!      f!      v!      !      !      !      !      !      !      !      !      "      "      &"      6"      F"      V"      f"      v"      "      "      "                                                                     G          S @                      *      P^      $                                      U          S 0                $      *      P^      $                                      c          S                  +      *      P^      $                                      q          S                 2      *      P^      $                                                S                 9      *      P^      $                                      G          S @               +      =       $              +                                      U          S 0        $       +      =       $              +                                      c          S          +       +      =       $              +                                      q          S         2       +      =       $              +                                                S         9       +      =       $              +                                      /usr/lib/debug/.dwz/x86_64-linux-gnu/libsasl2-modules.debug }&X%i
0Giu5cf0e2ef6cb5f25a216ae5d622e1215586e2a6.debug    l .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.got .text .fini .rodata .eh_frame_hdr .eh_frame .init_array .fini_array .dynamic .data .bss .gnu_debugaltlink .gnu_debuglink                                                                                  8      8      $                                 o       `      `                                   (                           @                          0             `      `                                   8   o                   p                            E   o       h      h                                  T                                                    ^      B                                             h                                                           c                                                         n             "      "                                   w             "      "      e\                             }             (      (      	                                                                                                               D                                          0      0      
                                          x      x                                                                                                                                              r                         x                                                                                                                                                                         P                                                    X      4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             uPN0gAi#CB	M[)|⿰@Ny#{<`8U1Umoʸd4 WcO>hgxlE	pdUFiВaRAd)!$u)3t)y-"Bֻɒ]AK+F[.?5#6Y<ߚOCqݹaK隣_	݆^"S]#R!lis[(bO2p&-|1(IDuLV%0;耔kUjELqgm;.UKEk-,sn=AyUlˊ:]T|9K^/U}H                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Yr6L4nٝv줵?v)DB`Rvgg}=ۑ$"q"[a=:~'v}<cY4=*g'{-ٹѫT_;sPSSyh6Y#fObmo|/
zl9;6W"e$"M˹X#9Î60vSC^8&.{Y';nE&l
*]̙V՛=L#rszZՈ|%
Wn83~+$NK4eq*O{(b삅p"14R"˴Bv>!FL gWo_rƞ_\c?{=^mʫMZ),Kʴ/p'pW8q+Hgn{<|!չ"-1,kەLYav9SUd3,FPX
dIo
K2f2՛tIwh_pq 3%ϯ.x~UxS/K5\'Ls[iX(ҳ;	z>Vj
u1O\ǖ"*\q@wK*W\A{!?4FF'OWNEK[n^9ZDH"5kxvH?@[nt|hWT+C#spe;aVʟ$Re̍٥T&7d&e"9P'PaAXa'DXT݇6gDvV -?_HdM!ze`dZbҵ!k nn0Q˚ϬW,)\e{v)ɺ>1tſ%.NWNLHyor`Myo?
#"/PgY>LA5+uE YDȷm 3o-k1JøQ">IЭlvr=w <QAn`<v^o8>G"FV.ry-U?ʮ0֌>AҔ>5:clafá$8z9eIn^2ion@^VYBqRVF١=o<"ڧeJ	He!TZKFwbmk~geam2јYFХfĬOܟ~@Q;vrv1=ȥ\+lי^&
zXX׈da+W=A@EaAN@KyƼJGE-xB,a
$;Iy_Ax&7rZLCJؐykOwTmu47J-#+hF<,]3C8w
:Q܏7wD]U;f7p* Vz>vq1/tI$&ݳYkE4{>;ʞH}\T8V:﷩~Z} <g2܁*,F!=~%͖%5ڲ'gxyút#K謹o>h
ɏ(]Rqz'NiQ2IПtZg'ȯ٤L4T/mmm={Ϊ2`StIS*e} _zSXN
EDa|"]#=b?Z?/|jMxhN$Rʡep<
zeUGI|Y4+Cwe5r],|:uq@}Z8WՉlvo
1
Yoܩx?)&^o\?4<{ua{ŗmJ˨ݼ2GUS(Cn~YRκǅ#ʓE:,w61"$9EFT^nu5 }ɀA|;Ohl)[4v`h ݞBΩJv\+}\5L}ˢ;3A&6UY&Bݠ'?~)R745 :}E:!̀n:i8(Kش7-$}kw2\OcMfr[!7¼H+#Nk]))$y|`74,`$Ȝ])8
FvF2,[Ud*,AM}ґmA;ڝbdE(7%*8duZ!/"bj3ͲDe.`#XS< !s͊y^7)vYppHԤ-Em̏U( /LAR
V _.5(PtCC΅婔	!-b<MzmI>Q%ɒjߧ2t952)v{̈f,wa^pNGI/W}q_~!ݖ0
-Cްpڷ;{O"D95c
^]%dH=coo-'|vϽg0 -eGW'wab,T;
s`ַX՝J`ٍ"r̀8<Z$FUdyїPv[1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Cyrus SASL
Source: ftp://ftp.cyrusimap.org/cyrus-sasl/
Files-Excluded: dlcompat-20010505
                doc/html
                docsrc/exts/themes
                mac
                man
                *.pyc
Comment: doc/html, man and *.pyc contain generated files.
         dlcompat and mac are not needed and contain many licenses more.
         docsrc/exts/themes contains generated files and has a Debian package replacement.

Files: *
Copyright: 1998-2003, Carnegie Mellon University
License: BSD-4-clause

Files: common/crypto-compat.c
Copyright: 2016 The OpenSSL Project Authors. All Rights Reserved.
License: OpenSSL and SSLeay

Files: docsrc/exts/sphinxlocal/*
Copyright: 2007-2016 by the Sphinx team
           2015 by Nic Bernstein <nic@onlight.com>
License: BSD-3-clause

Files: debian/*
Copyright: 2002-2004, Dima Barsky <dima@debian.org>
           2006-2009, Fabian Fagerholm <fabbe@debian.org>
           2006-2011, 2014, Roberto C. Sanchez <roberto@connexer.com>
           2015-2016, Ondřej Surý <ondrej@debian.org>
           2021-2022, Bastian Germann
Comment: For upstream patches, the licenses of the changed files apply.
License: BSD-2-clause

Files: debian/po/*.po
       debian/po/*.pot
Copyright: Debian Cyrus SASL Team
License: BSD-2-clause

Files: debian/po/ca.po
       debian/po/sv.po
       debian/po/fr.po
       debian/po/it.po
       debian/po/ta.po
       debian/po/vi.po
Copyright: 2007, 2008 Fabian Fagerholm
           2007 Odile Bénassy
           2007 Free Software Foundation, Inc.
License: BSD-2-clause

Files: debian/po/de.po
       debian/po/es.po
       debian/po/pt.po
       debian/po/pt_BR.po
Copyright: 2007 Fabian Fagerholm
           2007 Américo Monteiro
License: GPL-3+

Files: debian/rules
Copyright: 2002-2004, Dima Barsky <dima@debian.org>
           2006-2009, Fabian Fagerholm <fabbe@debian.org>
           2006-2011, 2014, Roberto C. Sanchez <roberto@connexer.com>
           2015-2019, Ondřej Surý <ondrej@debian.org>
           Based on cyrus-imapd-2.2 packages by Henrique de Moraes Holshuch.
License: GPL-3+

Files: debian/saslfinger/*
Copyright: 2004, Patrick Koetter <p@state-of-mind.de>
License: GPL-3+
Comment: The saslfinger utility was downloaded from
 http://postfix.state-of-mind.de/patrick.koetter/saslfinger/

Files: debian/gen-auth/*
Copyright: 2002-2006, John Jetmore <jj33@pobox.com>
License: GPL-3+
Comment: The gen-auth utility was downloaded from
 http://jetmore.org/john/code/gen-auth

Files: debian/tests/*
Copyright: 2022, Canonical Ltd.
License: GPL-3

Files: include/exits.h
       lib/getsubopt.c
Copyright: 1987-1993 The Regents of the University of California.  All rights reserved.
License: BSD-4-clause-UC

Files: include/md5*.h
       lib/md5.c
       saslauthd/md5.c
       saslauthd/saslauthd_md5.h
Copyright: 1991-2, RSA Data Security, Inc. Created 1991. All rights reserved.
License: RSA-MD

Files: include/makemd5.c
Copyright: (c) 1997, 1998 Kungliga Tekniska Högskolan
           (Royal Institute of Technology, Stockholm, Sweden).
           All rights reserved.
License: BSD-4-clause and BSD-4-clause-KTH

Files: lib/saslutil.c
Copyright: 1998-2016 Carnegie Mellon University.  All rights reserved.
License: BSD-4-clause and IBM-as-is

Files: plugins/gs2.c
Copyright: 2010, JANET(UK)
           1998-2016 Carnegie Mellon University.
License: BSD-3-clause-JANET and BSD-4-clause

Files: plugins/gs2_token.c
Copyright: 2011, PADL Software Pty Ltd.
           1993 by OpenVision Technologies, Inc.
License: BSD-3-clause-PADL and MIT-OpenVision

Files: plugins/gs2_token.h
Copyright: 1993 by OpenVision Technologies, Inc.
License: MIT-OpenVision

Files: plugins/ldapdb.c
Copyright: 2002-2007 Howard Chu, All rights reserved. <hyc@symas.com>
License: OpenLDAP

Files: pwcheck/Makefile.in
Copyright: 1994-2018 Free Software Foundation, Inc.
           1999 by Carnegie Mellon University
License: FSFULLR and MIT-CMU

Files: sample/server.c
Copyright: 1998-2016 Carnegie Mellon University.  All rights reserved.
           2009  by the Massachusetts Institute of Technology.
License: BSD-4-clause and MIT-Export

Files: saslauthd/auth_httpform.c
Copyright: 2005 Pyx Engineering AG
           1998 Messaging Direct Ltd.
           1998, 1999 Carnegie Mellon University
License: BSD-2-clause and MIT-CMU

Files: saslauthd/auth_httpform.h
Copyright: 2005 Pyx Engineering AG
License: BSD-2-clause

Files: saslauthd/auth_ldap.*
Copyright: 2002-2002 Igor Brezac
License: BSD-2-clause

Files: saslauthd/auth_pam.*
Copyright: 2000 Fabian Knittel.  All rights reserved.
License: BSD-2.2-clause
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain any existing copyright
 *    notice, and this entire permission notice in its entirety,
 *    including the disclaimer of warranties.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 2. Redistributions in binary form must reproduce all prior and current
 *    copyright notices, this list of conditions, and the following
 *    disclaimer in the documentation and/or other materials provided
 *    with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
 * DAMAGE.

Files: saslauthd/auth_rimap.c
Copyright: 1998 Messaging Direct Ltd.
           2013 Sebastian Pipping <sebastian@pipping.org>
           1998, 1999 Carnegie Mellon University
License: BSD-2-clause and MIT-CMU

Files: saslauthd/lak.*
Copyright: 2002-2003 Igor Brezac
License: BSD-2-clause

Files: saslauthd/auth_dce.*
Copyright: 1997-2000 Messaging Direct Ltd.
License: BSD-2-clause

Files: saslauthd/auth_getpwent.*
       saslauthd/auth_krb*
       saslauthd/auth_rimap.h
       saslauthd/auth_sasldb.*
       saslauthd/auth_shadow.*
       saslauthd/auth_sia.*
       saslauthd/globals.h
       saslauthd/mechanisms.*
Copyright: 1997-2000 Messaging Direct Ltd.
License: BSD-2-clause

Files: saslauthd/cache.*
       saslauthd/saslcache.c
Copyright: 2003 Jeremy Rumpf
License: BSD-2-clause

Files: saslauthd/ipc_doors.c
       saslauthd/ipc_unix.c
       saslauthd/saslauthd-main.*
       saslauthd/utils.*
Copyright: 1997-2000 Messaging Direct Ltd.
           2003 Jeremy Rumpf
License: BSD-2-clause

Files: sasldb/db_lmdb.c
Copyright: 2011-2012 Howard Chu, All rights reserved. <hyc@symas.com>
License: BSD-4-clause

License: FSFULLR
 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.

License: GPL-3+
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 .
 On Debian systems, the full text of the GNU General Public License
 version 3 can be found in the file `/usr/share/common-licenses/GPL-3'.

License: GPL-3
 On Debian systems, the full text of the GNU General Public License
 version 3 can be found in the file `/usr/share/common-licenses/GPL-3'.

License: MIT-Export
 * Export of this software from the United States of America may
 * require a specific license from the United States Government.
 * It is the responsibility of any person or organization contemplating
 * export to obtain such a license before exporting.
 *
 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
 * distribute this software and its documentation for any purpose and
 * without fee is hereby granted, provided that the above copyright
 * notice appear in all copies and that both that copyright notice and
 * this permission notice appear in supporting documentation, and that
 * the name of M.I.T. not be used in advertising or publicity pertaining
 * to distribution of the software without specific, written prior
 * permission.  Furthermore if you modify this software you must label
 * your software as modified software and not distribute it in such a
 * fashion that it might be confused with the original M.I.T. software.
 * M.I.T. makes no representations about the suitability of
 * this software for any purpose.  It is provided "as is" without express
 * or implied warranty.

License: MIT-CMU
 * Permission to use, copy, modify, and distribute this software and its
 * documentation for any purpose and without fee is hereby granted,
 * provided that the above copyright notice appear in all copies and that
 * both that copyright notice and this permission notice appear in
 * supporting documentation, and that the name of Carnegie Mellon
 * University not be used in advertising or publicity pertaining to
 * distribution of the software without specific, written prior
 * permission.
 *
 * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
 * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR
 * ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

License: MIT-OpenVision
 * Permission to use, copy, modify, distribute, and sell this software
 * and its documentation for any purpose is hereby granted without fee,
 * provided that the above copyright notice appears in all copies and
 * that both that copyright notice and this permission notice appear in
 * supporting documentation, and that the name of OpenVision not be used
 * in advertising or publicity pertaining to distribution of the software
 * without specific, written prior permission. OpenVision makes no
 * representations about the suitability of this software for any
 * purpose.  It is provided "as is" without express or implied warranty.
 *
 * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
 * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
 * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 * PERFORMANCE OF THIS SOFTWARE.

License: BSD-4-clause
 Copyright (c) 1998-2003 Carnegie Mellon University.  All rights reserved.
 .
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 .
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 .
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in
    the documentation and/or other materials provided with the
    distribution.
 .
 3. The name "Carnegie Mellon University" must not be used to
    endorse or promote products derived from this software without
    prior written permission. For permission or any other legal
    details, please contact
      Office of Technology Transfer
      Carnegie Mellon University
      5000 Forbes Avenue
      Pittsburgh, PA  15213-3890
      (412) 268-4387, fax: (412) 268-7395
      tech-transfer@andrew.cmu.edu
 .
 4. Redistributions of any form whatsoever must retain the following
    acknowledgment:
    "This product includes software developed by Computing Services
     at Carnegie Mellon University (http://www.cmu.edu/computing/)."
 .
 CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
 THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
 AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
 FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
 OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

License: BSD-4-clause-KTH
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *      This product includes software developed by Kungliga Tekniska
 *      Högskolan and its contributors.
 *
 * 4. Neither the name of the Institute nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.

License: BSD-4-clause-UC
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. <deleted>
 * 4. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.

License: BSD-3-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. Neither the name of the University nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: BSD-3-clause-JANET
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * 3. Neither the name of JANET(UK) nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.

License: BSD-3-clause-PADL
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * 3. Neither the name of PADL Software nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.

License: BSD-2-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 .
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: RSA-MD
 License to copy and use this software is granted provided that it
 is identified as the "RSA Data Security, Inc. MD5 Message-Digest
 Algorithm" in all material mentioning or referencing this software
 or this function.
 .
 License is also granted to make and use derivative works provided
 that such works are identified as "derived from the RSA Data
 Security, Inc. MD5 Message-Digest Algorithm" in all material
 mentioning or referencing the derived work.
 .
 RSA Data Security, Inc. makes no representations concerning either
 the merchantability of this software or the suitability of this
 software for any particular purpose. It is provided "as is"
 without express or implied warranty of any kind.
 These notices must be retained in any copies of any part of this
 documentation and/or software.

License: IBM-as-is
 This module contains code made available by IBM
 Corporation on an AS IS basis.  Any one receiving the
 module is considered to be licensed under IBM copyrights
 to use the IBM-provided source code in any way he or she
 deems fit, including copying it, compiling it, modifying
 it, and redistributing it, with or without
 modifications.  No license under any IBM patents or
 patent applications is to be implied from this copyright
 license.
 .
 A user of the module should understand that IBM cannot
 provide technical support for the module and will not be
 responsible for any consequences of use of the program.
 .
 Any notices, including this one, are not to be removed
 from the module without the prior written consent of
 IBM.

License: OpenSSL
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. All advertising materials mentioning features or use of this
 *    software must display the following acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
 *
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
 *    endorse or promote products derived from this software without
 *    prior written permission. For written permission, please contact
 *    openssl-core@openssl.org.
 *
 * 5. Products derived from this software may not be called "OpenSSL"
 *    nor may "OpenSSL" appear in their names without prior written
 *    permission of the OpenSSL Project.
 *
 * 6. Redistributions of any form whatsoever must retain the following
 *    acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
 *
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 * ====================================================================
 *
 * This product includes cryptographic software written by Eric Young
 * (eay@cryptsoft.com).  This product includes software written by Tim
 * Hudson (tjh@cryptsoft.com).

License: SSLeay
 * Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
 * All rights reserved.
 *
 * This package is an SSL implementation written
 * by Eric Young (eay@cryptsoft.com).
 * The implementation was written so as to conform with Netscapes SSL.
 *
 * This library is free for commercial and non-commercial use as long as
 * the following conditions are aheared to.  The following conditions
 * apply to all code found in this distribution, be it the RC4, RSA,
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
 * included with this distribution is covered by the same copyright terms
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
 *
 * Copyright remains Eric Young's, and as such any Copyright notices in
 * the code are not to be removed.
 * If this package is used in a product, Eric Young should be given attribution
 * as the author of the parts of the library used.
 * This can be in the form of a textual message at program startup or
 * in documentation (online or textual) provided with the package.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *    "This product includes cryptographic software written by
 *     Eric Young (eay@cryptsoft.com)"
 *    The word 'cryptographic' can be left out if the rouines from the library
 *    being used are not cryptographic related :-).
 * 4. If you include any Windows specific code (or a derivative thereof) from
 *    the apps directory (application code) you must include an acknowledgement:
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
 *
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 * The licence and distribution terms for any publically available version or
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
 * copied and put under another distribution licence
 * [including the GNU Public Licence.]

License: OpenLDAP
 The OpenLDAP Public License
 Version 2.8, 17 August 2003
 .
 Redistribution and use of this software and associated documentation
 ("Software"), with or without modification, are permitted provided
 that the following conditions are met:
 .
 1. Redistributions in source form must retain copyright statements
    and notices,
 .
 2. Redistributions in binary form must reproduce applicable copyright
    statements and notices, this list of conditions, and the following
    disclaimer in the documentation and/or other materials provided
    with the distribution, and
 .
 3. Redistributions must contain a verbatim copy of this document.
 .
 The OpenLDAP Foundation may revise this license from time to time.
 Each revision is distinguished by a version number.  You may use
 this Software under terms of this license revision or under the
 terms of any subsequent revision of the license.
 .
 THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS
 CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
 AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT
 SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S)
 OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGE.
 .
 The names of the authors and copyright holders must not be used in
 advertising or otherwise to promote the sale, use or other dealing
 in this Software without specific, written prior permission.  Title
 to copyright in this Software shall at all times remain with copyright
 holders.
 .
 OpenLDAP is a registered trademark of the OpenLDAP Foundation.
 .
 Copyright 1999-2003 The OpenLDAP Foundation, Redwood City,
 California, USA.  All Rights Reserved.  Permission to copy and
 distribute verbatim copies of this document is granted.
                                                                                                                                                                                                                                                                                                                                                                                                                              /.
/usr
/usr/lib
/usr/lib/x86_64-linux-gnu
/usr/lib/x86_64-linux-gnu/sasl2
/usr/lib/x86_64-linux-gnu/sasl2/libanonymous.so.2.0.25
/usr/lib/x86_64-linux-gnu/sasl2/libcrammd5.so.2.0.25
/usr/lib/x86_64-linux-gnu/sasl2/libdigestmd5.so.2.0.25
/usr/lib/x86_64-linux-gnu/sasl2/liblogin.so.2.0.25
/usr/lib/x86_64-linux-gnu/sasl2/libntlm.so.2.0.25
/usr/lib/x86_64-linux-gnu/sasl2/libplain.so.2.0.25
/usr/lib/x86_64-linux-gnu/sasl2/libscram.so.2.0.25
/usr/share
/usr/share/doc
/usr/share/doc/libsasl2-modules
/usr/share/doc/libsasl2-modules/NEWS.Debian.gz
/usr/share/doc/libsasl2-modules/changelog.Debian.gz
/usr/share/doc/libsasl2-modules/copyright
/usr/lib/x86_64-linux-gnu/sasl2/libanonymous.so
/usr/lib/x86_64-linux-gnu/sasl2/libanonymous.so.2
/usr/lib/x86_64-linux-gnu/sasl2/libcrammd5.so
/usr/lib/x86_64-linux-gnu/sasl2/libcrammd5.so.2
/usr/lib/x86_64-linux-gnu/sasl2/libdigestmd5.so
/usr/lib/x86_64-linux-gnu/sasl2/libdigestmd5.so.2
/usr/lib/x86_64-linux-gnu/sasl2/liblogin.so
/usr/lib/x86_64-linux-gnu/sasl2/liblogin.so.2
/usr/lib/x86_64-linux-gnu/sasl2/libntlm.so
/usr/lib/x86_64-linux-gnu/sasl2/libntlm.so.2
/usr/lib/x86_64-linux-gnu/sasl2/libplain.so
/usr/lib/x86_64-linux-gnu/sasl2/libplain.so.2
/usr/lib/x86_64-linux-gnu/sasl2/libscram.so
/usr/lib/x86_64-linux-gnu/sasl2/libscram.so.2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Package: libsasl2-modules
Status: install reinstreq unpacked
Priority: optional
Section: libs
Installed-Size: 284
Maintainer: Debian Cyrus Team <team+cyrus@tracker.debian.org>
Architecture: amd64
Multi-Arch: same
Source: cyrus-sasl2
Version: 2.1.28+dfsg-10
Replaces: libsasl2-modules-gssapi-mit (<< 2.1.28+dfsg-4)
Depends: libc6 (>= 2.14), libssl3 (>= 3.0.0)
Suggests: libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal, libsasl2-modules-ldap, libsasl2-modules-otp, libsasl2-modules-sql
Breaks: libsasl2-modules-gssapi-mit (<< 2.1.28+dfsg-4)
Description: Cyrus SASL - pluggable authentication modules
 This is the Cyrus SASL API implementation, version 2.1. See package
 libsasl2-2 and RFC 2222 for more information.
 .
 This package provides the following SASL modules: LOGIN, PLAIN, ANONYMOUS,
 NTLM, SCRAM, CRAM-MD5, and DIGEST-MD5 (with DES support, deprecated).
Homepage: https://www.cyrusimap.org/sasl/
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Package: libsasl2-modules
Status: install ok unpacked
Priority: optional
Section: libs
Installed-Size: 284
Maintainer: Debian Cyrus Team <team+cyrus@tracker.debian.org>
Architecture: amd64
Multi-Arch: same
Source: cyrus-sasl2
Version: 2.1.28+dfsg-10
Replaces: libsasl2-modules-gssapi-mit (<< 2.1.28+dfsg-4)
Depends: libc6 (>= 2.14), libssl3 (>= 3.0.0)
Suggests: libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal, libsasl2-modules-ldap, libsasl2-modules-otp, libsasl2-modules-sql
Breaks: libsasl2-modules-gssapi-mit (<< 2.1.28+dfsg-4)
Description: Cyrus SASL - pluggable authentication modules
 This is the Cyrus SASL API implementation, version 2.1. See package
 libsasl2-2 and RFC 2222 for more information.
 .
 This package provides the following SASL modules: LOGIN, PLAIN, ANONYMOUS,
 NTLM, SCRAM, CRAM-MD5, and DIGEST-MD5 (with DES support, deprecated).
Homepage: https://www.cyrusimap.org/sasl/
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               # Triggers added by dh_makeshlibs/13.3.1
activate-noawait ldconfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1917a88ab1b833a9912435aa7461bd1c  usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
bda3f8b71d243198ee8355c5cd13d2ee  usr/share/doc/libxau6/changelog.Debian.gz
241a09e109a40c191a1823c92d01cb42  usr/share/doc/libxau6/changelog.gz
68d1360baf180902ffd5a66615982847  usr/share/doc/libxau6/copyright
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Package: libxau6
Source: libxau
Version: 1:1.0.9-1
Architecture: amd64
Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
Installed-Size: 42
Depends: libc6 (>= 2.4)
Section: libs
Priority: optional
Multi-Arch: same
Description: X11 authorisation library
 This package provides the main interface to the X11 authorisation handling,
 which controls authorisation for X connections, both client-side and
 server-side.
 .
 More information about X.Org can be found at:
 <URL:https://www.X.org>
 .
 This module can be found at
 https://gitlab.freedesktop.org/xorg/lib/libxau
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           libXau 6 libxau6 (>= 1:1.0.9)
udeb: libXau 6 libxau6-udeb (>= 1:1.0.9)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Package: libxau6
Status: install reinstreq half-installed
Priority: optional
Section: libs
Architecture: amd64
Multi-Arch: same
Version: 1:1.0.9-1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ELF          >           @        2          @ 8 	 @                                                                                                                                                          .       >       >                                 .      >      >                               8      8      8      $       $              Ptd   0       0       0       |       |              Qtd                                                  Rtd    .       >       >                                    GNU ql}IGlvu                
B`@      "   P!i~t}з]ݜjU	                            |                                            d                      )                                                                                       R                                                                                      A                     i                                                                                         	                                                                                                                                  :                     z                     $                     f                     ,                                            F   "                   X                                                                     m                      `      U      U           Q       p     @             __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize XauDisposeAuth free memset XauFileName getenv strlen __snprintf_chk malloc XauGetAuthByAddr access fopen XauReadAuth memcmp fclose XauGetBestAuthByAddr strncmp XauLockAuth __xstat time remove sleep pathconf link __errno_location rename __stack_chk_fail fread XauUnlockAuth fwrite XauWriteAuth __cxa_atexit libc.so.6 libXau.so.6 GLIBC_2.4 GLIBC_2.3.4 GLIBC_2.2.5                                                           ii
        ti	        ui	          >                   >             p      @             @      ?                    ?                    ?                    ?                    @                     @                    (@                    0@                    8@                    @@                    H@                    P@         	           X@         
           `@                    h@                    p@         
           x@                    @                    @         $           @                    @                    @                    @         !           @                    @                    @                    @                    @                    @                    @                    @                    @         %                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           HH/  HtH         5/  %/  @ %/  h    %/  h   %/  h   %/  h   %/  h   %/  h   %/  h   %/  h   p%/  h   `%/  h	   P%/  h
   @%/  h   0%/  h    %z/  h
   %r/  h    %j/  h   %b/  h   %Z/  h   %R/  h   %J/  h   %B/  h   %:/  h   %2/  h   %*/  h   p%"/  h   `%/  h   P%/  h   @%
/  h   0%.  f        H=.  H.  H9tH-  Ht	        H=.  H5.  H)HH?HHHtH-  HtfD      =.   u/UH=v-   HtH=j.  ]ha.  ]        {f.     HtKUHH~H}uH}(lH}8HtU01H}8OH]FfD  f.     D  HH=-   H-      HATH=  USIHtL[]A\H=  IHtHDH5-  H--  HX
H9r]HtXA<$/H\  uA|$ HPHDHM   PHLR  1HgL%8-  XZ[L]A\fD  HXH@H-  HHt9
,  tH,  Hp     H=d
  ,     H,      E1D  AWAVAUAATEUSH(HT$LD$ft$VH     HH  HH5m  HH   E@  ft'f9   L&H^IHtffufEt*AFft fD9uI~Ht$Au@ fEt*AF ft fD9uI~(Ht$`LuD  HHH(L[]A\A]A^A_fD  D$fA9FRI~Ht$_9RfE1f.     AWAVAUATUSHHHT$0H$   LD$(DL$f|$ft$fL$H     HH^  H5
  HWIH{  HD$     D$HD$8 fD   ft0f9  LLIHX  L$fuT$ft-AGft#f9uIHT$8Ht$(Ku    D$   ~EO LcLLt$M1IAEH4$D  HL9toD9,uH$   It$(H$H<_uLt$AM9l$(HD$ HtHEugMLTHHL[]A\A]A^A_fLt$M D$fA9GIHt$0_fE1 LL|$ Dl$IHLl$ tAWIAVAUAATUHSH  dH%(   H$  1H=  v4   H$  dH+%(     Hĸ  []A\A]A^A_fD  I     1L$   L    LL$     L1  I  L  HL   zt&1^Mt
H+D$hL9~LL   #Dtzt41LH   LL   ( u     L1
Ńu6 
D[ufD     fD  Y1LHtD  LLX    1J@ AWHAVAUI   ATIԺ   UHSH(dH%(   HD$1H|$rHt,1HL$dH+%(      H([]A\A]A^A_    D$\$E1fuMu    f] @ HHT$IIHtHT$L   HHT$H9tL1e
f.     ATI      LHPdH%(   HD$H1H|$FH   D$FT$GHt$H|$Lf$   Ht$H|$L   Ht$(H|$ L}   Ht$8H|$0Lct?@   IH   o$oL$oT$ o\$0 HP X0$H|$H|$|H|$(rfE1HD$HdH+%(   u6HPLA\ H|$E1CԐH|$E13H|$)H|$H|$H|$(H|$8HtT$01~H|$8rf.     D  ATUSHH   dH%(   H$  1I1I  wdIIٹ     LZ    LhIٹ  1H$       L/  H=LeH]   H$  dH+%(   uH   []A\@ ATHIԺ   UH   SHdH%(   HD$1H|$ffD$>I1IuL   HHH9HL$dH+%(   u	H[]A\fD  ATI   SLHHdH%(   HD$1H|$   ffD$I1IuHs{Lu!1HL$dH+%(   uQH[A\    Hs{LtHs({ LtHs8{0L9f     HQ"  1  HH                                                                                                                                                                                                                                                                                                                                       /.Xauthority XAUTHORITY HOME %s%s rb %s-c %s-l  ;|                    0X      H    P    $  pP             zR x  $      P   FJw ?;*3$"       D                 \   Q    F         |        D[ D         BHA Q
ABAX(I0`(A A
DBG   L      U   BBB E(D0A8F`
8D0A(B BBBG     L   ,      BBB B(A0A8D
8D0A(B BBBC   L   |     BEB E(A0D8IC
8A0A(B BBBG    H     `    BEB J(I0D8D`z
8A0A(B BBBH           BT`
ED4   <      BAA J
 AABA    0   t      BLI F0c
 AABA (     t    BIJ0`
ABH                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               p                                              
                     >                           >                    o    `             8                   
                                   @                                        0	                                 	              o    H      o           o          o                                                                                                                           >                      6      F      V      f      v                                                                  &      6      F      V      f      v                                                @      ffa90fee1b716cdc7d8349be47ed6ca4761b75.debug    y .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.got .text .fini .rodata .eh_frame_hdr .eh_frame .init_array .fini_array .dynamic .got.plt .data .bss .gnu_debuglink                                                                                   8      8      $                                 o       `      `      D                             (                                                   0             8      8                                   8   o                   L                            E   o       H      H      @                            T                                                     ^      B       0	      0	                                h                                                         c                                                       n                                                      w                                                        }                         	                                    2                       /                                          0       0       |                                                                                                    >       .                                                >      .                                                >      .                                 r             ?      /                                                  @       0                                                @      0                                                  A       1                                                            1      4                                                    41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ymo8_+Imؼ4%E$E@IF$WI/Q"(fy&=^>Ki_I-Lx񂐿wlNJihA$U3ORQj)uTL.TR͈$u-3dn*IAn⎑{5Iƶ19¥y7^//$D\W{\W1UƞƑZK̿J
-Tff)׸]~xsxrS)#!v9TJKr$cT&4ωӒZ20v/9%+ɁB )'7BN%pL
C?a#}ŋ|#ܣpb\M,hM;#`Cb$nݤy6q_'sVj˗}/5,2SݏA.Jܲ獽~3ZN"%c<9\%ojr%W-}X=/{qogpUsބ޲})6&øMRx\s<W4bP+ Ћ^%MP;!䰒HQqo?ľbsͻSCтAOG93)q.HGH3p٠oBers? }K̷sઆ߉;1 8q?jWF5ƱN+(+GA7K,sao^ۼxo0$anDm,`Xg;BL@-?	yW+^y|?
N2CG4A+Afw	0B~{^eoѨPVu|*42L{*VfPf)SʅXeBƬA	
W:c6ߺVQHwwF(9;~/GO2QB:&Ph$Ka(A~y搜w7W~
0
A0Z(ɟT	\,'[̵fږ9\9;QDİ`'Lƍ+q/Wq=olF^=(ZpƎ,$3e9XM:Gmnydz5!	^|CytaD'70Fh8hϏz?JYRCW[[:ZdV{(gS7~&
	oٔJZky
90aFP6@1Ԏٚb)YiZ
?4>P\ b!g:\{)pXǾgh% ѢGC|ފ)Z-)q"Ngzw
V|}BKml0	_33}i!2`a
|A72(pټ~y|Bܠ`!?@ѠB	7Llz
PxS,pY-g\ʈ"G+@UQL19Ű`A=g:/GbڒW2zFf-@P*eQu4;j/FeT~~occ3DkLjIڸYW˯FN3Iw%&
xb"|ihi $wk/gD&\lEtx WHb
bjTXƗ>?;
AqL3"L:3=x	N6ر{˝tҰKbP"fuRX"ǏDD	i6lvʙH\]Ñrj=,3	ῤTq/_1eg|{9@8qjWF~J%!H{*m?^g,\/Zҝ^a=Ehf>;
縶E+xT	8Zc(Tx ]J'd~̰9NkȳRBhL jDƨ;:\U'6?t"Dh]R25yjڶF0	gu`[rLca3QBaRG"8~bBg2N@/xV%oè;沆>nf`J8k9ɺ󳣛w7קg^,0TFgA	@yV:[)P^F&&(DOzgg<Cy\b@.8g([Cq(umh'5Bd+\~UZ=Mb֞iƓ
3&(ε}>Bo$ݷ;pYc*{GzYNX	wL8Xx؋yQЇ>
`{mՄ̑-3"eO&|	B+xlIUAAk)ɸ$R4xX":ZgÞ|8Y;)J9*65{tPkD2E5'iN8!
vq70ZFtf㶋Cq*'nuRKkk]pX%pF<)ŞUa4
ОB                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [wܶ^SIg As^%kR-$>'/up<M]ɲU/s^ubi!n߽@t9d
JTa%\*,VhX>oqY
~.tPS[0pWwJ­<; >l1DϞ#(["$QaMtf=3ݭqɅI$%2bFimi,e3J-%}:eP!F8}׵Ewv{eEXiPP[YqƢԷeW(̑2s}xزh,k$Ό-3+0*{DX9Vȉg5PZY4+[r
kMVַa @ t;Ee&5γ[^_7Zq]*0'PdJrlEKͪ6H<R&v'Ӈ5eǭl+Tfw2єSy';4h<Y?x %PƲ0)m]lG4^V~{nU5uaZbv'6dHB7hYMݽw)q*&rIL٬I2`쑺4oTz:2ijpAgpDXmDIYD4Q6	tǖ?>TeQ[٭}ux;>}B *%aiU6e3ZB[}PE/<||bQqPI#%
s	ʸv8!8%FhԱ|~T6c#?c7

$8IcXP<&4US0%4%8F!>J~YVp=HA@4
6z<@in'NzfANWk7t;%<5w'Yy|0#' !w{5'Q)Z	]q0cWpnZ!6,Y gh|xzq症G_qGDiFјw#%[K=}	ze*^><	
V|ɵϜwo@yk{O*U]/7BԐ(Ғ.C(P:I(aPP6>"@<B-2 ^}`~{yMMb:biV,%I$heWE[CY@Ԥ \JaXq8Te뙓i yc=
>q}v#(ӁG<}jr^.okY3X
%d?D xmm.ֺ|[`HءAwhީl]o{o !ae/O?[E;Q4qgTZ	iJzO?o%@t]fa+_٠SϯeYAq`RiS|_)-M$6XzQ`9 bA(v.aK*O}A/u YrzbEoQyb<aqY9BɪB6אuv`mcyR;ށ--c(/zXi,ӠՊQ^0LjGaȿ:hk,F[^-x,Xl
klыY){]ٮ}Wv7?׹Ǉehg?=y??:
W>@ `RN[[>&;[
Ӄudmw9چwJP l{OYoӇ~~^ oŀK,i]EHyXcxtTQf`Pi`v"f:ƘuVmݣ*躏lRu׌gU4>B4
}
j٪/
|tB05Һ(U25qqJUʥq,aò_Mw,2-|xZ|L" ˒AXm0JT뛪J.[+><3Hy ]e*|]E>c[`ﶨ}!xdO
>@]w9&|ynV娂T9X=/F-ȈFFajcB5s8D	iWa}$1ԫGym#AlZ+):'GNn	):^.\6{tGǭoܢ.=p7X9k;Eܷ"p{$+4 <tC9w2C]77$:|WVlMأ Sl_o?0ãgT+a0a0q,]p\eG`E_kқ­oiMJ*D;#mqJYU7Q{{!+000e8EM%`*cHT굮+0кW #/J
-^zSԳo7o
`~K
䮮 ņU(}Aq)'cJXƊskm*HDjݞHLN<wػˌ-	UG>ڵȋc=ݘdbP3@79-I#3_0,{v}W`MC:Ev/FV! 
 	ҎBVϙ|AdSmÆ)Q./OOǧg]+xeFͫ7]4Xmx{uuy2<;}ysyy`d̚8WW?[__N@dac+uQ.F\-]p`W+<w,髞BzA^H.k2;_!X\w[
,ˬXt۬.{^6'-X%xǧXU4Kvԥ(Zu 'p(FBsͿU}I$#B:WwGGWݽ(
ejb)NΤƩc*j<O zjx}suzq2Gz{6YY}{Q7W8T'0 D'1AJ9I	p$z}9<CYzk<^\쟝\ܻ>: o/NGnnN//F:M5{zqz3}s*%V	:)Y\'{-aI/ܗwsH[a '#
FW_
tz=XQu`-֝7|;*Z#n]U±J$pS?bW6B!7!'[pbk-\HFu*Q2j/{[gCLqA也ȟKasWm5HSE2BfI-Mt!/hWCN^T,Vwӥਲ਼*JxJ>{v؅΁/
L("!". |J
,
H
ƀo($FV8qbhD.UXO1=J7Ca^Cc?]7e3ᐛO$ڮowv!^#0O٧a}9;]{VB̂~[yLÒY=/mjuTn'$c7YaF&1a38Mz"0T1JX?&J0'
R'<XnHǎG	I4]5(o?2-&}3VegxȦ?<q7kn /ԫw\P+d8
)#i+DՐ>
qZV2Yﾲ%BV2*Mi"rt#"/8-vH.vv_VfL3
:0yD(kRs [ RUcB/UڳEg{ufd(}|)8/נ26.~n#/fy| գBgIā,ՕFIq ($VcѦ0l@B
\rU;wky
=6bx&\??X)!5s*)BR)DC6|J	SY?"Y
_F#ҾV2x*9Ż)ٔ+E#%$&6RP5pƣhX@TOP0<9bt~4Z*o'ҟW.INLlт*85
kT_l@DسvjNQxoVT6u~SSʶ;y3;Qd|[=oPY3[";/F@9vg*!v6S퉅 maa8^q|~
ws,?0FV?6B"$	X|$N:^)ILP"2Q383蠴QwMu?+?ۣ7WySFr*: /JL1ʀn2@I68"$e($R}1b!;b@u:xuwe5iW?('#ښ_1RS^dm 	l&qn%iu+kmfSAHKU[f~ev	*)XXOFPD:  [
H
Z:\&w}A_)( SJUKjR SXz_=pxa![Ya zgyOP<Xpz=]EgFV]t4zFF瞢/.^9bTZ`WdU/_L:eDp'ǿGO_<޼Yv9@2|%U]R4!Kl~8yV;Y$8F".Y0^ǘr!
6+4DmY&8/Czf w^P5.J	6ƔrL;hj:E(ɷ)Ph|HS
ďmbeߌN?qڗ̼\(㶙B_(!_<k/8
ێde׫TA٧(b \epXL3
IAR͗thSb:|g7tɠGшCz0)F;0oJlɻV!7Tcg;=Úh (0xVUd62nhj}t,_B5ңwlrޮ|̱:c?!6v=]1^\L]0\Lkd/kĪXRI_ΦI6KD~S	G|,\sKxTZI
[<#y7\9lв)1hpbk
9 uWESCbUj6I 9fI;cGG?:~~r1(0B ,y}玉l/FX
@8PՋ4ν&q3~1&8۲ѳt1JS_`$LYw v 8u0_>p"}9a7o5U"o Jx2WP<[	N4JOs".,9[p/xxaήo>.zu"Wx"mvPREh^Hۉ{@(GB+TvߗOb1~Εf@ϋ<&>yFvN_Ū{M`(;v\I@]llϥ	ᗃz
j(X	ٰl''\&oՀPΘ7M98kH	2EL"j\ijlxXPm\d//,ZX*?ܕIoL{[%A`JKgޖ.
^%LNqI`vz©WNsfH?@R)3>Cq=kSeIqEzG)`t:y|%䎗cJwpjQ-0%IL%'CՁ+g]K^'$=wX~#hF"{`rWYFyniUa}I8Ɍx4 g9%|d͛:Wxa^<K@bl8ց+{?,?k6s?V|>Wm.hE<)5ָ؂յ߇,% ]dɉ+)NQT_j/gT=%eSrFIprn.~Ql0+	=դ&~6;U'ǚ?ڶTv*~\؄(Q ~`ڀr*JS98}ΞB:Cj)΅0n}yu@ekD壷ҖڳJ	O~OA2C]<
=)h:uw>7^J4 H
Q\ NnYamqn]<g%	}x8ܤR`&v`R[tZj-.PF
h<)6 ;zPa
b"v|*	hQ;5tΖt^xZrguY;Gpit(} ZpS')بXY O^qnrŊRpu׌"*0a qM+FV{:+ǶWlf6ypve%IvI3n[
bPQںp4_ESʕ_4,qX(;ڈ89H̋^@d9kn8y 0ZBUY_ӥL@,JQJsiUY-t"a4FvdVGM^ov%Afg7ONCC@WuDD
vT</jlel3ksMb%3]P)(;kgҚ7aZrp`bAX3jEUFm\?.>>Zb"reζd`П>;o^.|ha
ޟ׷b)	zx8ԾF`㬨}UZa;-F;kCNl.4| BśsI}2P܃:45Ǡ KqFOC*@
µAӘZ5-"YťA}8vbHinuAYB 1ZSh̭@p
`Hm-.*A!FPT3r@Y[;e:D	x͕,m^fe{F, 5v|r`zǪ
4 oj@:t7ЉKOG?ukȇ*ٸ#fL5*FFbukNIFq#"}YpĨmP.*̎( 浲6\X6jW0iDZT*l
XR.h
KlF(b!3'>dEz05xNѝQ8$/|YzCmb'b=;uY/<fpBVx^xe\928E[ץb\lR2$|%IjmD?U2<CAF#:$wM-HPC>5~9uVVo~۔)O<~[W`ģgp'zt-VQ:ƙ]@ѭ-Qmw]+4KFF'czj٩C,;+u_0tzRAG[GS)`Id?([<4]ar[ϊǝtGO<"p&1Y ahGB46`ez!>q0(ljgc?qjLs!k4`Ao5a ?p6B*xyv8Tj2hk8]H^8Ku't́uJɿ8:;?{[9(He+aEdZr@A2F;?o9LSDC`f9PxHpWt2Ub>uctO"-+ :;Tx;xU]}1G?tkev7Oϊo}xuz)LB|o]TITЀ0xyy"J@Ѩo/Z'[aAY7!̊d6TH gnC"B#R$*' Yv{=$ ]eR([XΛHl6Žl3
}0aG]-oX\;2nuT^Xy4haɽ:t4c\oJeu^=@)K6z9CXV %og11FjVL?8>V%hDuSӧR R^Laq|8m\L9`^!8%#>qAʱ7?aّZ^8vb>sj&V2ԁUƾ?o:):ϕ'lWrk*pF$ uc7rJr;&P7Ͼ#Lp۽'	C&:EVaÐ?i;{JaAFazK<
lMe5i
hMZp+ohDڜ~ZLR=rqT8%)fIm)׮6*S\qo\ǻ4S{dpKIҁ1rw[輵 oXSU]uUafqZ}r	dh]9+pQrg{Q2gp; DD,Su8+b["
pf/^SճoqͳMD"
2JQ{
&FE}
1ÊK]o"2{_R/KKwRTp?.c~Ghsc:XK>)}/Ρb:G̀\IVͺ6cvq#;EgrRd:2@\/:?Y_WyJ8|v\mJ~]]S	n=[fȯdmʒq'D3"HȿZ<509`4&|	#m;o߄؀ڏ+"~GY
c+#J"5&<S 7d*<f¼HYgj\I/r2@ek3`OW
Qs5Qt9=ON(# Qp6zVqP/N//ԭ+UϲwL":P7p0B3/F3ڦo3B,8|7N	f&32AG؂{2<ѵJEÌsũ	+m`F:gѬxX3`vbדnSM{
Ɗ"}zZMt:FN?;;ysxrq'_9|F?dYͺYꮶ5!7&lVRn74' &TIIon- .
mj+yңnNn|įꦖ4/׏v}~"dݻ{k6{٩i<Da>l@aBEͪPRݔÖ#&Η.pUTQGYw܍rCNmGC<(MƸWT[/Gm<힛j~֮~,FQdls\1u]pBU%؀Ž_ڙbcN" p%r`0MT`Ә>>wht[Z)O@7X 'Gv頍YsL?ZzbTq
bAЁʟZQB;w^Ut%g糳m}/E n5#IN"Wisd9G>.Ip4xOF|රV>9B/Z*p+t5w
*t˶3`69> PG5z|ZVᴒh
R_jd.Qb$={R)рAc:{dU`q
0lo98
Dxル.ӹN!
2Lg]{$5x\~Uua㔣%uh|F[%H JJ`@(uSs2xZiWcFMZ'3^wZ+(=~8f4fBRr!8$qINihܯLWȷ):iZ
FMPjR+A0 d
Tg
><)^} u                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This package was downloaded from
https://xorg.freedesktop.org/releases/individual/lib/

Copyright 1988, 1998  The Open Group

Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        /.
/usr
/usr/lib
/usr/lib/x86_64-linux-gnu
/usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
/usr/share
/usr/share/doc
/usr/share/doc/libxau6
/usr/share/doc/libxau6/changelog.Debian.gz
/usr/share/doc/libxau6/changelog.gz
/usr/share/doc/libxau6/copyright
/usr/lib/x86_64-linux-gnu/libXau.so.6
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Package: libxau6
Status: install reinstreq unpacked
Priority: optional
Section: libs
Installed-Size: 42
Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
Architecture: amd64
Multi-Arch: same
Source: libxau
Version: 1:1.0.9-1
Depends: libc6 (>= 2.4)
Description: X11 authorisation library
 This package provides the main interface to the X11 authorisation handling,
 which controls authorisation for X connections, both client-side and
 server-side.
 .
 More information about X.Org can be found at:
 <URL:https://www.X.org>
 .
 This module can be found at
 https://gitlab.freedesktop.org/xorg/lib/libxau
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Package: libxau6
Status: install ok unpacked
Priority: optional
Section: libs
Installed-Size: 42
Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
Architecture: amd64
Multi-Arch: same
Source: libxau
Version: 1:1.0.9-1
Depends: libc6 (>= 2.4)
Description: X11 authorisation library
 This package provides the main interface to the X11 authorisation handling,
 which controls authorisation for X connections, both client-side and
 server-side.
 .
 More information about X.Org can be found at:
 <URL:https://www.X.org>
 .
 This module can be found at
 https://gitlab.freedesktop.org/xorg/lib/libxau
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               # Triggers added by dh_makeshlibs
activate-noawait ldconfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    c009636d1bded3301b984b4537ca564f  usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
5254ae45da9fa7efeec3ec9b585104c5  usr/share/doc/libxdmcp6/changelog.Debian.gz
85f708bf4dd2fb34376a0ff3bc85b808  usr/share/doc/libxdmcp6/changelog.gz
35343781bdf52fb6ccc51e0985418707  usr/share/doc/libxdmcp6/copyright
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Package: libxdmcp6
Source: libxdmcp
Version: 1:1.1.2-3
Architecture: amd64
Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
Installed-Size: 53
Depends: libbsd0 (>= 0.2.0), libc6 (>= 2.4)
Section: libs
Priority: optional
Multi-Arch: same
Description: X11 Display Manager Control Protocol library
 This package provides the main interface to the X11 display manager control
 protocol library, which allows for remote logins to display managers.
 .
 More information about X.Org can be found at:
 <URL:http://www.X.org>
 .
 This module can be found at
 git://anongit.freedesktop.org/git/xorg/lib/libXdmcp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         libXdmcp 6 libxdmcp6
udeb: libXdmcp 6 libxdmcp6-udeb
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Package: libxdmcp6
Status: install reinstreq half-installed
Priority: optional
Section: libs
Architecture: amd64
Multi-Arch: same
Version: 1:1.1.2-3
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                EMn0IݤMLm@UQOXkE#޼LgLMV4O&Jc4z[rces[I|ae4vEaԸ:GF|ChnҶ4+T0lcp{4af&2&JYldA5+Wv|=T2Ҧη'd<b_ $iE)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Zks6_v;;lIM;W2$Nt:DBc`Ҷ{.lɏd?(sϽpOu݁o2&V審2}򄱿٥8e{+/NBصTsGĉdXH꧌gI+BbceDΡEium$R=avζkGc|9}eLDs7Әg.k4gxI.eD\V}Pɜk'Y>,،_J:0^2E2zK/Eׁ.**a$ ugS]i[Ej/Td(;d3%Uu=+pW0Gt,3:w«=I6+t<CLHD8lÁkz,XB	2%ud(BdsE^A׾o'FhqZ|V`%NZ*lXw:޳vȥ5c5t#d.8\ZqnEn7/w"9xd0`?{}{$Yͷ}+uCd3Ք'	<EDf}Ԅe:v`CH!*^&1t?P1.ً/j21oޅߝoklA"<D	&I!,`#aD GLv,s2SGx9[	Ex,;`aBgh*.}|a
s̦YȓL SYJ4M@)_ǣcz_
KMiY;]| 2L3-rnڋI}xg؊J2)bgO	p!-oYTcǗR߀n-mt̞l/
\j\ߐ 劬x`s8|Wܮ y9)
(f2Lp)!m{Q5 *ߌ`[3~!9a&˾Ӧ&"
66}O,
uK 圡Oɔ$;AǤ<anXD[cCqb;G
OA
/>eu|0s@h]TJ)ET=$q?p2@7jTGQf?_&]͇jr̊Z]TqIe֖ON~sCM3J饀]/y*"Ԋ-G7%,֑V/xJ%KlžZJS)"%$ٳ^q
XBsY/MS"ʨ^>/ܛ/qW1,J !:%ɨ+dրT?< ]|N_qEZǓoY@mZ 5
H>y51:0h>ϱH?<^3-g=u8E%A\p%فB*H.EX	%w<k=塒Upa竸X86޷@g4D-MUg-ogؔjN\$pSuYtx4OHn4by+ힹu6D@ַUG{dOp¶belzQIeO*6w^?;T0c\mנ3ȩb{&M/%ڑ} Fx@"&dS%Pn'NENnh0FWdQ?~sx?Ol\Zf
؁$xf0}npsԤEȭPv*D+:v!Nk
5dHuH<ѣ]{kn51wGnzxURfEtE2o61;Q$?&xH~gu櫔Gx'ȧ֊s_uzԋmLr8aЦ8q6~]w_.jLyUA]*\]bm=;#v,/aIw>;ϵN1ZŚѪW
^ƦxnLoc?9,Wb_F"ycmzr}u;WH$SlqrR%r j@w̱NȯجSaOj6 [@i:T# ܻ92@{_;69QPr9L\ge4DefMmEB4e$b
iBzxIiaoWUҁI@BT(ɴeHH("D+Ľ~A_]](}.	ehf,#`{KjObNdu͜jB2(-q"{sc-Gm`Vn. ۑ~\x`0Wo26Vަ;!]K"D%ɧԆ9&?Lˬ(kgMn< .\
qۛ%ƶaW҉Q@Ɗsz"|XUFL[)'%̀dY6'ZzouVc7W|?@>4 Ъ5sD5tY[ )rʫ
hX6@+o6Խzk(o2'kfAC_`OX>e{Fx4nwj31.lekM:U\(w`9^T
IZe@ 
c=cj6A)&,RO$*h#/9uٮV0w+tiQ*dJ/#沠S+9T5b.X/PsKAVH};Be!V­j,jQ/,|d޳
;c{	7hUlOW7ZoɐHU^D`9}_
nox\g~auurǝ#>։ZΤ˔<qp¶7rS4[;"MtUxcbּ)hvjf<ףUha}(w@-7wB_VY%sEsЪ.y\<f"PHiI}I3{$+c=yKiwiT3cP֯ s1293*2C2aꂍZ$.5UUekҭg+`B{^дuoRWV1)hozGuaA2&Fs9x045١&`MYc%Ej%6Jz?r.{92͵Go!	5;ҡ?˩?Xg8?FZ7&v@VȈ/$&|QRzwrt|~FۿT#|s5}wiȾ9Cԉ<$f{k
j2iJ}ֈVחM`M]wf^ҰGˠS]BX-jz'(                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         [ms6_\5"  T>)u;)*J1ÈCEۯ΋%ٱ56H O?
z(:YcT*$9W."Jņ泓͔}4o}%]Oy}M*}Dw0ed"fh*3&"/xE}0omDNd$8+fs1\kƥY'iN@fBinξ\7x5Nw\7,e<&锫aVQ6l`Q_ MUT33h6u߱EѶ1> PE]1c]~nl*l6B1]9֚}[ح)am˖u53iBq.<ꪼڌ}.煝ˢ,YۛcLUwc'5\na*?
O靇竚>b>oo].59m
Ny]vX]8q'39brj&%b-08)uvA:	aqh[.&t0A F4NcGEY)`a6+oқk\բBouhR-gQ1%׬m 밲7:KvE6h*te&?
?h7ƞyv	^%0kt	
E(}u>B7?]l,ML--.kt%Znnٚ&6ͧ6_Od_z6\9s4?m&v3;xOC8;GztEnA8@?\\_9MTSaഘ3]Tm1W?C֞ıO+Gl#LK֞Bws|7CF1}O"s9Ե0s!C%Gnz8)[Ԉ7R(ڊpexzDu_>;}z `Y+}]^+a=@X/q$VIlARj5.4
q`O"vJO0.M{Kt7F^*b<QE*ӎ'ZIo]iB!ҩSh]n!{tx7>u06Ai9'\3mERB3aWDkMz\sI҂푪J^Q$m^X H`ҦD 9LVÅmٻ!kts5 !W`zDt_4~
&
̽e+ipi.G؂A}J»^eY6ܲ>/\6ċ!*mt0cݾySI8Rubc`WPy&6]gu_Xb$F
;8{g9	V3WiMȄ+ܷu4wV&HS퍈Rg+ b[q{w:D"oβH]󃫶xEDLۚ?#Tx{d007L8!0QILg;{&6J')
% 6})bCk!F/ ߜ]Uۢή\{‣+0icgTP34uAɑ= _SA2~6H6ˮ8yul@c4CW^ːocӪﺡDa8TAcԋUX
8hw^\=M}J1,&Zlk1e:NPS+Wc0ZqxhHm]0QۆQ^a`Xn̆6I&Y!\O@^Dϖ
Jq(Qq)긨0:o~$2b@k[б֑dri&sK_bY	7H~iMow0fC#\=-ĎG
)Ğ
D Ze&
C	8a3YGA
4P3rD ݜOgm>w!V˿@0Ow:ItغD52B4`cV5((ߏ6 UF#t Fտ$Fp(q),Jrlhsǭ	#QdhYK.d	~eOCu
qVi6*5fy[LӒVnDP6p&h g]vpOC TCavA+rZ3C~ˌhEl6
E0Z_!h0`'-%lWDR^a)P^$oϚ Y3.O=j4.F2\&M!>|lb7ʧRLyŋptk9)
N9czӐ'/H񐶇n1))װ3 isZp"'i%"U.l!~eؑ98~1? *f\MF$AºTv[,ˁ㟾)&N%dVWjaԁ^{v_^y>woч7!VQ"L\%h6dIL
YzNbRM:Q#???y=9Tqm	>gfPp6a/բ;9WM۷ON)e:J" n /
U%&
eb>v'/_(
6tN		~Y緟N|x&k<mh)@Hl$LH	Ǵ}jk[M6yy}&oOw͇C16V
x
e2HLr0iiTTFd:*I6Bռ^`}[qe<{re%p=E$FkPamS"U?SvσGΦچsa d/')%hvFw>8\!+ˤrZ[tRz4>*qtG.'n<e
"BFFaOYM}Őh+XhOS+iJYJ}5]s]Ei JGiP ۊP c&%)<IX! u9(cy2ܡ&ÂPrOMG{U)[auVYJt[2Nm002JR&`AX8gXn:WE6BGVe<Tj!-SRf`cgd"Z|N(!M5)@UY~EkԱrBQggJ)4	\Jy(CY{UKS㺭.|gQch =FN%gO2ԡaEzإ kMtjDsJqn"a&RU
D4>ίpE00m-E
ڡ^5͊|;i۳'CGr{TdnQWt%<DuN)0>?W	rcM	ZchW{9ҡh!Ž*@BL(tVCyf~;'V4}_hGSlʆ/
5F/':WBq2LHB"Vi$F,6 ­[w">2ʮgMq{t*#TEچ1J6<ZlDaVqh/zK<[&)䠽JT*\drlGS!H).?0CSL
Hu\^5lB	Se:IHј--)[UM{9b}}cLjkdV"E4<ZYs#:%&ۀG
痫^~[R%պ]EJUGEU-5oIطU`^laTё9&>J(F9Rd;ҝd;ӮH'nc+[&+^d'
mCLG],r(K 瘢ҎGQ,@jIkʰ`EsTkLL*u%E젻Z[JvP%; v쿺_B?3ڪ(g/[Wʢ/u;nS5AȂNr)Gff2mէtTL_=dv}e|v\ĽiIEDxڄ/ӦKCa	!˂/$2J9Dݻ_T8W9m{oN%41aØ6[W6e ޅ494!ǳXH@*	K@b%YaB17K(yrx]F70V۫Tc?	K
̈́r	ö#}QF#}W~S"PBIP}Wۺ닪Co:QrMK䏈$O;S TMv=n/38.BqXg4.2cQa&-3\}ntx$[$6ֻ$qKcPF{%,6cȭou&GΘ,F$WĬS]r7Oѕ$32ոEdHly,%?* 
HSMҼ<Ǿ؞s 48R"fw 8;(aKx;#T."yka^Q'1<CHݾ'AB1eQ6f5SR\rpl0eH =!҅(yхlI
k%#nDΤL(?fЍv&:(Np3JQg ,B \x,щt![
s<7`"i:/`IO`MZle`0c}u${ud|ҨY$?&l
+彯r8p>dKfp)Sv5cٸ76
KAa$JKcǙɒnnn^%=ttȼ&eTa"J*Cz=	)k=[a.t|F?"
/vFL(^Y.BpmcJ^.?.SZ#jRi,uhT̂qC
*1nIa*f^-7դya4bw	
$PkFˌF\l{}9fvt#r"szfʸfʥUд՟*Sa{
-7Z}W0i"B.jxwxN\9f!֐c}NQvL*g|4:MQ+wfG?dimtfjYjY*~HRK^4nAˊ}][P(Yo7E5B'k?I
?@$R ~w~G-[j0uSW"iP>@.BB>Jctq;u=\;"6~`ߡXy=hoD/A2jZ#{^lmCUO!Qu#`I@:tjMTtAeKe*h^ Wq 7S-(O9*!B7vXJ%ٚ)'	YMs.)^^::O.OOOOξaԴFwohY}?kg5f/!Su	u!#1au=Qn
LDQH&ӛ
1(4h=?-YzXxU)KJgBI3=[c! jaAjOOy=jt
/TP9,
Np-x9ثI'&&4[qL APuh똬5~Wk0~<{
Td|dpgd]TrרR"wUn9*h܌gyχɨj/Vf?k{CIX1^{EGgrD;F?	!1`+X&L (M7L'fSw2UX2	l.nzHvyZjBCviwgKH6O`7\kb{^ۗDNn	Hn[3 _=d!+ܗUcsKRs*/fL[!8qݸu^ă j:l	F@DS9X&孱 ׍?1YrpQ\.-Dۢiv|iاf]_#x{k݈00Kx𗑽lm_{
%Qm$X2WkfXnj|ͬVscXh?3/	ZD|0a\RxnKD_R@^zt5:IFlpGcl-6v]d}z7:4 Nm1%"<>[lAG\C0ߑ'h{x&-2TNtCͧ!͕ݨl!Ri(z"MQ
oPRme0TC쀁mD
|lނuͮMR
I@bS0N
Ēr~DD\ׇbג'rYV"wVT#^
Q25xw$/8MyTO
ĥ<@mqK|lg LSq}{aEtqDn+Q_@b<=bۘJ|(4rIib"BM(ߎNҖU]JfG9%*}-]REO MTUN[b0/_:><<zBtGwsHE5c
V;
iԣ,3AȔB\9lGgpi8)(5^BD N5 b6Y#m05'?Qa0)/40ܒnwzs4t$O+7EYɘTEap k7/_^8>9:EQȧ(!W|`0p7v\;9}s|r|ue5^|r~qك9ǳozqdٷ80^~&-L6|+ϕt>
8ϩIWJL"&dfЀ"1Sݒw߸O)rb
l͋1ȕ]"5NX!3Y	5E;&Jyڎޅ\i_϶"Qj+i	\I*@e9к]L,8`}
 "ϑ|JMMyQYG.`R
6;VG -h*u~OjIe+)
 +5WFz-I"ӗ8QA]c'g:	}zZBmrt.kh>9u"]?e6f BЫpTuY#G{_{
4dl+Z!df#X%0ەb@e_'tb6NKJ^j7誴{%]*mEH_W`^Uч`
fG%P3
;7}%G10phyJ/Em`UN0'T\2-]㝧b\8ʎVűG̪GFKba;r0,Zi-X["QjI:}M9pd(9ݳ	 K@[~a־M
ys!(+
+Ϋ
ŖG~}nDr^1
2ڶ(je
&DtHզZ*ޟEL'[}O7w"u(5T៉8sslŮ5SЌӱ|^^Z-ou3Ieo#w^ď?[ XrBkȜ4 HpSgʟ/nsԟ(4"؏0A[	Cgm>Otɳ)-l,T8f[yLQ6Oj/uPaeA4u*5(}_L;AUD*.=xfi=`{L}ҔjRuYoETL$'µ\7:$(h`J-t': П?2 mwB6'򗉏|Q!Î?0tB)m,,B2&/rS#^2'6y-XOrF?)Rjhe$-;~i?MxP9d[No%-?%$
8eUSܳR>RQ!l?jб.	aoLS[.ډwI"g;	rXwG21bMZCPb[)E?I<tj&6vbsXMT#TA
Cƪ񐐰|W[zqؐt@Ay_Uj呉.4
,]QJX9No!D{jrbWьcoGaܙQɽoOɀRD	I=B,~[tv31JU\LQ%	IR2tK¯:[bf(+[FJVUAN}
t1J=
u-r[AX#$@2-+(TFfàG~x~W$6,&
6urpE»bx*boyq柿eڴo;WQ5ogcZI&㍨(jDVaoN}^6lǷ+JWx*tW\=f5,?b:a6w?S8	]`_ZB;}x>{4}.+eyrm<U5]>	G
!,i'ˁhz;J{"Bႜ-N]lmj)
86{FQ5<`dUZmq`''Hb~=P7ݕFZBo=;<̵0z(8V{bNFBW'̉_~9]fC++~3ż?}t7y])}V-i۩M+ӳ@3x(%`+^)p\6 	&}
>Zlz0J`_6mWav_esd;L],FM,@;	 ;).tvVMX
Hnj3y<q.xP^	Hvh
Z%ql'"0
◰K\#РwһL(/)8?ص5m{)Y'Xn++Z*Qj
)_/]4@f;oçwj:ŷ&ܝe9Q+^^r$j;z{r|0j5;o4O˜[lG采#;XHaf
ރV)ďC ^2:k(TKRRYΜqUiW3j_4noz:f `&x <IC&)|¿NPIAfphZ^M(J61%Ljt
fUи#a};z˥
{p%_O<N:x"\-KNNrvzńwN$00wÔDFXVDYjJeE2ľM*gڀʈVޗ1-
/[YAX0M`A's䦇/wثNvqޟۿ8<>;-F)lǹKb 2	ɸZ6adX=ke!%;}\
	'@Pz=2D56\<Ŵ*Ouرv-gt
sM@G4sA
/)&t>ցeST^EYx⛹N
BN0[9P` >hu.}l1 aQ*Ma⻚j)$]vvg7/!v?ڮ#[|P%.^#k{\\x7p1$NmmQ4Z*~9e`kei4}<})6Ė**
Kind-LZsnoPɔ*OH`%		aS|ZPs$ӭjKذ@jֿ_	. 9_`ǱlU ;!Q%su3ZN!y{(;nJ1
fez2Լ5FSaw-DIV:}'
A`6O^7
*D10\VR"79oF߇wtx_xAFG(dīi~wjPM=}*9ȱt顽̯~<l7j}~~@ߒrPTʡIRF餌JMGa`4zN"غvGn`G!	zl,0!2l?#*W_=zfrc|3{K/R>bެr
9jh(8)~?\eHoy>S\8Pg9躈G.v$V][萦M	Z#14`{8!$}=Mplh_ia?㿴ޝ<0ŢK]:`Xl،֡拊Su0<âKW!|4BA|`>%"tw/|$,riM"o&cY3lQ+,1`[a:3UF8̷޺A
r8kh<
)0㒺
$	:-
\3)Y'!OOm^X
$xSEI+&J&)k6DnFU3͈GzWTJa+8naD߽L#8
+~zRLCi[[ESI/AI@~Ǆ?isQg.^g8L|Sm9$|c
IQo!R\FK+U.nILxUS/)9hFg'^<~߼ūRW*-_%X
j}iS7Kw<;{g@D:ۖn
>T̡A&X-ug>tmL	Uz:NqwBO2kcBsӕsK/U%%Uΰ@
۷Ӹ.Pֆ5|PJa\-N&&hS/{VB|# o1ChqvD~ȃ~7+Twu2rjAppij#Lך2+V4S3GJL-Ȱv4Yp%uW".<d{$rP+qYJ429{4.^2VIo3A7;s6gr@
^i˃Eb2wY_`feNƝNc{ܧb1!2RhSP9jY.ziiڅS
'u7>\с؄ @mx1X#}t/_qʭPt,7|I0l:bf(rW߽IrϬk=Q!x͂f{UU8DK3QkSE)vs$nؔZ</_GqM/3}\mTB<ұ,*~W (_ݖRl
EӚ-cF2P>w=j_?~:PhuLsFdHpܢlZoX2DbṰYom!wz4(Rr5*,>Xz۟>;9I3 Ȃ;*{$jR
W8V+`jrgװB1һͣ5[aauS&:^"bBSjc"b^
tɇ=G
u W3q0fY^ \!|~BߏNKEqo0ѧc`wbϑt `RȰ+!Y,8$g3_\{b+*ځ%e /3OA?XwBjYx??ڒ(r5e#Hh:G"5b/_wcxcNqbgffۤ"`+PlFG`טq._X|oLw.j2Cvˈ-NvxǓoR[22;++q4|xwL5C݁-3)_&h8	oNy6ײșzjt*hտvϓ8GlDjJߠ}`uPKNw)!>å>FP	q4I@E4FA7][U_	sx':8P
K$%C9Y"#Yjxa@esϱ)9僱*s~|jO,$*BѲB t͉ )hn>fēٸij#2xaVNKD'KRFYSU~|ɯ#!I.l prvE$gj'*pCڏI@Bap N <?}<
:> CɇrHf[>]VqnG:C<#`Tr{JڗɅÛ.黵u(w{r<tPكVu2^<bIkW0UVqJ9#sLV~PJ'R_KB9~g0ISq1pS$yLOq6WvdRE ݭABv/WB-0뙪sH4RU:W9~eK<)Yt9.d^ǖ4EtnϝgbJSe	cH
a2LAng=>sKݖ}(pW	M@bYX]&ūxjD2?mMa+9HLo=}7;<?9~mz_A{} 7˔Oh(*Zk6睊~DFv04b o'$qgnch˄e
A ٹ?B߶^TvM1

}[xKQ-*k%FtQPQo'r֎~tu>.9XZ[eJ dWâLw`,d~~lI_\ŧ}᥉!Q뱜زxlk]P&P.ѮUFE1ErP.iee+8۬R$	?#lAx">
)5.V&f7h>N23t6cK|<G_/~>g2PnR	Yr4DL:/7ө}7:]:np84HGr۳ZA_%vuY0mɏ2)qNm8ĆIjYkWA$uPJE3fya#sKng͙IW}hy8DdRw}y0 ću_vry37-orQ r￵c
iEXTBx2*[Kfo*2Gs(eMVzmVǰ)&G[o%$6sV[iఐ\
9'abSzov$te4FGy[n*|>XYԍflrӻ*J,cUn\5D8!ҝ+i,kxP˵8Tdvu5VN*Ī
u16b+\v
4sy؀o5VބFE!掍qmM}s޳ar6ыrE#bCI0dŻylmƳ8ĢMRbm[0i\,zIJD:YFb?0U5:L߱_^죗$l9A_UʚZn3^YV!%'/8%g٣qx=<U
N zB3!,:}-YF
nʂYj=ĩT5̺Qx+L5G؀ry?H=f>Yql?l(\r/ykKbi9 	DVU3ἇ[JBڽf1<tHZ*T̉nS FMI(eVJǠUkBP#eD\ں<֪eg'Wqvvw	SlfƄܖRZ7K@HCy~ZDWz}4d~*HL2䍒9T
"΋<=FT4+O_lKSfCip=p>4)\b<rf@'t3`ƑHNYA֍H/J;		6D 硫
pW1V޽j,vaB#2(7׵^cU@(
dh,xnN<XHGQKNXL6[ҽ%B%IDD3d7T*} @z!$X;Ç`pL2n)ZءUB|@#E^&M4dla1$l,h07zMVn,Qu(ZW'?z pN`JRvx6w
dՎt_*ۭۭn2|Ë_^H C%Y]<ԱVIÆQ	Z+'[odjD29OX
J`,ӲсU7NU
*<{Ci(	t.ɳxdyZ}x#LhI.`d
~TGbhN6xS !n~0n'Z&j$8GA
v/*`E
;JT3o04
Ӎ
bQdF,Ѵp0^ }$31ЩnZ'lv#!d"3RȠ좌7XE30cnɩuI$."q·OaxUՔ Ba!¦t
Xql(xZcyL4.xٳA
-^5HM#B4t"6BA0f$~.Mp!9m3gB7}W|
?}).0L3HΦ_.^!7l+C)7	 <YGH+taI[r8Lgsk
Qn6
{
JKQ#gW>eX*fIzudb8U⊪vj5(#ǚ<&T	9Z(<uiC<26Yru6^P5BN20''^(V-x8n D]üp'MeL!WY+1:djD;S9!iNA#-7cV
wuW摄2HLDNƉ$؎!AnB2DK\s"+lMkx6E}EhEW!9.{$)(];O42&J}P`9P@%)vhqRz|vz}Q[ۭBě	өSE#RV-`V]ٝx_kqU7FV)͠T7`~%[bVP*(ebQ
jB`!w9.,	f,_4	_ޗ/Vct-
[k=|H
f` DSJ
`.A
~lC2RByYeL ̑v쫅UwΫ?=s֋ٺ>鈱bs<s9R`ۤ_ Θ~J(E%j@VǨshpz >h4f`g&\Xm
@c͒K(pX%7'՞[@7?b}*l#`5 h
By7`Nvf流aj̭*\դG/R2JqL90yLMX>3=srӹ$D& Q[oD3]磳_X0ȿ5D
X-Veͮ1֒t֯xI1IqQg2OgT!ORm]bKQo 
 Uz9{^[ Z4^|Z5Q@Z% j$>gl`<1=Lg,N^aq\ԟbML`Wqq z Ӫ
C9x~uAOG DevQkbQlfUiIqKx|4wv{GZ6	Áp)@mu!rܥ!)Wh ԡn		zNkJp/u6)r26]p"|c82gwL@yzn=c&ƠYQ lG3`%-K*qM݃@XaH|v1P"Yb$-U>TLwDQЗd;#G;U#`)\jl`)b
ճٛ?Mk5p֤$)Hn4u}p1
)ϑl
,j|m浗.DhlYWX}1tlt%S$?J;XzfB((@'59rTl;NWucJ~6
u'_h<?g9^v`lfɟ
DRԣY<\LnG倃瘉)ׅ?}ʻ'XhldJc<pe$bU``X(!Cab1`	]^4tpE&
g*7qx^04cA8 ]Bf96	uJu,-ͭ_%AmdHlq]d)^cO.[w*) RDX:/dۋkC-fl(ʞ`s$aXuHd5k.j>k@Qݮ_UWX&QS䯗1I:e糦2Ι`mʕV\@Q^gy
lv6{O :J%lXdsnw	ZNnwkeRdMNCV$b фj
lSOU2Á-:zw\ӧts9! /̄W$+ѩrl/aY`R="ɋk[
O,?X*4$fvs[򛏭ܵJ1P7ﻳg%o eN9ؙ5UyHԁd޲eR\G7eq+::g?*j뚲
(DXUTŔ~H*$7vo|;KaVH3f`
gǣK%&9輪:b*Zt+X5?uCߠ%:ﭪNj#"qv' a
G0*=αBցn؈VSj5K"aSH
;Ivx` )1ҟOa29~{u7FXhpwەnQ$	drJ#--i14`y2h ~z~<є~~Xwvۦbǥz ?r5};%x<I)T-3L 7e_8pG8/-X
.Qlj+c0jMO:'g=Q
V]"[aJ_hן̒."
y=՘'yv,ˠ !Dn@ۥhY8 @_떍=uwմ->G=|[ݺ^aFǶ'O.ᶔ~(i:@x<:QJ4
L8<!CJ̜/]=ݩYt
 5@Yt$8:-w=pTi\l^?}	'TURu qYH`C4gM	_7<nup)h6Q` dqq - OJv7(ʱ%OֶJcrt-_1\-Gl$bC21P[/E"}" eUޮ
#00FǯgWqqEa{3.iG7"zc?%SS
d\#YgN4M16^׋YOnq,rzìAD1}Ԋ%ug+[MŔ ewEFd8SIDDPd$rʠ	er/З6![G>]-oEYܴ0uI	(f' KHrwhT9E32eXlÇ!zh
ju>w!LۗݫKd{yq@`lSVۜeVXĨhD`m%L8$DՆb8l:9xZ[1æq kBr5\DuH2w>	r5=gD0^U+am֢gĄ-	Wdlq-Y"&bq`-^í@d+R̀M^麍TB?|54SMTĬjM$BJNR.%hGq:[{<dg-6$d2wQQ-GoHx]L%>I*9B
6bԠ9M>]N5]A<;QZ#[#	9ۆl4'HE-_L^'DU{Itݮvy`Ԡ񅬍hbj:8EA.tt"v	>asɪLtX$41э:J6ﭒQm6\p8'K:!ehH&&G:ob<<(M&4𨔆өUp ng|ˎ.՟?;
QG@\qZl4+0ZP
_]c6}p'?,on;Ǯ{oz{3X(z	G	&,3m>cR]59YO>lG)L6ua8w߅aq~To%8Y;8!̕CM
4/u4;w`eۜZ~8z\5lWWZc f@*DSvx:4:#6TpW+Nr]ڇ8CI VN,Ai$zj>}q3J~Go`jK䣄?=}Z@us} "6
8W.VD
YBr&OklOE"ު'wr';0*ufPG\[{NȌ?`7g?OA@-8ּöaF
%E|DU|b\,5)Tg|cXy F	x[IC9ꃀ%́տZJa&SX^|"Ψ/B|<}Z(1!
O̭Lp)	=CavxF,mC`n1pAE %p@Q(f<}_1Uyi"J"8|?ϩDL9 |>AɆHP	8\eo<ئ΄^JOfZA}juW[·%y:{>[[;IK`
,6@r-AgEh<Jfw2knGˉpYgϻJ3܎16Y7v
p5_3Ţd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This package was downloaded from
http://xorg.freedesktop.org/releases/individual/lib/

Copyright 1986, 1987, 1988, 1989, 1994, 1998  The Open Group

Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.

Copyright (c) 1996 Digital Equipment Corporation, Maynard, Massachusetts.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software.

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES, INCLUDING, 
BUT NOT LIMITED TO CONSEQUENTIAL OR INCIDENTAL DAMAGES, OR OTHER LIABILITY, 
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR 
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of Digital Equipment Corporation 
shall not be used in advertising or otherwise to promote the sale, use or other
dealings in this Software without prior written authorization from Digital 
Equipment Corporation.

Copyright (c) 1997 by Silicon Graphics Computer Systems, Inc.
Permission to use, copy, modify, and distribute this
software and its documentation for any purpose and without
fee is hereby granted, provided that the above copyright
notice appear in all copies and that both that copyright
notice and this permission notice appear in supporting
documentation, and that the name of Silicon Graphics not be
used in advertising or publicity pertaining to distribution
of the software without specific prior written permission.
Silicon Graphics makes no representation about the suitability
of this software for any purpose. It is provided "as is"
without any express or implied warranty.
SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION  WITH
THE USE OR PERFORMANCE OF THIS SOFTWARE.

Copyright 1992 Network Computing Devices

Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation, and that the name of NCD. not be used in advertising or
publicity pertaining to distribution of the software without specific,
written prior permission.  NCD. makes no representations about the
suitability of this software for any purpose.  It is provided "as is"
without express or implied warranty.

NCD. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL NCD.
BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Copyright 1991,1993 by Digital Equipment Corporation, Maynard, Massachusetts,
and Olivetti Research Limited, Cambridge, England.

                        All Rights Reserved

Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the names of Digital or Olivetti
not be used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.

DIGITAL AND OLIVETTI DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS, IN NO EVENT SHALL THEY BE LIABLE FOR ANY SPECIAL, INDIRECT OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.

Copyright 1986, 1987, 1988 by Hewlett-Packard Corporation

Permission to use, copy, modify, and distribute this
software and its documentation for any purpose and without
fee is hereby granted, provided that the above copyright
notice appear in all copies and that both that copyright
notice and this permission notice appear in supporting
documentation, and that the name of Hewlett-Packard not be used in
advertising or publicity pertaining to distribution of the
software without specific, written prior permission.

Hewlett-Packard makes no representations about the 
suitability of this software for any purpose.  It is provided 
"as is" without express or implied warranty.

This software is not subject to any license of the American
Telephone and Telegraph Company or of the Regents of the
University of California.

Copyright (c) 1994, 1995  Hewlett-Packard Company

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of the Hewlett-Packard
Company shall not be used in advertising or otherwise to promote the
sale, use or other dealings in this Software without prior written
authorization from the Hewlett-Packard Company.

Copyright Digital Equipment Corporation, 1996

Permission to use, copy, modify, distribute, and sell this
documentation for any purpose is hereby granted without fee,
provided that the above copyright notice and this permission
notice appear in all copies.  Digital Equipment Corporation
makes no representations about the suitability for any purpose
of the information in this document.  This documentation is
provided ``as is'' without express or implied warranty.

Copyright (c) 1999, 2005, 2006, Oracle and/or its affiliates. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice (including the next
paragraph) shall be included in all copies or substantial portions of the
Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

Copyright (c) 1989 X Consortium, Inc. and Digital Equipment Corporation.
Copyright (c) 1992 X Consortium, Inc. and Intergraph Corporation.
Copyright (c) 1993 X Consortium, Inc. and Silicon Graphics, Inc.
Copyright (c) 1994, 1995 X Consortium, Inc. and Hewlett-Packard Company.

Permission to use, copy, modify, and distribute this documentation for
any purpose and without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
Digital Equipment Corporation, Intergraph Corporation, Silicon
Graphics, Hewlett-Packard, and the X Consortium make no
representations about the suitability for any purpose of the
information in this document.  This documentation is provided ``as is''
without express or implied warranty.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           /.
/usr
/usr/lib
/usr/lib/x86_64-linux-gnu
/usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
/usr/share
/usr/share/doc
/usr/share/doc/libxext6
/usr/share/doc/libxext6/changelog.Debian.amd64.gz
/usr/share/doc/libxext6/changelog.Debian.gz
/usr/share/doc/libxext6/changelog.gz
/usr/share/doc/libxext6/copyright
/usr/lib/x86_64-linux-gnu/libXext.so.6
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Package: libxext6
Status: install reinstreq unpacked
Priority: optional
Section: libs
Installed-Size: 132
Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
Architecture: amd64
Multi-Arch: same
Source: libxext (2:1.3.4-1)
Version: 2:1.3.4-1+b1
Depends: libc6 (>= 2.14), libx11-6 (>= 2:1.6.0)
Description: X11 miscellaneous extension library
 libXext provides an X Window System client interface to several extensions to
 the X protocol.
 .
 The supported protocol extensions are:
  - DOUBLE-BUFFER (DBE), the Double Buffer extension;
  - DPMS, the VESA Display Power Management System extension;
  - Extended-Visual-Information (EVI), an extension for gathering extra
    information about the X server's visuals;
  - LBX, the Low Bandwidth X extension;
  - MIT-SHM, the MIT X client/server shared memory extension;
  - MIT-SUNDRY-NONSTANDARD, a miscellaneous extension by MIT;
  - Multi-Buffering, the multi-buffering and stereo display extension;
  - SECURITY, the X security extension;
  - SHAPE, the non-rectangular shaped window extension;
  - SYNC, the X synchronization extension;
  - TOG-CUP, the Open Group's Colormap Utilization extension;
  - XC-APPGROUP, the X Consortium's Application Group extension;
  - XC-MISC, the X Consortium's resource ID querying extension;
  - XTEST, the X test extension (this is one of two client-side
    implementations; the other is in the libXtst library, provided by the
    libxtst6 package);
 .
 libXext also provides a small set of utility functions to aid authors of
 client APIs for X protocol extensions.
 .
 More information about X.Org can be found at:
 <URL:http://www.X.org>
 .
 This module can be found at
 git://anongit.freedesktop.org/git/xorg/lib/libXext
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Package: libxext6
Status: install ok unpacked
Priority: optional
Section: libs
Installed-Size: 132
Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
Architecture: amd64
Multi-Arch: same
Source: libxext (2:1.3.4-1)
Version: 2:1.3.4-1+b1
Depends: libc6 (>= 2.14), libx11-6 (>= 2:1.6.0)
Description: X11 miscellaneous extension library
 libXext provides an X Window System client interface to several extensions to
 the X protocol.
 .
 The supported protocol extensions are:
  - DOUBLE-BUFFER (DBE), the Double Buffer extension;
  - DPMS, the VESA Display Power Management System extension;
  - Extended-Visual-Information (EVI), an extension for gathering extra
    information about the X server's visuals;
  - LBX, the Low Bandwidth X extension;
  - MIT-SHM, the MIT X client/server shared memory extension;
  - MIT-SUNDRY-NONSTANDARD, a miscellaneous extension by MIT;
  - Multi-Buffering, the multi-buffering and stereo display extension;
  - SECURITY, the X security extension;
  - SHAPE, the non-rectangular shaped window extension;
  - SYNC, the X synchronization extension;
  - TOG-CUP, the Open Group's Colormap Utilization extension;
  - XC-APPGROUP, the X Consortium's Application Group extension;
  - XC-MISC, the X Consortium's resource ID querying extension;
  - XTEST, the X test extension (this is one of two client-side
    implementations; the other is in the libXtst library, provided by the
    libxtst6 package);
 .
 libXext also provides a small set of utility functions to aid authors of
 client APIs for X protocol extensions.
 .
 More information about X.Org can be found at:
 <URL:http://www.X.org>
 .
 This module can be found at
 git://anongit.freedesktop.org/git/xorg/lib/libXext
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         # Triggers added by dh_makeshlibs/13.6
activate-noawait ldconfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               f33da92179df2a4afdcc03b8b06ec91c  usr/lib/x86_64-linux-gnu/libXmuu.so.1.0.0
903fe01931759150932c08a496c671bf  usr/share/doc/libxmuu1/changelog.Debian.gz
3e5d0c38afe858f94c2a825d096b9482  usr/share/doc/libxmuu1/changelog.gz
2d251d0d641d530c647a029c3b6c08bc  usr/share/doc/libxmuu1/copyright
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Package: libxmuu1
Source: libxmu
Version: 2:1.1.3-3
Architecture: amd64
Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
Installed-Size: 54
Depends: libc6 (>= 2.4), libx11-6
Section: libs
Priority: optional
Multi-Arch: same
Description: X11 miscellaneous micro-utility library
 libXmuu provides a set of miscellaneous utility convenience functions for X
 libraries to use.  It is a lighter version of libXmu that does not depend
 on libXt or libXext; for more information on libXmu, see libxmu6.
 .
 More information about X.Org can be found at:
 <URL:http://www.X.org>
 .
 This module can be found at
 git://anongit.freedesktop.org/git/xorg/lib/libXmu
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      libXmuu 1 libxmuu1 (>= 2:1.1.3)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Package: libxmuu1
Status: install reinstreq half-installed
Priority: optional
Section: libs
Architecture: amd64
Multi-Arch: same
Version: 2:1.1.3-3
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ELF          >            @       Q          @ 8 	 @                                 (      (                                                                     @       @       @                               @I      @Y      @Y      h      x                   0N      0^      0^                               8      8      8      $       $              Ptd   C      C      C      |       |              Qtd                                                  Rtd   @I      @Y      @Y                                  GNU T7mkI                J
 Hd A	          "fBEz"?|9s^%_qXp'$N`yC,[                                                   U                                            y                      s                      B                                                                                                                                                        t                     ;                     !                     ,                       `                      F   "                   ^                           $                  %                `                  ,      I          `              H    +      E       /    .             e    +      +            $                 `                  .      d           .      d             ,      T           `,      T        __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize XQueryTree XGetWindowProperty XFree __stack_chk_fail XmuClientWindow XInternAtom XmuCursorNameToIndex strlen XmuCopyISOLatin1Lowered strcmp XmuPrintDefaultErrorMessage XGetErrorText XGetErrorDatabaseText __fprintf_chk XmuSnprintf fwrite fputc XmuSimpleErrorHandler stderr XmuGetHostname gethostname XmuCopyISOLatin1Uppered XmuCompareISOLatin1 XmuNCopyISOLatin1Lowered XmuNCopyISOLatin1Uppered __vsnprintf_chk libX11.so.6 libc.so.6 _edata __bss_start _end libXmuu.so.1 GLIBC_2.3.4 GLIBC_2.4 GLIBC_2.2.5                                                ti	   )     ii
   5     ui	   ?      `Y             	@      pY             B      Y             @      Y             #@      Y             A      Y             2@      Y             ;@      Y             N@      Y             b@      Y             n@       Z             y@      Z             @       Z             @      0Z             @      @Z             @      PZ             @      `Z             @      pZ             @      Z             @      Z             @      Z             @      Z             A      Z             @      Z             @      Z             @      Z             @       [             A      [             
A       [             A      0[             A      @[             A      P[             $A      `[             *A      p[             /A      [             :A      [             CA      [             MA      [             VA      [             aA      [             jA      [             sA      [             wA       \             A      \             A       \             A      0\             A      @\             A      P\             A      `\             A      p\             A      \             A      \             A      \             A      \             A      \             A      \             	B      \             B      \             &B       ]             2B      ]             DB       ]             LB      0]             SB      @]             ZB      P]             cB      `]             hB      p]             oB      ]             vB      ]             B      ]             B      ]             B      ]             B      ]             B      ]             B      ]             B       ^             B      ^             B       ^             B      `             `      _                    _         	           _                    _                    _                    `                     `                    (`                    0`                    8`                    @`                    H`                    P`                    X`                    ``                     h`         
           p`                    x`                    `         
           `                    `                    `                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HH?  HtI    H               5?  %?  @ %?  h    %?  h   %?  h   %?  h   %?  h   %?  h   %?  h   %?  h   p%?  h   `%?  h	   P%?  h
   @%z?  h   0%r?  h    %j?  h
   %b?  h    %Z?  h   %R?  h   %>  f        H=A?  H:?  H9tHV>  Ht	        H=?  H5
?  H)HH?HHHtH%>  HtfD      =>   u{UH=>   HATStH=>  VHO7  HP7  H)IH>  HHH9s!fD  HH}>  AHr>  H9r[A\V>  ]@     '    AWAVAUATE1UHSHHxHL$8HT$0dH%(   HD$h1LL$(LD$@HD$H       HD$`H|$@E1HD$D$(D9   HD$,L|$XHD$HD$HLt$PHD$DE1E11HD$`    H4HHt$L$    AWAVt$ t$0j H$   H0Ht?AH|$H H|$@t>N$'MdHtHD$hdH+%(   ueHxL[]A\A]A^A_D  D$(D9QE1-fD  DHAH4HH|$@IHuD$(D9wE1Hu}ff.     fAT   UHSHH5  H0dH%(   HD$(1HD$    HD$     Hu"HHT$(dH+%(   uH0[]A\fD  IHD$ HE1PE11LHHD$ PHD$ PHD$PHD$(Pj H|$PH0HtH|$ uLHHHsq ATIUSH0dH%(   HD$(1`H'wbHLHM4  HL  H5  D  HL9t/H3HluCHT$(dH+%(   uH0[]A\@ f.     fAW    L=d  AVAUATIUHSHHX@  v dH%(   H$H@  1Lt$@L$@   LMLHA    H
  H  ML   H  L1 MLHA    H
  H  K!LL   1K!  L@  Mu   MM  A9JuIJ`HV  L1    LT$L   LL*  1L{HI  L      HHD$J{! X  C   <wjr  Hs_A    M<L  <  H
A  HJ  LHHKL   L1H|$L      A    MLHH
  H  DHKLL   1H|$L      wMLHA    H
  H  L   LH   1LL
   1{ H$H@  dH+%(   e  HX@  []A\A]A^A_D  LT$ H      1LLT$8HT$MHA    H
  H5  TLH_  L1   Hy  L      HHD$z{! 0LHA    MH
  H  K"LL   1H   L@  D$@ M   HD$    9GILH|$@ M	MtXIAXHt LL$IQs LA    HLL$|$@ AAuDtS 9~H|$HuLL$M	MuLL$Mue   D$@ValufD$D%fII`DC     1E+AHw  LA    MLLH
/  H$@    !  L@  M[IFhHtLHHM6Mu9    D$@ :fD  A    MLHH
g  Hv  fK"LL   1LT$L1DC"H      IJ`LHMH
d  H5~  A    
L   LL
  1L^H|$L      7fH
R  HW  LHfL      H=  HKLL   1L
   T    H
  H  LHOD  F!<t<t$<t HY4  H~ 	u1    ~ tH34  H{f.     UHSHcHH )D HlH[]D  (fD  P@v1H(P B@ HHtPvPwǃ f.      ff.     (fD  P v1HPB@ HHtPvPwǃ f.      ff.     SIuq  P@   D@(P AFDF@Av&VvjV@vb^(D^ @EۀAF9uRGHI   A1DP@tWAvPrH f.     V 9tAwGAvVw @)[    AwV@vN(V [F)APw f     A11DFA1P@DFvӍP(vw    ~_tUtP:5 P@v:D@(P ABfHH)ttPvލPw ѐ ff.     ~_tUtP:5 P v:D@PABfHH)ttPvލPw ѐ ff.     H   HL$8LD$@LL$Ht7)D$P)L$`)T$p)$   )$   )$   )$   )$   dH%(   HD$~@IHcI   H$   $   HL$HL$ HL$HD$0   kHT$dH+%(   uH   f.     @ Hu)  Ht/UHSHc)  H    HCHHuH]f   HH                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WM_STATE x_cursor based_arrow_down based_arrow_up bogosity bottom_left_corner bottom_right_corner bottom_side bottom_tee box_spiral center_ptr circle clock coffee_mug cross_reverse crosshair diamond_cross dot dotbox draft_large draft_small draped_box exchange fleur gobbler gumby hand1 hand2 heart icon iron_cross left_ptr left_side left_tee leftbutton ll_angle lr_angle man middlebutton mouse pencil pirate plus question_arrow right_ptr right_side right_tee rightbutton rtl_logo sailboat sb_down_arrow sb_h_double_arrow sb_left_arrow sb_right_arrow sb_up_arrow sb_v_double_arrow shuttle sizing spider spraycan star target tcross top_left_arrow top_left_corner top_right_corner top_side top_tee trek ul_angle umbrella ur_angle watch xterm X Error XError XlibMessage %s:  %s
   Request Major code %d MajorCode XRequest %s.%d Value 0x%x Value AtomID 0x%x AtomID ResourceID 0x%x ResourceID Error Serial #%d ErrorSerial Current Serial #%d CurrentSerial Request Minor code %d MinorCode  (%s) %s   ;|      P   p       D         0   X  l    0                 zR x  $          FJw ?;*3$"       D              h   \      BBB B(D0D8GJBDDBQF
8D0A(B BBBF   H          BFD NPC
 AABGOXQ`FhFpFxBNP   4     h    BDA DPt
 AABE     L   L     BNB B(D0D8Jr
8A0A(B BBBF       E           $     +    ADJ YAA      T            T             XI   D
HU
L    (  d          <  d          P  <    G
A                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        	@              B             @             #@             A             2@      
       ;@             N@             b@             n@             y@             @             @             @             @             @             @              @      "       @      $       @      &       @      (       A      *       @      ,       @      .       @      0       @      2       A      4       
A      6       A      8       A      :       A      <       $A      >       *A      @       /A      B       :A      D       CA      F       MA      H       VA      J       aA      L       jA      N       sA      P       wA      R       A      T       A      V       A      X       A      Z       A      \       A      ^       A      `       A      b       A      d       A      f       A      h       A      j       A      l       	B      n       B      p       &B      r       2B      t       DB      v       LB      x       SB      z       ZB      |       cB      ~       hB             oB             vB             B             B             B             B             B             B             B             B             B             B                                                                   
       0      o    `                                
       K                            `                                                                        	              o          o           o    D      o    N                                                                                                                                       0^                      F       V       f       v                                                               !      !      &!      6!      F!      `      f55437eb13a76d926bde101a901e18499b1104.debug     .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.got .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .data.rel.ro .dynamic .got.plt .data .bss .gnu_debuglink                                                                                8      8      $                                 o       `      `      d                             (                         0                          0                         K                             8   o       D      D      D                            E   o                   @                            T                                                    ^      B                                             h                             !                              c             0       0                                    n             P!      P!                                   w             `!      `!                                   }             0      0                                          2        @       @                                               C      C      |                                           `D      `D      l                                          @Y      @I                                                 PY      PI                                                 `Y      `I                                                 0^      0N                                 r             _      O      (                                           `       P                                                `      P                                                 `      P                                                          P      4                                                    P                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 YnFj"MÒtۦIIE5(r$MMr3emr}=wfDQ,Y 1$r8{(ۼf{(CY]*g;V)/9OE?zo$Ts^q	;,]	z2˘Jl/ɤ:b_A0ccoD.qU{ZOXą/oyvǬt,8oc x(0',EdS4$Kyɋɂ݆ad%0r0/{؅a 7^nWn!r#ύW|RW9S<澹3deW|&(׃VMb:tTQ
_&\JyIw}x<ՋqrO0,e&-~F7voH4N$l}9qfguL	"X63^ߜ_gf)-"P5<kU(Ѿ"5{WLiWu&٩pv^NJdldDg@ބͱJ7zn0%k2xj?#ssI@n^QЏ}&ܖ>){!:L%~Yv[AՁŊٿ~_vVEIelf}U2YL*U;M0[3,7%h@[` \,(}9
{Qn}ű=7.!F	L`|NTцXJdhns)[xiyL*)AC*,1>Yg@ne1E,4)E9Q)LNo*Y2S&mv7"ej-
9V)m\5QqP| WO7dǥwzAޑ`{n2|B&:!יsYE\LkFlfϕ0TdLHp6c;cYqمRGDc VW*K]|&2E T|/+N4&vcu'3c%ſEa<Y16+#UB|PE
84= 5 P`0G!X,2a޻(݂2ԝs	YdVprDw1ІB,EfBY
`(5wKyT܊D6Jsy(WmXb:z|c%^Z#oW+o9$WQ1JtL6@+<`!`%"^5"6\HW3"DB~,z>r\Y!-g,	Xmd0yY$q\x[QAztW<+]Nxz-bGKi`Qhv>l*M&Y1D!$S4g'W'ozqvëWoETʔEKѝ
k\WͳFi@5ȬgQ㽚Hyk5
H]4eha=Htw V|Q'1;34i7բ8qʹTlk.t?C968E~˜u=gxΗ]>M}v	"0hQ/Fbpgw[\~Il}kX=%Yޚp4@.9?{b_9ZZw*8BE]p{Yiw7+/tdkF+hb_xC Y򠑑K5"RS.X&v^uH6X5gd~{>pIIWIh}|SY=BJ7~
;E4uZ}К#\ǐLfd8Q"9%Yeld>	!%" 7)xZpUN%q6x
H%DANgjų㳗|-kpwp'9Ω:lU3`4tĨӞ>BL	츞
UQp;UrzI#}%ch"HR$.U՞n_[6{2j
EFu Gpf`[
1
,eiύgΝjٻnWtn2PB/8w5*+m'*&̥x,ds$Њa(Y2{l*AK'?_z}@n(fgr0C\-	ǰN7㺨eN|ؙG1n62''lhFuMB?}w	TrY|\>!=MlEz\s7ˍoொ+|)2PȺ'w\_s4un*?\]B1T؋A7ɦ{O6G(xoHiO>%H^e91׊>gH
%*+ӍIW)@u4Eٝ\4UgiZO[
T#Cwm\	Jj}&wModbhd}h2 nwF$ 7 ْhOq
]Z4pgVHTt.Wn%5:b9d=²?h]pxY
rN$

5f=RSU!Fp?kt!h_-Fn7Glݝڎd=sL#lFe͖.T7VY =ئ#<M1?>Hy0ߋ-gZ#7~ۣ	2ynOeӘOM%l5/fgV$aWy/o/NLh_϶&{+{ ꏢɭ&uf0Vhpݻe3ϵDif3;:뛹q
HaZ*/fKRck9<
hpGl' {O'#9:{o_N,                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Zs}
$w0ogYmm,'ɷʥT<Y̓;=6ۯH,_\2%
Ȫ(K4F	,dGS{2P7EfkU=#{(~U-uR'SuUkx́hr.Zr$"x<c>ydB#J y~.:¦l<ZM*c&?7ҩNPJ?$
}$Bs|@=H5MVΉwu6_Lꆴ?_G'rm; v*i%JSQT=UIr9a3c]_kBٴnr%iqcHVkQgUӕyf`F%of/B,rFq0y/E_6dBͬ@DejȋKѶuv[+w߽ ?u"Lkb'%R?O~&_񯴪}P7Ya Kʏ-|7c_I⍅-ܯ~̴|t~A2Vܘ0WүrQO!
Q{2W]N~1%X$/?d
9RlTuԗu˼1|-X8kk;lC)O#$eL%+_SL4LFq
ѐ?kJMݾ9?V|gu/Jg1
Tы?R>`D$V+uo@'(= Ua,
47ԗQQJ
U\&h*-!zyx}+6
V{',yьh +$r, "e|\G+-v9]
˪иbJ6)e6mo/'GqPb!Mq^(Iō?HCSzʏq.:m|Fx`uqL6jp
h?<<>=8|~I
嗂$H}4
c&aYj!	&yƃ]
|tr_^n
STh7$0{\FPlb\}$USoQ~Sk ^쟞; pZbRB(ε+*5<DRU sCIg+R].jAC,`<|f,RRr8[0%d4rY-CE_!xM
}/RK!]Չ&|*2 FIypO)km5T*42J/TeO&HiSl5/9Uou=1a;Z=i C;y
Dw۶Eą%O|a-9*`	2̰-ڂcf4z`ZA`,k=;9?	Y֕MSͶ@/xR)&%'@ nBԲu(ft*ONt8(pPvKrt $pvH !Ā
qV~zt@Fh{Ohhya\"`H!Y"b^70yRzK@$Xa (UzkABrr
UB9ZYB@XI/Ȏ~9 )lG+]}~y/~Y'4։%aҧ!w}TEZ,_r h2lv.}ͧwĬfvfjjnjiYn.ᛩgcl+?BOל0Ju2_҄Ji
FBR^G, kԏ|("db CB]%'Ldɋ&叿_3Gpw)Ac"k\r^nh>[G(%H3yaD4\BN-td?יU[WؤP>Rdϛq?rF?p: !@Bݴ_4¯n?
#@y4%h%bOy՜f4Gt(_	(w
0J`pk
Olg$Jb~ 3,bqs4gO3^4&L1+Uu5Ō"M[}60='8}jmtm	[+K[@jNmU
NhT]Z@VS~P6ux0c\	d(g6ZfS
S(w~U IA^-*H|
[G8tTnTY38f=RwZE ΈYtͼ'h[U9pi  ^n(tU"KhbPЄ?q*G)vJSTGj++@yǘ,;vz8C$8$"M Sh`u,\H#ٛB4*L{wҰQ(46b>mj9]BX.Uȍ*O!TWPX/PY90_7Atfo`mk;bT)gu=r{h_hƃJqa"vRr1)0:<%@i\.muɵږq̼@gQs{Q)|Dcy"b+sGt/y:w 쵅ݻJOe]9,ѻfe/A0o.%LXNfq*%V	Wbv24&zZkrh;'DhmdV״#M4T!<`8:Xa[p)-[L,Ҧʡ]>JVt=uGIl4a*jlNe͕sՠ5]2׉Ok5P7iV"^<
}uy
j;"PЇӂ\2i845ikm?gd2f
%C5GŶ&F.{i@U	Zb@p ?wzR5ŝ1][=g^nV
I~KR>M0T$L<h$R*f/dx~`#Zv` ?
,5}KLSy=`\d\'o* ;=#sl[4856 4%e7`ΗZlgGDDcJ?&cd	"0N%7,#ԵxUȋ!JшU9zK]y@I[@
Pt
*8d$jrL8Cpыӆ=P=yD{b]24>/V;;jwfLv4J[{HXVXNd09[cGz&M"-+t ,/lJj.6ٌ1 @bCP*]!S?ӳwtyo4^4ʺՄ (g{Ɠ&b&EDZ*P	>ZxVތ{zx-Skjdš+*ǒ{b[<ߍPN)
Pǡ(%*M[E2)P23ؘ_C̓uA-bۖˈ}-v}VZ.JK7a3LE@.ju8ky;2uٜKnwV5]r57tZXzԫ5WڃGnѢoϪM{eRͺu"uegq@*6+;sWgm\<fc<{SCZPC0Pڑ!(g`ܺ^,C[qFw=wHj(77jd![N^;1=J0ZZ 4muz`(֌5crGE!ڞ[c0X$<jRf3:r5".py=lS`q3t0]:xj",Q-i)2yDHf&z^+6)w#!%v-!@J#cTKr\UJ}NFBN*/=v
nWSsɧӭGT

jݏ8JR:2<l3k-8^ )5SI5IjgG'o1V~rd
@A9Tߗ{X3b$7Ug/u>ո:6bJ8%`/>p&SԆ1q*,mv<_#/JL43B51ADP),^1
U$4a:4>g,6=g8>Y	-WzU5$aSv%i3-
*ٛDvM@kk}wNdy*s5i_^	2ۣwo>gz.7V_駋.+hExcvzK-8	0˵m=rOLՕ6olzk}slc]iK7[,^}"6a%Q y_Q<	3㱽jGPign+V{>=ߊTa*$8	i"&x 6&xB.weOԚ{>_[w\ ʴjKgF>G2{dx[_M	2ߞ(XO}geanC3T+I*	5\P꩘>xg2 xXu s{k|4yM'c5/m#dqZ3Ok޶W؛W{7,+zmYEQQ$lh{gvϋd#>91UsK4F.VqYp
V
`HP_QX9˝cB8]Jn#7^޶;~K.c٨<X;:߰f]s4)n |X?6m<%*GRTDI0&x1[>6CHcj8ImIfPJ`udzG҂1xfF	1F?[swaڸF#0'r~pP$	|oߟ?>mqgo^xv~_N]?ShE$Z:>q^
A`=Pw7x66?yf ȼ=6'gb/
oo1ᤫB:	y$2&|G&i9vACbhg8o2H0v%ռ<*J'  9AD`-epc4GO//^gd{%t@2T+>?ېwC~kr_x>LFhB1ͨBXÔ	VL%#BZxZ1YjcE6Nu<?;tVK@vt+/m&3zJ~; 8^3>W(NM~?)־)kkJ8^

p6RX%^,mLx?19gNY'3`ʍ\fJEO?ӷK߉k[+sZƻyO._LUӊ
TӤx~XV 䓧K8;r:BFM7?_S.IB֑S`N<py`IIMUYxچ-
c号I.
'o'%d
W*BNH<h*y2NE*.9QK~
jzOwe!`&
cQI&0ՉA,n=/\q
9y*#Z{LLnE-^2-//M7օOVOd$hEx*=Togl&clz=w_1fibO=TyoW3=4F3d}z1O %DX>yXax˸gK ddH1Vw|ѫgu`dgtx,͗$u>3 b^rD/GI\>6c"Og2$蜖U@iTJ:LQ1
9EjjSs`qW^.Dl1NqƔPĝSiV$Z6xZ=xkpLk|t1q+-cJ 3O+\e" 4
7VpB,%~L
<XT
Ǫ?76.EFI%RkյKH?i
]MyOxqPSӫ/o/j~1#HYU~Q3Aޕj)JLQ,,`eJ?ew<pkP'ٵ7
#RL`?ͳ2.HE+^N2< &*UA3^X(7m&fNǭF굢$=ĂC(D%~M-Ŝp`,9rz=ލ٦( uPr 8j bAR74xLOr #r1E(ΟmGy|;L؄%ZLrKM0"yա  81YD( 4]Wd-=lYc=&iG09O
8`q0O~4i5+ju=+xf8С*;_=#\)ܭ*M*M%%2$TâvoN
owz8;cB<ںMb=dh%Dׁ)dH>g*Rd";n a@@ƙQQ&f^=F4V`0&oZ$cybHj=*E{#\@VG8;g!dc5هGgE&D~rTD"ZRSP1V uq-XV,>{\>|\ kP~8.sȆ8u
٭E#^W|da/F׳-ӢϣgQe*e;^]Q&p$U[kf.l>XJPdP4MTʤ'bʬ'.^ffxvO
0]X@lbq.c5,{Y
N{lx'zpT:et5IY,]a,DR+  (k |;cWY4~ec#DZ
NQɲ.ccdZT,u$@
ULWҕͧnVߎ`e_2ƁЂ8V Fu
J$QFxh@O.!'U)5@>ǧ:/S3ףӳo]0,mH2kg8W|0t&S¿8Xj! cx&)CkORG{ֆf"HUj!괊7;Nw_;ٛN{d=Y#`Dbhb%KPg9XFb֝]K+d]=HcmX(l>Ndhx6.`qvkrFGceJ2ib6&X#MMZo}_xzz>yЙ"!^\EuA^oy/0ݾl>
ϱl:gFYȈhq9Z/ʨ"Z{J5IdVA#qB#k<%9W"ׇy͖tv
u`=%a@wh S%&E:w]ZSP@n`4RFX`m'>K֪GcƐÆdjc̺\qa`5շ>%7ʫԡͯQNp鼤zO5)

}}Ql^xkeZ]I-ۆwcocN+n7Q)BX%qVN{| i}ƔMM\w2[gx#[@H|)0泇Ov%w)م̭SSB$xZxy>/_SZHeߓ]i=_O^9'/Ҳ>ݼ;Nll,LoV+pYP~p=즛
^
>cFe- H-=kCk^ *"u-\]ɨv^Yhxyjibvrç1~[»`֛]]iEΏOwy(\dl0b,>_jlE[m YE~Cƍٖe^+"VLxxá	Sjy|OW0xT|Q]]NUIE t֗'2h%Spb=U)*w,y%G!ǤCm
C(yG'2Q6AjÀDI({c`,psD+pJ"F7):z9u]|e$.oDϕX$A8k-Pb2;XX?#dIO=R=`p045De6 y|S,pt	b%4ïIFу/n𞗷JA8׫8F,"0\/vz|J`R9i(VJ[-'mERZJtwH}ds*Ej
?غ,b;JrDtT.ZPSW`52$(.'0/A\F8:[XI@9KYwQW0 Bj޸/R;=A&%
K^ZUdPL?yQPJ$+Plm^oo"~k7IPkY9b(Fz_9b+;QHA*|YQzb37\!fo
 7vϩϣbX\
TCGEUi,SVrW79BQ/˱Q*liː(,zS`

0G7_L˼IY(?y.}XKyUM[TGkGwJ6 /֧2O}J[#\RNaQGziJ@v{wkK.XM[kMw^8J%D1IXﰌrxHj:a[*U8..ϧs<^p	F2K +- 
$VJȞ\[Y5xc@Xdms,]y#M[E+ｆ%
sÅQq"!BI}i4W)\]Zvwʘ)QBDVǈVSaιQXFհ !Nf`f0S)^xwSbm,>ԡ1GGwL]ZӶSN!O/:ݹuh,&J(t
~ySN4aEP?۸Y*pG0f:#6$`W8l輟,ĺfL@n0!?{aJqtZrj{QژB2!Cޫ\(̳T6"hnUp3hϓu?(a" @GUirHʠѵpLNED<WLOzȑp4U|C|
QI"ɠ<)|I"w>7Y	k9?jsv3'I/~Z䓞K+}fP00L0gJ>	 $Ԍin6R<z^?i꜕àΜٿWi߃bޓ}TUrVxe,w	wsO`F+6vm=q,G=b%?Ė==}osdHI:	V,션D_yKUO,;3TTץ+'ʃTP;,ƥN#R J|z.F/ 4\wtdwk@??zkuL=xTTy K-X9;;0Si
?^7E1M@  Kw4}%Wܲ症u8=\yC}

a:Bp ,5Kk$Ybxz%`KCş#Vְp?'agc0Gݟ<`6)'X<!?%"3E?/\f_U@t7@GG+Ɉv3H0yAnc+P[Xт7f?ՄrbwWv}Grg,^h}-zu9e)ut",4{l5^2^m?v UyMn&j7rixx}w)k=_]BefDqhk@Wy'x*(Sy|gr#E.Y3>>h3c9xuL@|nz`^t{.(j ~ҶJ/9XfTH,<8EWE !<?7Gݖ+9:O}
}b۔Cve9eP.>ynBaw!sxn|n\/JkׯAcGzŊlmHZu?$qzu\z
c
#7K	:Ĥs7hCx!(#VgEUAѮȒڒY^#'tB2S"e`\ĸl s
"/6Cf\7yUCu=
2ooZw6672mYB	Dd)$?(qgyjX/}|}0~2;?WU`iYm&}fOEjzZ_NG.Qk˸ ]s{ `IQ
ݵ'_Vq	SNg"j0o!Jݦ>0pRUǜۛu_~;؇ό][ |ImvwPFDDUo0),>WD#q(O-U>2ubqk`77!݅dؚ3l Lܱ8LbF#c6ŏb PAk?E;:?;rm?}d7[&+Pv
gnAEFTրZ>u  m;&ϒ R̽.[C>WJ
$#:Fϔx@YGCNȇ^YBZ)ܱXzXnI68Gh"s]edS<{UY
n҇3S>Yk$ch#s ZIYyVZw.b!SAEqa0kp]rNs.19
em۫_Fok/fBɛn,\g%ٛM.V-U	ZPf#+0a{L o6\w5$L0Poۛ[E{r,P\	m31~~j?%씬O[{&`ޥ<'B!Q'tzPCNb0O\$"Bf%b"<zz
P\>&^QNe:Xl2 &:}5ͳihvyKr1
7û=0؇
 .iqƼЌщFF>h)&,
sݝHn ~@iABi h>+2WR-mk
®W@@@7ZA0JiOG'\>g8q/2CXeq_c
<8.(g@|.%'a~8(A1]:{,@GaŕoH2"]tF46F2$'&)ʿp'x!~*|+6\U10oZ2y&r^ ^.7R0jDƸi⸲PEb!AY}'l0	D_&6@|KAx΄Z6J'm0͓'qqG@;H\Di?8ZsS9=h1!Ô                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This package was downloaded from
http://xorg.freedesktop.org/releases/individual/lib/

Copyright 1989, 1998  The Open Group

Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.

-----------

Xmu/StrToBmap.c and Xmu/GrayPixmap.c also have:

Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.

                        All Rights Reserved

Permission to use, copy, modify, and distribute this software and its 
documentation for any purpose and without fee is hereby granted, 
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in 
supporting documentation, and that the name of Digital not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.  

DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.

-----------

And Xmu/Clip.c has:

Copyright (c) 1998 by The XFree86 Project, Inc.

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Except as contained in this notice, the name of the XFree86 Project shall
not be used in advertising or otherwise to promote the sale, use or other
dealings in this Software without prior written authorization from the
XFree86 Project.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            /.
/usr
/usr/lib
/usr/lib/x86_64-linux-gnu
/usr/lib/x86_64-linux-gnu/libXmuu.so.1.0.0
/usr/share
/usr/share/doc
/usr/share/doc/libxmuu1
/usr/share/doc/libxmuu1/changelog.Debian.gz
/usr/share/doc/libxmuu1/changelog.gz
/usr/share/doc/libxmuu1/copyright
/usr/lib/x86_64-linux-gnu/libXmuu.so.1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Package: libxmuu1
Status: install reinstreq unpacked
Priority: optional
Section: libs
Installed-Size: 54
Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
Architecture: amd64
Multi-Arch: same
Source: libxmu
Version: 2:1.1.3-3
Depends: libc6 (>= 2.4), libx11-6
Description: X11 miscellaneous micro-utility library
 libXmuu provides a set of miscellaneous utility convenience functions for X
 libraries to use.  It is a lighter version of libXmu that does not depend
 on libXt or libXext; for more information on libXmu, see libxmu6.
 .
 More information about X.Org can be found at:
 <URL:http://www.X.org>
 .
 This module can be found at
 git://anongit.freedesktop.org/git/xorg/lib/libXmu
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Package: libxmuu1
Status: install ok unpacked
Priority: optional
Section: libs
Installed-Size: 54
Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
Architecture: amd64
Multi-Arch: same
Source: libxmu
Version: 2:1.1.3-3
Depends: libc6 (>= 2.4), libx11-6
Description: X11 miscellaneous micro-utility library
 libXmuu provides a set of miscellaneous utility convenience functions for X
 libraries to use.  It is a lighter version of libXmu that does not depend
 on libXt or libXext; for more information on libXmu, see libxmu6.
 .
 More information about X.Org can be found at:
 <URL:http://www.X.org>
 .
 This module can be found at
 git://anongit.freedesktop.org/git/xorg/lib/libXmu
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ea9d75d89eb0db5bda8ebe14a102f4d0  usr/bin/lsb_release
9ba9ad14c94c59a3e229e2518d0c4f57  usr/share/doc/lsb-release/changelog.Debian.gz
0da9abe3bc4027bf0f5942a945626809  usr/share/doc/lsb-release/copyright
d84a95f38f4632bc4d0cf2dfa35d6ab9  usr/share/man/man1/lsb_release.1.gz
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Package: lsb-release
Source: lsb-release-minimal
Version: 12.0-1
Architecture: all
Maintainer: Gioele Barabucci <gioele@svario.it>
Installed-Size: 17
Section: misc
Priority: optional
Multi-Arch: foreign
Homepage: https://gioele.io/lsb-release-minimal
Description: Linux Standard Base version reporting utility (minimal implementation)
 The Linux Standard Base (http://www.linuxbase.org/) is a standard
 core system that third-party applications written for Linux can
 depend upon.
 .
 The lsb-release command is a simple tool to help identify the Linux
 distribution being used and its compliance with the Linux Standard Base.
 .
 This package contains a bare-bones implementation that uses the
 information in /etc/os-release instead of relying on LSB packages.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Package: lsb-release
Status: install reinstreq half-installed
Priority: optional
Section: misc
Architecture: all
Multi-Arch: foreign
Version: 12.0-1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           #!/bin/sh

# SPDX-FileCopyrightText: 2021-2022 Gioele Barabucci
# SPDX-License-Identifier: ISC

set -eu

export LC_ALL="C.UTF-8"

help () {
	cat <<-EOD
		Usage: lsb_release [options]

		Options:
		  -h, --help         show this help message and exit
		  -v, --version      show LSB modules this system supports
		  -i, --id           show distributor ID
		  -d, --description  show description of this distribution
		  -r, --release      show release number of this distribution
		  -c, --codename     show code name of this distribution
		  -a, --all          show all of the above information
		  -s, --short        show requested information in short format
	EOD
	exit
}

show_id=false
show_desc=false
show_release=false
show_codename=false
short_format=false

options=$(getopt --name lsb_release -o hvidrcas -l help,version,id,description,release,codename,all,short -- "$@") || exit 2
eval set -- "$options"
while [ $# -gt 0 ] ; do
	case "$1" in
		-h|--help) help ;;
		-v|--version) ;;
		-i|--id) show_id=true ;;
		-d|--description) show_desc=true ;;
		-r|--release) show_release=true ;;
		-c|--codename) show_codename=true ;;
		-a|--all) show_id=true ; show_desc=true ; show_release=true ; show_codename=true ;;
		-s|--short) short_format=true ;;
		*) break  ;;
	esac
	shift
done

display_line () {
	label="$1"
	value="$2"

	if $short_format ; then
		printf "%s\n" "$value"
	else
		printf "%s:\t%s\n" "$label" "$value"
	fi
}

# Load release info from standard identification data files
[ -f /usr/lib/os-release ] && os_release=/usr/lib/os-release
[ -f /etc/os-release ] && os_release=/etc/os-release
[ "${LSB_OS_RELEASE-x}" != "x" ] && [ -f "$LSB_OS_RELEASE" ] && os_release="$LSB_OS_RELEASE"
[ "${os_release-x}" != "x" ] && . "$os_release"

# Mimic the output of Debian's Python-based lsb_release
# Capitalize ID
: "${ID=}"
ID="$(printf "%s" "$ID" | cut -c1 | tr '[:lower:]' '[:upper:]')$(printf "%s" "$ID" | cut -c2-)"
# Use NAME if set and different from ID only in capitalization.
if [ "${NAME-x}" != "x" ] ; then
	lower_case_id=$(printf "%s" "$ID" | tr '[:upper:]' '[:lower:]')
	lower_case_name=$(printf "%s" "$NAME" | tr '[:upper:]'  '[:lower:]')
	if [ "${lower_case_id}" = "${lower_case_name}" ] ; then
		ID="$NAME"
	fi
fi

# Generate minimal standard-conform output (if stdout is a TTY).
[ -t 1 ] && echo "No LSB modules are available." >& 2

if $show_id ; then
	display_line "Distributor ID" "${ID:-n/a}"
fi

if $show_desc ; then
	display_line "Description" "${PRETTY_NAME:-n/a}"
fi

if $show_release ; then
	display_line "Release" "${VERSION_ID:-n/a}"
fi

if $show_codename ; then
	display_line "Codename" "${VERSION_CODENAME:-n/a}"
fi
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          N1#&)q:***
mo]Owx@޾N4H!*^=f/#M5ʨ5t31,A4>`DW)W*6[F[a76&8sNBt+h\bE,\뿅fE%ƫIۛ|Ǩ9AKsJ'pB
Eށ\"&ߠSvG5}XPB|)qy&zj4
<HCa{$M_"U|8>SKI5I}:u{wT!RAcJLJHD'TRb6R1vYm"El'9{،_q<̕Teh*RN3'9ѣhG-><M$瓅`2Ƞk,5<"IoZ+5<k0hZN8Q?oݥʪ!P?OҤSxJ
zJc&\LYP1\Ps)rs?h?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: lsb-release-minimal
Upstream-Contact: Gioele Barabucci
Source: https://gioele.io/lsb-release-minimal

Files: *
Copyright: 2021-2022 Gioele Barabucci
License: ISC

License: ISC
 Permission to use, copy, modify, and/or distribute this software for
 any purpose with or without fee is hereby granted, provided that the
 above copyright notice and this permission notice appear in all copies.
 .
 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Xks_qK7i AE<)*,qDq'H%$Qe,@sl3X>Ϲ{_{Ӧ<C--e$SI[+ёeQGwg~ae9mY&"O%<'z/iYYB|#S-*D:h#Q$Y)u/^˲4֛9cK?L8~HEF_[V$]oiyl__/dmHHCȵp3RHG.֕'~],gӤj%S͡%OUN'za(U1&(Lyq{?q&{or,"őFX1"8R
e1-5R\ĩM̶w-ז*AGɏ	w  -JŢ8[A}<Qh%K<Մ)6L^0p9<(`1p!Nf*#D(>
v407m1`eph5ܰ	mpvf1O,'#CSS	!i{$2Q(3X"`8KE"CZ
E1"U| XuKN|PS5dI";(\xAIP)#dGdq<z{YuwJ
rw]ϕtTp;[ħ&PI(,ozޜC7r<Um+0E$iJH*γ$xVi*">y@)jc"
!^eZcƅQ[<\-3aO/N/OO.Ƌ]_M_u&N8wNFgBT 7`|rnS>NYsiS֋_ZΓn,d[?4{5PK\nq\H6w欌u-5F&5isb"t~	1*I['pׅYػNlcfȿ3>{|
؞=-ê(Zi&ff|uyYɟ큉{epp?a$o7鿺=FS{A߶M<8O=4Ͱk|~dGQAs_ÆYm'|5Qɠ[0Or u>\|fa9eX;!X	39==?`>p6XIM?ԐuiОrGv]zf34l@,NgE1ٗܤJ6l>6vՎ\ءT7bU] qbφ.Jvv'07K)xaQaIS h+G;tV͝sa8MK#~]Z_Mgd9ώR7R|+Bu*C jTq8eFpL{j|1<9fr9!YI(E6i>R0{@l̓]鑫n#fˌ/䌌$=~|NSԾv|5>%
Q{8{T@
<5k/8{U\}ѣ,O#\eOM6~lVWOO=#7hX+HǉtW~zϬm*(P.}}jn5wLr>*w}1U"]\jqEҷ"q.,|l2+z+Ylp;[\D@v2\cMܭP@㟠H9#h/hŢE-۝`̇Z9	Mofx(yIFwh.^@'b:mM"ԫP=qOXJ4$~(-n2srrT~M[k	6QzZAeݮ6&HMnlgnUsj'k+>˹uG'_d-UZ5xߣ1J1%?8~,ЫV2Dk=*(Q7+[la*3gFumvYK~gȏo/zJ>kmLX5G\fKNEj-|1d.0&>}tEgᘎ?l@.	n%!^87ȵ$y&Sj&:2Hoӑ>Ij<nVq=Y>lG&ٺIV:C5%e#(pUGIorCi|d3"8M-5&'zT~+*H<>m<QDlIRe(poMNi!r.7D4Icr0q<^VM`<Vj
}ȥ~/ET1ߋzH/Dc\
mu"]p+U8NhWL d'C`J+dROYa+
NnȯXEa1^aQb[>{}wysŏ^TsU%_ˏ_(Wz6އ}(E4\ysWbd3qPGJZu^                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Package: lsb-release
Status: install reinstreq unpacked
Priority: optional
Section: misc
Installed-Size: 17
Maintainer: Gioele Barabucci <gioele@svario.it>
Architecture: all
Multi-Arch: foreign
Source: lsb-release-minimal
Version: 12.0-1
Description: Linux Standard Base version reporting utility (minimal implementation)
 The Linux Standard Base (http://www.linuxbase.org/) is a standard
 core system that third-party applications written for Linux can
 depend upon.
 .
 The lsb-release command is a simple tool to help identify the Linux
 distribution being used and its compliance with the Linux Standard Base.
 .
 This package contains a bare-bones implementation that uses the
 information in /etc/os-release instead of relying on LSB packages.
Homepage: https://gioele.io/lsb-release-minimal
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Package: lsb-release
Status: install ok unpacked
Priority: optional
Section: misc
Installed-Size: 17
Maintainer: Gioele Barabucci <gioele@svario.it>
Architecture: all
Multi-Arch: foreign
Source: lsb-release-minimal
Version: 12.0-1
Description: Linux Standard Base version reporting utility (minimal implementation)
 The Linux Standard Base (http://www.linuxbase.org/) is a standard
 core system that third-party applications written for Linux can
 depend upon.
 .
 The lsb-release command is a simple tool to help identify the Linux
 distribution being used and its compliance with the Linux Standard Base.
 .
 This package contains a bare-bones implementation that uses the
 information in /etc/os-release instead of relying on LSB packages.
Homepage: https://gioele.io/lsb-release-minimal
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         6cd322c783436c265b17c8dc15ec5cef  usr/share/doc/publicsuffix/README.Debian
eca7b1d1c599201c5be24d5b4c1a5eee  usr/share/doc/publicsuffix/changelog.Debian.gz
56c596006d7844cfb0ed90a3d44d3fd6  usr/share/doc/publicsuffix/changelog.gz
cf65d1a8abf3b4de10670b4591f456e0  usr/share/doc/publicsuffix/copyright
e01583fecbf06ada8544aa7a0766553b  usr/share/doc/publicsuffix/examples/test_psl.txt
d1e877a3af7e108caea58169ed42cfed  usr/share/publicsuffix/public_suffix_list.dafsa
1742c1d36244c282c8296c0341ebf716  usr/share/publicsuffix/public_suffix_list.dat
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Package: publicsuffix
Version: 20230209.2326-1
Architecture: all
Maintainer: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
Installed-Size: 339
Provides: publicsuffix-dafsa
Section: net
Priority: optional
Multi-Arch: foreign
Homepage: https://publicsuffix.org
Description: accurate, machine-readable list of domain name suffixes
 A machine-readable list of domain name suffixes that accept public
 registration.  Each suffix represents the part of a domain name which
 is not under the control of the individual registrant, which makes
 the list useful for grouping cookies, deciding same-origin policies,
 collating spam, and other activities.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Package: publicsuffix
Status: install reinstreq half-installed
Priority: optional
Section: net
Architecture: all
Multi-Arch: foreign
Version: 20230209.2326-1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Public Suffix List
==================

This package installs the public suffix list in the standard
machine-parseable format:

 /usr/share/publicsuffix/public_suffix_list.dat

The public suffix list can be used to group domains by ownership
(e.g. for cookies, same-origin policies, spam collation, etc), and is
maintained by people within Mozilla.

You can read more about the public suffix list at
https://publicsuffix.org/

Changes to the contents of the public suffix list should be directed
to the public suffix project, as described at
https://publicsuffix.org/submit/

This package also provides a symlink from the historical name of the
public suffix file, which was effective_tld_names.dat.

Changes to the debian packaging and distribution should be submitted
to the debian BTS, preferably by running:

  reportbug publicsuffix

 -- Daniel Kahn Gillmor <dkg@fifthhorseman.net>, Fri, 15 May 2015 12:27:07 -0400
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [k@+u{	!PۢK:rmJd~3}g_?pPiT9J+AЗm'9pzXplJ
}v
<pfU)OˌsoKyQ5!v[5-q}9kN F!fE'Ip$!1$r(dw=A.T@ʠ"tG }r
u4* =($܁Ci+)HW|x'y8"7qO"|H!=IH8ɤ8dJ~I ?Fȸ+Bb䮒Z"H(Ƒ*1N4-1+S{KƏ x\C&ɋ qՓ 5j1 r.N.७~I܊1ղO6q.G׋˦ݲB'Bk .By'|)(ư@bX
('ҝ嗽&w8+(	'Hy6<&N8i%67N]v~A5YHJF'bX Oۓ"SJ($%r@Q=0tU[!oiܤbx` ڮt	R8++XmríSN_4
G; ]	6}$%4lº
Y;pƑ*YaUuV@2uwt/{DOs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ymȑ_@%clepw7]xf_%z(R!A}?vդ$j<Yƈl婧Y˞X(WAsM/5q&'~մu[ސWe599+O02o= \V,^E8̨|\H'M"7nJ[woHa
s?6kpݪ+Z "qmU_n* a8e[l}UrM|G^]?_Uoųgwwws7l5P5\홋YBl/Ӭofl3l3mfn3쒚8Bʪ#Ļplm秧~
b<c-f^ݕ=HvU-l-t=z!tCŰmSF:@-PӪ`Ny^&@U@΄?yFߔ[	xܨP +PZ*
ޑ9yZ\iȹ!T'abhB6ܕ-zFũ)<MI=zF)ed6^nxӷACU$C{<B3)Z͘+
ʵ'o4Li%S_5ֹwn=_EW7wr7	0L.h@^fM[cl#<AV@%(g1 c1:Lks
T-[[w_ԟ0ta|Ă1;13tQrGCq3I-v"2fXP&+0iC-asu٭SZFأDT亾 .+
RtysrnC8@Iu(߸ٶxyo$5*$-N26W#?TGZw1ND2|4 )Q yQDDw*m ŉnn70Gc$N737lww8N>*1eRD*"8gr!EX94&n^ j7_"\ns
o2G`rZHQH758?X5=T]~L|mn=܏ߛϕu3v렛z<ߡ͐7n0ҍ{.Yn
JVGiJN'EbTlF%+l~`M=fF̶/+W5orn8q4l&5.\v,zrTʃt363b8񅑓5y
$w43G
Q09揣oUt(lZ(fom!P8<p90 UB@j
\	k/Sy3M'B*2҄ <XH+Ĵ(%W"D\/d-ľ+^>i2$4FON6JkO%oWIMs
CH, y@aO5kwmO^	?ߺyZp1r>5YU#]đx> }rrYc7)
p-6xqn#ӨGM> b (HJ?!d[
7jzD[Nu6Yq>%"
B&r!	rOY>c5(3IvYAxTG+6H5ATBI _FC|[±dJ?FEl"`QE걩(Z!pDHe^S.7&1";`kBZݬ!/B"$r;ç\L5FMQ~6N}~Tǩ+Gvs9`
p/Ї&r.̻\bF3@ʨIC舆{.\\zRa~7c0г*ϥ?C&YIc1ofmtx(ZP!':YK+} XN\XEt8΀ގ%MX%`ڱ ڧVMeyKwsCb^Vu\92ď9.	\'?d
IkOv.Nq.LB#=fl(x=\ܪi>nhrN3@W(b7_I-`2s J/dxvwqXtv`*0E(8b*=tM}hGsv'VY&i>(^
g4XE)5XcA:A"8%?B67ȷ
:~B=G"{˻2*(&r='06TpQ(O1NͻӢ[yۋ羈ߴ $Gʡ	6e[eGjLCx2qe+,׻~l,摪H~ÚݪVl;_툇C
;:xTy<XE5Sp_@e象*A"@LdhKX:Γj?cBiWX}2V3I ¯aQ{v	
ii
^52QE4,ŋ5Z8F(͑2KSԧMid]0gyIXF/Vn*]*YEXG+ؘ EGE#2t࿨Ԏk_"x褢)0GETJk5Ȣ0&jU9/r~3rS?L<$&JcO[<s+d3&B5rXW	{~.]]rՁkN_b&Ne:m5]54҆.[tÀP!Ke~}S|rEh3x٪0&Q8x:}_W=`E
9J(00ɳY[,&_4ul>Hi-?q
?Wk/lZ-m%{ȬcF*?8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Public Suffix List
Upstream-Contact: Public Suffix List <contact@publicsuffix.org>
Source: https://publicsuffix.org/

Files: *
Copyright: 2010-2022 PSL maintainers,
 Daniel Veditz,
 Ehsan Akhgari,
 Gervase Markham,
 Jason Duell,
 Jothan Frakes,
 Mitchell Field,
 Mounir Lamouri,
 Ruben Arakelyan,
 Simone Carletti
License: MPL-2.0

Files: debian/*
Copyright: 2012-2023 Daniel Kahn Gillmor <dkg@fifthhorseman.net>
License: MPL-2.0

Files: tests/test_psl.txt
Copyright: Dedicated to the Public Domain
License: CC0

License: MPL-2.0
 Mozilla Public License Version 2.0
 ==================================
 .
 1. Definitions
 --------------
 .
 1.1. "Contributor"
     means each individual or legal entity that creates, contributes to
     the creation of, or owns Covered Software.
 .
 1.2. "Contributor Version"
     means the combination of the Contributions of others (if any) used
     by a Contributor and that particular Contributor's Contribution.
 .
 1.3. "Contribution"
     means Covered Software of a particular Contributor.
 .
 1.4. "Covered Software"
     means Source Code Form to which the initial Contributor has attached
     the notice in Exhibit A, the Executable Form of such Source Code
     Form, and Modifications of such Source Code Form, in each case
     including portions thereof.
 .
 1.5. "Incompatible With Secondary Licenses"
     means
 .
     (a) that the initial Contributor has attached the notice described
         in Exhibit B to the Covered Software; or
 .
     (b) that the Covered Software was made available under the terms of
         version 1.1 or earlier of the License, but not also under the
         terms of a Secondary License.
 .
 1.6. "Executable Form"
     means any form of the work other than Source Code Form.
 .
 1.7. "Larger Work"
     means a work that combines Covered Software with other material, in
     a separate file or files, that is not Covered Software.
 .
 1.8. "License"
     means this document.
 .
 1.9. "Licensable"
     means having the right to grant, to the maximum extent possible,
     whether at the time of the initial grant or subsequently, any and
     all of the rights conveyed by this License.
 .
 1.10. "Modifications"
     means any of the following:
 .
     (a) any file in Source Code Form that results from an addition to,
         deletion from, or modification of the contents of Covered
         Software; or
 .
     (b) any new file in Source Code Form that contains any Covered
         Software.
 .
 1.11. "Patent Claims" of a Contributor
     means any patent claim(s), including without limitation, method,
     process, and apparatus claims, in any patent Licensable by such
     Contributor that would be infringed, but for the grant of the
     License, by the making, using, selling, offering for sale, having
     made, import, or transfer of either its Contributions or its
     Contributor Version.
 .
 1.12. "Secondary License"
     means either the GNU General Public License, Version 2.0, the GNU
     Lesser General Public License, Version 2.1, the GNU Affero General
     Public License, Version 3.0, or any later versions of those
     licenses.
 .
 1.13. "Source Code Form"
     means the form of the work preferred for making modifications.
 .
 1.14. "You" (or "Your")
     means an individual or a legal entity exercising rights under this
     License. For legal entities, "You" includes any entity that
     controls, is controlled by, or is under common control with You. For
     purposes of this definition, "control" means (a) the power, direct
     or indirect, to cause the direction or management of such entity,
     whether by contract or otherwise, or (b) ownership of more than
     fifty percent (50%) of the outstanding shares or beneficial
     ownership of such entity.
 .
 2. License Grants and Conditions
 --------------------------------
 .
 2.1. Grants
 .
 Each Contributor hereby grants You a world-wide, royalty-free,
 non-exclusive license:
 .
 (a) under intellectual property rights (other than patent or trademark)
     Licensable by such Contributor to use, reproduce, make available,
     modify, display, perform, distribute, and otherwise exploit its
     Contributions, either on an unmodified basis, with Modifications, or
     as part of a Larger Work; and
 .
 (b) under Patent Claims of such Contributor to make, use, sell, offer
     for sale, have made, import, and otherwise transfer either its
     Contributions or its Contributor Version.
 .
 2.2. Effective Date
 .
 The licenses granted in Section 2.1 with respect to any Contribution
 become effective for each Contribution on the date the Contributor first
 distributes such Contribution.
 .
 2.3. Limitations on Grant Scope
 .
 The licenses granted in this Section 2 are the only rights granted under
 this License. No additional rights or licenses will be implied from the
 distribution or licensing of Covered Software under this License.
 Notwithstanding Section 2.1(b) above, no patent license is granted by a
 Contributor:
 .
 (a) for any code that a Contributor has removed from Covered Software;
     or
 .
 (b) for infringements caused by: (i) Your and any other third party's
     modifications of Covered Software, or (ii) the combination of its
     Contributions with other software (except as part of its Contributor
     Version); or
 .
 (c) under Patent Claims infringed by Covered Software in the absence of
     its Contributions.
 .
 This License does not grant any rights in the trademarks, service marks,
 or logos of any Contributor (except as may be necessary to comply with
 the notice requirements in Section 3.4).
 .
 2.4. Subsequent Licenses
 .
 No Contributor makes additional grants as a result of Your choice to
 distribute the Covered Software under a subsequent version of this
 License (see Section 10.2) or under the terms of a Secondary License (if
 permitted under the terms of Section 3.3).
 .
 2.5. Representation
 .
 Each Contributor represents that the Contributor believes its
 Contributions are its original creation(s) or it has sufficient rights
 to grant the rights to its Contributions conveyed by this License.
 .
 2.6. Fair Use
 .
 This License is not intended to limit any rights You have under
 applicable copyright doctrines of fair use, fair dealing, or other
 equivalents.
 .
 2.7. Conditions
 .
 Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
 in Section 2.1.
 .
 3. Responsibilities
 -------------------
 .
 3.1. Distribution of Source Form
 .
 All distribution of Covered Software in Source Code Form, including any
 Modifications that You create or to which You contribute, must be under
 the terms of this License. You must inform recipients that the Source
 Code Form of the Covered Software is governed by the terms of this
 License, and how they can obtain a copy of this License. You may not
 attempt to alter or restrict the recipients' rights in the Source Code
 Form.
 .
 3.2. Distribution of Executable Form
 .
 If You distribute Covered Software in Executable Form then:
 .
 (a) such Covered Software must also be made available in Source Code
     Form, as described in Section 3.1, and You must inform recipients of
     the Executable Form how they can obtain a copy of such Source Code
     Form by reasonable means in a timely manner, at a charge no more
     than the cost of distribution to the recipient; and
 .
 (b) You may distribute such Executable Form under the terms of this
     License, or sublicense it under different terms, provided that the
     license for the Executable Form does not attempt to limit or alter
     the recipients' rights in the Source Code Form under this License.
 .
 3.3. Distribution of a Larger Work
 .
 You may create and distribute a Larger Work under terms of Your choice,
 provided that You also comply with the requirements of this License for
 the Covered Software. If the Larger Work is a combination of Covered
 Software with a work governed by one or more Secondary Licenses, and the
 Covered Software is not Incompatible With Secondary Licenses, this
 License permits You to additionally distribute such Covered Software
 under the terms of such Secondary License(s), so that the recipient of
 the Larger Work may, at their option, further distribute the Covered
 Software under the terms of either this License or such Secondary
 License(s).
 .
 3.4. Notices
 .
 You may not remove or alter the substance of any license notices
 (including copyright notices, patent notices, disclaimers of warranty,
 or limitations of liability) contained within the Source Code Form of
 the Covered Software, except that You may alter any license notices to
 the extent required to remedy known factual inaccuracies.
 .
 3.5. Application of Additional Terms
 .
 You may choose to offer, and to charge a fee for, warranty, support,
 indemnity or liability obligations to one or more recipients of Covered
 Software. However, You may do so only on Your own behalf, and not on
 behalf of any Contributor. You must make it absolutely clear that any
 such warranty, support, indemnity, or liability obligation is offered by
 You alone, and You hereby agree to indemnify every Contributor for any
 liability incurred by such Contributor as a result of warranty, support,
 indemnity or liability terms You offer. You may include additional
 disclaimers of warranty and limitations of liability specific to any
 jurisdiction.
 .
 4. Inability to Comply Due to Statute or Regulation
 ---------------------------------------------------
 .
 If it is impossible for You to comply with any of the terms of this
 License with respect to some or all of the Covered Software due to
 statute, judicial order, or regulation then You must: (a) comply with
 the terms of this License to the maximum extent possible; and (b)
 describe the limitations and the code they affect. Such description must
 be placed in a text file included with all distributions of the Covered
 Software under this License. Except to the extent prohibited by statute
 or regulation, such description must be sufficiently detailed for a
 recipient of ordinary skill to be able to understand it.
 .
 5. Termination
 --------------
 .
 5.1. The rights granted under this License will terminate automatically
 if You fail to comply with any of its terms. However, if You become
 compliant, then the rights granted under this License from a particular
 Contributor are reinstated (a) provisionally, unless and until such
 Contributor explicitly and finally terminates Your grants, and (b) on an
 ongoing basis, if such Contributor fails to notify You of the
 non-compliance by some reasonable means prior to 60 days after You have
 come back into compliance. Moreover, Your grants from a particular
 Contributor are reinstated on an ongoing basis if such Contributor
 notifies You of the non-compliance by some reasonable means, this is the
 first time You have received notice of non-compliance with this License
 from such Contributor, and You become compliant prior to 30 days after
 Your receipt of the notice.
 .
 5.2. If You initiate litigation against any entity by asserting a patent
 infringement claim (excluding declaratory judgment actions,
 counter-claims, and cross-claims) alleging that a Contributor Version
 directly or indirectly infringes any patent, then the rights granted to
 You by any and all Contributors for the Covered Software under Section
 2.1 of this License shall terminate.
 .
 5.3. In the event of termination under Sections 5.1 or 5.2 above, all
 end user license agreements (excluding distributors and resellers) which
 have been validly granted by You or Your distributors under this License
 prior to termination shall survive termination.
 .
 ************************************************************************
 *                                                                      *
 *  6. Disclaimer of Warranty                                           *
 *  -------------------------                                           *
 *                                                                      *
 *  Covered Software is provided under this License on a